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 webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change 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/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/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/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/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/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/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, or * for all operations. 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 webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change 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/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/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/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/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/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/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.admissionregistration.v1beta1.MutatingWebhook": {
348      "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.",
349      "properties": {
350        "admissionReviewVersions": {
351          "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. Default to `['v1beta1']`.",
352          "items": {
353            "type": "string"
354          },
355          "type": "array"
356        },
357        "clientConfig": {
358          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig",
359          "description": "ClientConfig defines how to communicate with the hook. Required"
360        },
361        "failurePolicy": {
362          "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.",
363          "type": "string"
364        },
365        "matchPolicy": {
366          "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 \"Exact\"",
367          "type": "string"
368        },
369        "name": {
370          "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.",
371          "type": "string"
372        },
373        "namespaceSelector": {
374          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
375          "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."
376        },
377        "objectSelector": {
378          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
379          "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."
380        },
381        "reinvocationPolicy": {
382          "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\".",
383          "type": "string"
384        },
385        "rules": {
386          "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.",
387          "items": {
388            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations"
389          },
390          "type": "array"
391        },
392        "sideEffects": {
393          "description": "SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change 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. Defaults to Unknown.",
394          "type": "string"
395        },
396        "timeoutSeconds": {
397          "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 30 seconds.",
398          "format": "int32",
399          "type": "integer"
400        }
401      },
402      "required": [
403        "name",
404        "clientConfig"
405      ],
406      "type": "object"
407    },
408    "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration": {
409      "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.",
410      "properties": {
411        "apiVersion": {
412          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
413          "type": "string"
414        },
415        "kind": {
416          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
417          "type": "string"
418        },
419        "metadata": {
420          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
421          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata."
422        },
423        "webhooks": {
424          "description": "Webhooks is a list of webhooks and the affected resources and operations.",
425          "items": {
426            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhook"
427          },
428          "type": "array",
429          "x-kubernetes-patch-merge-key": "name",
430          "x-kubernetes-patch-strategy": "merge"
431        }
432      },
433      "type": "object",
434      "x-kubernetes-group-version-kind": [
435        {
436          "group": "admissionregistration.k8s.io",
437          "kind": "MutatingWebhookConfiguration",
438          "version": "v1beta1"
439        }
440      ]
441    },
442    "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList": {
443      "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.",
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/api-conventions.md#resources",
447          "type": "string"
448        },
449        "items": {
450          "description": "List of MutatingWebhookConfiguration.",
451          "items": {
452            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
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/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/api-conventions.md#types-kinds"
463        }
464      },
465      "required": [
466        "items"
467      ],
468      "type": "object",
469      "x-kubernetes-group-version-kind": [
470        {
471          "group": "admissionregistration.k8s.io",
472          "kind": "MutatingWebhookConfigurationList",
473          "version": "v1beta1"
474        }
475      ]
476    },
477    "io.k8s.api.admissionregistration.v1beta1.RuleWithOperations": {
478      "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
479      "properties": {
480        "apiGroups": {
481          "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.",
482          "items": {
483            "type": "string"
484          },
485          "type": "array"
486        },
487        "apiVersions": {
488          "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.",
489          "items": {
490            "type": "string"
491          },
492          "type": "array"
493        },
494        "operations": {
495          "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.",
496          "items": {
497            "type": "string"
498          },
499          "type": "array"
500        },
501        "resources": {
502          "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.",
503          "items": {
504            "type": "string"
505          },
506          "type": "array"
507        },
508        "scope": {
509          "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 \"*\".",
510          "type": "string"
511        }
512      },
513      "type": "object"
514    },
515    "io.k8s.api.admissionregistration.v1beta1.ServiceReference": {
516      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
517      "properties": {
518        "name": {
519          "description": "`name` is the name of the service. Required",
520          "type": "string"
521        },
522        "namespace": {
523          "description": "`namespace` is the namespace of the service. Required",
524          "type": "string"
525        },
526        "path": {
527          "description": "`path` is an optional URL path which will be sent in any request to this service.",
528          "type": "string"
529        },
530        "port": {
531          "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).",
532          "format": "int32",
533          "type": "integer"
534        }
535      },
536      "required": [
537        "namespace",
538        "name"
539      ],
540      "type": "object"
541    },
542    "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook": {
543      "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.",
544      "properties": {
545        "admissionReviewVersions": {
546          "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. Default to `['v1beta1']`.",
547          "items": {
548            "type": "string"
549          },
550          "type": "array"
551        },
552        "clientConfig": {
553          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig",
554          "description": "ClientConfig defines how to communicate with the hook. Required"
555        },
556        "failurePolicy": {
557          "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.",
558          "type": "string"
559        },
560        "matchPolicy": {
561          "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 \"Exact\"",
562          "type": "string"
563        },
564        "name": {
565          "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.",
566          "type": "string"
567        },
568        "namespaceSelector": {
569          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
570          "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."
571        },
572        "objectSelector": {
573          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
574          "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."
575        },
576        "rules": {
577          "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.",
578          "items": {
579            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.RuleWithOperations"
580          },
581          "type": "array"
582        },
583        "sideEffects": {
584          "description": "SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change 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. Defaults to Unknown.",
585          "type": "string"
586        },
587        "timeoutSeconds": {
588          "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 30 seconds.",
589          "format": "int32",
590          "type": "integer"
591        }
592      },
593      "required": [
594        "name",
595        "clientConfig"
596      ],
597      "type": "object"
598    },
599    "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration": {
600      "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.",
601      "properties": {
602        "apiVersion": {
603          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
604          "type": "string"
605        },
606        "kind": {
607          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
608          "type": "string"
609        },
610        "metadata": {
611          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
612          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata."
613        },
614        "webhooks": {
615          "description": "Webhooks is a list of webhooks and the affected resources and operations.",
616          "items": {
617            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhook"
618          },
619          "type": "array",
620          "x-kubernetes-patch-merge-key": "name",
621          "x-kubernetes-patch-strategy": "merge"
622        }
623      },
624      "type": "object",
625      "x-kubernetes-group-version-kind": [
626        {
627          "group": "admissionregistration.k8s.io",
628          "kind": "ValidatingWebhookConfiguration",
629          "version": "v1beta1"
630        }
631      ]
632    },
633    "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList": {
634      "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.",
635      "properties": {
636        "apiVersion": {
637          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
638          "type": "string"
639        },
640        "items": {
641          "description": "List of ValidatingWebhookConfiguration.",
642          "items": {
643            "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
644          },
645          "type": "array"
646        },
647        "kind": {
648          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
649          "type": "string"
650        },
651        "metadata": {
652          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
653          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
654        }
655      },
656      "required": [
657        "items"
658      ],
659      "type": "object",
660      "x-kubernetes-group-version-kind": [
661        {
662          "group": "admissionregistration.k8s.io",
663          "kind": "ValidatingWebhookConfigurationList",
664          "version": "v1beta1"
665        }
666      ]
667    },
668    "io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig": {
669      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
670      "properties": {
671        "caBundle": {
672          "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.",
673          "format": "byte",
674          "type": "string"
675        },
676        "service": {
677          "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ServiceReference",
678          "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`."
679        },
680        "url": {
681          "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.",
682          "type": "string"
683        }
684      },
685      "type": "object"
686    },
687    "io.k8s.api.apps.v1.ControllerRevision": {
688      "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.",
689      "properties": {
690        "apiVersion": {
691          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
692          "type": "string"
693        },
694        "data": {
695          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
696          "description": "Data is the serialized representation of the state."
697        },
698        "kind": {
699          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
700          "type": "string"
701        },
702        "metadata": {
703          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
704          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
705        },
706        "revision": {
707          "description": "Revision indicates the revision of the state represented by Data.",
708          "format": "int64",
709          "type": "integer"
710        }
711      },
712      "required": [
713        "revision"
714      ],
715      "type": "object",
716      "x-kubernetes-group-version-kind": [
717        {
718          "group": "apps",
719          "kind": "ControllerRevision",
720          "version": "v1"
721        }
722      ]
723    },
724    "io.k8s.api.apps.v1.ControllerRevisionList": {
725      "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.",
726      "properties": {
727        "apiVersion": {
728          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
729          "type": "string"
730        },
731        "items": {
732          "description": "Items is the list of ControllerRevisions",
733          "items": {
734            "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
735          },
736          "type": "array"
737        },
738        "kind": {
739          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
740          "type": "string"
741        },
742        "metadata": {
743          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
744          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
745        }
746      },
747      "required": [
748        "items"
749      ],
750      "type": "object",
751      "x-kubernetes-group-version-kind": [
752        {
753          "group": "apps",
754          "kind": "ControllerRevisionList",
755          "version": "v1"
756        }
757      ]
758    },
759    "io.k8s.api.apps.v1.DaemonSet": {
760      "description": "DaemonSet represents the configuration of a daemon set.",
761      "properties": {
762        "apiVersion": {
763          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
764          "type": "string"
765        },
766        "kind": {
767          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
768          "type": "string"
769        },
770        "metadata": {
771          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
772          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
773        },
774        "spec": {
775          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetSpec",
776          "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
777        },
778        "status": {
779          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetStatus",
780          "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
781        }
782      },
783      "type": "object",
784      "x-kubernetes-group-version-kind": [
785        {
786          "group": "apps",
787          "kind": "DaemonSet",
788          "version": "v1"
789        }
790      ]
791    },
792    "io.k8s.api.apps.v1.DaemonSetCondition": {
793      "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
794      "properties": {
795        "lastTransitionTime": {
796          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
797          "description": "Last time the condition transitioned from one status to another."
798        },
799        "message": {
800          "description": "A human readable message indicating details about the transition.",
801          "type": "string"
802        },
803        "reason": {
804          "description": "The reason for the condition's last transition.",
805          "type": "string"
806        },
807        "status": {
808          "description": "Status of the condition, one of True, False, Unknown.",
809          "type": "string"
810        },
811        "type": {
812          "description": "Type of DaemonSet condition.",
813          "type": "string"
814        }
815      },
816      "required": [
817        "type",
818        "status"
819      ],
820      "type": "object"
821    },
822    "io.k8s.api.apps.v1.DaemonSetList": {
823      "description": "DaemonSetList is a collection of daemon sets.",
824      "properties": {
825        "apiVersion": {
826          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
827          "type": "string"
828        },
829        "items": {
830          "description": "A list of daemon sets.",
831          "items": {
832            "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
833          },
834          "type": "array"
835        },
836        "kind": {
837          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
838          "type": "string"
839        },
840        "metadata": {
841          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
842          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
843        }
844      },
845      "required": [
846        "items"
847      ],
848      "type": "object",
849      "x-kubernetes-group-version-kind": [
850        {
851          "group": "apps",
852          "kind": "DaemonSetList",
853          "version": "v1"
854        }
855      ]
856    },
857    "io.k8s.api.apps.v1.DaemonSetSpec": {
858      "description": "DaemonSetSpec is the specification of a daemon set.",
859      "properties": {
860        "minReadySeconds": {
861          "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).",
862          "format": "int32",
863          "type": "integer"
864        },
865        "revisionHistoryLimit": {
866          "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.",
867          "format": "int32",
868          "type": "integer"
869        },
870        "selector": {
871          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
872          "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"
873        },
874        "template": {
875          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
876          "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"
877        },
878        "updateStrategy": {
879          "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetUpdateStrategy",
880          "description": "An update strategy to replace existing DaemonSet pods with new pods."
881        }
882      },
883      "required": [
884        "selector",
885        "template"
886      ],
887      "type": "object"
888    },
889    "io.k8s.api.apps.v1.DaemonSetStatus": {
890      "description": "DaemonSetStatus represents the current status of a daemon set.",
891      "properties": {
892        "collisionCount": {
893          "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.",
894          "format": "int32",
895          "type": "integer"
896        },
897        "conditions": {
898          "description": "Represents the latest available observations of a DaemonSet's current state.",
899          "items": {
900            "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetCondition"
901          },
902          "type": "array",
903          "x-kubernetes-patch-merge-key": "type",
904          "x-kubernetes-patch-strategy": "merge"
905        },
906        "currentNumberScheduled": {
907          "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/",
908          "format": "int32",
909          "type": "integer"
910        },
911        "desiredNumberScheduled": {
912          "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/",
913          "format": "int32",
914          "type": "integer"
915        },
916        "numberAvailable": {
917          "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)",
918          "format": "int32",
919          "type": "integer"
920        },
921        "numberMisscheduled": {
922          "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/",
923          "format": "int32",
924          "type": "integer"
925        },
926        "numberReady": {
927          "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
928          "format": "int32",
929          "type": "integer"
930        },
931        "numberUnavailable": {
932          "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)",
933          "format": "int32",
934          "type": "integer"
935        },
936        "observedGeneration": {
937          "description": "The most recent generation observed by the daemon set controller.",
938          "format": "int64",
939          "type": "integer"
940        },
941        "updatedNumberScheduled": {
942          "description": "The total number of nodes that are running updated daemon pod",
943          "format": "int32",
944          "type": "integer"
945        }
946      },
947      "required": [
948        "currentNumberScheduled",
949        "numberMisscheduled",
950        "desiredNumberScheduled",
951        "numberReady"
952      ],
953      "type": "object"
954    },
955    "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": {
956      "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
957      "properties": {
958        "rollingUpdate": {
959          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDaemonSet",
960          "description": "Rolling update config params. Present only if type = \"RollingUpdate\"."
961        },
962        "type": {
963          "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
964          "type": "string"
965        }
966      },
967      "type": "object"
968    },
969    "io.k8s.api.apps.v1.Deployment": {
970      "description": "Deployment enables declarative updates for Pods and ReplicaSets.",
971      "properties": {
972        "apiVersion": {
973          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
974          "type": "string"
975        },
976        "kind": {
977          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
978          "type": "string"
979        },
980        "metadata": {
981          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
982          "description": "Standard object metadata."
983        },
984        "spec": {
985          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentSpec",
986          "description": "Specification of the desired behavior of the Deployment."
987        },
988        "status": {
989          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStatus",
990          "description": "Most recently observed status of the Deployment."
991        }
992      },
993      "type": "object",
994      "x-kubernetes-group-version-kind": [
995        {
996          "group": "apps",
997          "kind": "Deployment",
998          "version": "v1"
999        }
1000      ]
1001    },
1002    "io.k8s.api.apps.v1.DeploymentCondition": {
1003      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
1004      "properties": {
1005        "lastTransitionTime": {
1006          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1007          "description": "Last time the condition transitioned from one status to another."
1008        },
1009        "lastUpdateTime": {
1010          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1011          "description": "The last time this condition was updated."
1012        },
1013        "message": {
1014          "description": "A human readable message indicating details about the transition.",
1015          "type": "string"
1016        },
1017        "reason": {
1018          "description": "The reason for the condition's last transition.",
1019          "type": "string"
1020        },
1021        "status": {
1022          "description": "Status of the condition, one of True, False, Unknown.",
1023          "type": "string"
1024        },
1025        "type": {
1026          "description": "Type of deployment condition.",
1027          "type": "string"
1028        }
1029      },
1030      "required": [
1031        "type",
1032        "status"
1033      ],
1034      "type": "object"
1035    },
1036    "io.k8s.api.apps.v1.DeploymentList": {
1037      "description": "DeploymentList is a list of Deployments.",
1038      "properties": {
1039        "apiVersion": {
1040          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1041          "type": "string"
1042        },
1043        "items": {
1044          "description": "Items is the list of Deployments.",
1045          "items": {
1046            "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
1047          },
1048          "type": "array"
1049        },
1050        "kind": {
1051          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1052          "type": "string"
1053        },
1054        "metadata": {
1055          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1056          "description": "Standard list metadata."
1057        }
1058      },
1059      "required": [
1060        "items"
1061      ],
1062      "type": "object",
1063      "x-kubernetes-group-version-kind": [
1064        {
1065          "group": "apps",
1066          "kind": "DeploymentList",
1067          "version": "v1"
1068        }
1069      ]
1070    },
1071    "io.k8s.api.apps.v1.DeploymentSpec": {
1072      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
1073      "properties": {
1074        "minReadySeconds": {
1075          "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)",
1076          "format": "int32",
1077          "type": "integer"
1078        },
1079        "paused": {
1080          "description": "Indicates that the deployment is paused.",
1081          "type": "boolean"
1082        },
1083        "progressDeadlineSeconds": {
1084          "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.",
1085          "format": "int32",
1086          "type": "integer"
1087        },
1088        "replicas": {
1089          "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
1090          "format": "int32",
1091          "type": "integer"
1092        },
1093        "revisionHistoryLimit": {
1094          "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.",
1095          "format": "int32",
1096          "type": "integer"
1097        },
1098        "selector": {
1099          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1100          "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."
1101        },
1102        "strategy": {
1103          "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy",
1104          "description": "The deployment strategy to use to replace existing pods with new ones.",
1105          "x-kubernetes-patch-strategy": "retainKeys"
1106        },
1107        "template": {
1108          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1109          "description": "Template describes the pods that will be created."
1110        }
1111      },
1112      "required": [
1113        "selector",
1114        "template"
1115      ],
1116      "type": "object"
1117    },
1118    "io.k8s.api.apps.v1.DeploymentStatus": {
1119      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
1120      "properties": {
1121        "availableReplicas": {
1122          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
1123          "format": "int32",
1124          "type": "integer"
1125        },
1126        "collisionCount": {
1127          "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.",
1128          "format": "int32",
1129          "type": "integer"
1130        },
1131        "conditions": {
1132          "description": "Represents the latest available observations of a deployment's current state.",
1133          "items": {
1134            "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition"
1135          },
1136          "type": "array",
1137          "x-kubernetes-patch-merge-key": "type",
1138          "x-kubernetes-patch-strategy": "merge"
1139        },
1140        "observedGeneration": {
1141          "description": "The generation observed by the deployment controller.",
1142          "format": "int64",
1143          "type": "integer"
1144        },
1145        "readyReplicas": {
1146          "description": "Total number of ready pods targeted by this deployment.",
1147          "format": "int32",
1148          "type": "integer"
1149        },
1150        "replicas": {
1151          "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
1152          "format": "int32",
1153          "type": "integer"
1154        },
1155        "unavailableReplicas": {
1156          "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.",
1157          "format": "int32",
1158          "type": "integer"
1159        },
1160        "updatedReplicas": {
1161          "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
1162          "format": "int32",
1163          "type": "integer"
1164        }
1165      },
1166      "type": "object"
1167    },
1168    "io.k8s.api.apps.v1.DeploymentStrategy": {
1169      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
1170      "properties": {
1171        "rollingUpdate": {
1172          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
1173          "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
1174        },
1175        "type": {
1176          "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
1177          "type": "string"
1178        }
1179      },
1180      "type": "object"
1181    },
1182    "io.k8s.api.apps.v1.ReplicaSet": {
1183      "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
1184      "properties": {
1185        "apiVersion": {
1186          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1187          "type": "string"
1188        },
1189        "kind": {
1190          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1191          "type": "string"
1192        },
1193        "metadata": {
1194          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1195          "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
1196        },
1197        "spec": {
1198          "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetSpec",
1199          "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
1200        },
1201        "status": {
1202          "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetStatus",
1203          "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
1204        }
1205      },
1206      "type": "object",
1207      "x-kubernetes-group-version-kind": [
1208        {
1209          "group": "apps",
1210          "kind": "ReplicaSet",
1211          "version": "v1"
1212        }
1213      ]
1214    },
1215    "io.k8s.api.apps.v1.ReplicaSetCondition": {
1216      "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
1217      "properties": {
1218        "lastTransitionTime": {
1219          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1220          "description": "The last time the condition transitioned from one status to another."
1221        },
1222        "message": {
1223          "description": "A human readable message indicating details about the transition.",
1224          "type": "string"
1225        },
1226        "reason": {
1227          "description": "The reason for the condition's last transition.",
1228          "type": "string"
1229        },
1230        "status": {
1231          "description": "Status of the condition, one of True, False, Unknown.",
1232          "type": "string"
1233        },
1234        "type": {
1235          "description": "Type of replica set condition.",
1236          "type": "string"
1237        }
1238      },
1239      "required": [
1240        "type",
1241        "status"
1242      ],
1243      "type": "object"
1244    },
1245    "io.k8s.api.apps.v1.ReplicaSetList": {
1246      "description": "ReplicaSetList is a collection of ReplicaSets.",
1247      "properties": {
1248        "apiVersion": {
1249          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1250          "type": "string"
1251        },
1252        "items": {
1253          "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
1254          "items": {
1255            "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
1256          },
1257          "type": "array"
1258        },
1259        "kind": {
1260          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1261          "type": "string"
1262        },
1263        "metadata": {
1264          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1265          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
1266        }
1267      },
1268      "required": [
1269        "items"
1270      ],
1271      "type": "object",
1272      "x-kubernetes-group-version-kind": [
1273        {
1274          "group": "apps",
1275          "kind": "ReplicaSetList",
1276          "version": "v1"
1277        }
1278      ]
1279    },
1280    "io.k8s.api.apps.v1.ReplicaSetSpec": {
1281      "description": "ReplicaSetSpec is the specification of a ReplicaSet.",
1282      "properties": {
1283        "minReadySeconds": {
1284          "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)",
1285          "format": "int32",
1286          "type": "integer"
1287        },
1288        "replicas": {
1289          "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",
1290          "format": "int32",
1291          "type": "integer"
1292        },
1293        "selector": {
1294          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1295          "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"
1296        },
1297        "template": {
1298          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1299          "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"
1300        }
1301      },
1302      "required": [
1303        "selector"
1304      ],
1305      "type": "object"
1306    },
1307    "io.k8s.api.apps.v1.ReplicaSetStatus": {
1308      "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
1309      "properties": {
1310        "availableReplicas": {
1311          "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
1312          "format": "int32",
1313          "type": "integer"
1314        },
1315        "conditions": {
1316          "description": "Represents the latest available observations of a replica set's current state.",
1317          "items": {
1318            "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition"
1319          },
1320          "type": "array",
1321          "x-kubernetes-patch-merge-key": "type",
1322          "x-kubernetes-patch-strategy": "merge"
1323        },
1324        "fullyLabeledReplicas": {
1325          "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
1326          "format": "int32",
1327          "type": "integer"
1328        },
1329        "observedGeneration": {
1330          "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
1331          "format": "int64",
1332          "type": "integer"
1333        },
1334        "readyReplicas": {
1335          "description": "The number of ready replicas for this replica set.",
1336          "format": "int32",
1337          "type": "integer"
1338        },
1339        "replicas": {
1340          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
1341          "format": "int32",
1342          "type": "integer"
1343        }
1344      },
1345      "required": [
1346        "replicas"
1347      ],
1348      "type": "object"
1349    },
1350    "io.k8s.api.apps.v1.RollingUpdateDaemonSet": {
1351      "description": "Spec to control the desired behavior of daemon set rolling update.",
1352      "properties": {
1353        "maxUnavailable": {
1354          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1355          "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
1356        }
1357      },
1358      "type": "object"
1359    },
1360    "io.k8s.api.apps.v1.RollingUpdateDeployment": {
1361      "description": "Spec to control the desired behavior of rolling update.",
1362      "properties": {
1363        "maxSurge": {
1364          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1365          "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."
1366        },
1367        "maxUnavailable": {
1368          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1369          "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."
1370        }
1371      },
1372      "type": "object"
1373    },
1374    "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": {
1375      "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
1376      "properties": {
1377        "partition": {
1378          "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.",
1379          "format": "int32",
1380          "type": "integer"
1381        }
1382      },
1383      "type": "object"
1384    },
1385    "io.k8s.api.apps.v1.StatefulSet": {
1386      "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.",
1387      "properties": {
1388        "apiVersion": {
1389          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1390          "type": "string"
1391        },
1392        "kind": {
1393          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1394          "type": "string"
1395        },
1396        "metadata": {
1397          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
1398        },
1399        "spec": {
1400          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetSpec",
1401          "description": "Spec defines the desired identities of pods in this set."
1402        },
1403        "status": {
1404          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetStatus",
1405          "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time."
1406        }
1407      },
1408      "type": "object",
1409      "x-kubernetes-group-version-kind": [
1410        {
1411          "group": "apps",
1412          "kind": "StatefulSet",
1413          "version": "v1"
1414        }
1415      ]
1416    },
1417    "io.k8s.api.apps.v1.StatefulSetCondition": {
1418      "description": "StatefulSetCondition describes the state of a statefulset at a certain point.",
1419      "properties": {
1420        "lastTransitionTime": {
1421          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1422          "description": "Last time the condition transitioned from one status to another."
1423        },
1424        "message": {
1425          "description": "A human readable message indicating details about the transition.",
1426          "type": "string"
1427        },
1428        "reason": {
1429          "description": "The reason for the condition's last transition.",
1430          "type": "string"
1431        },
1432        "status": {
1433          "description": "Status of the condition, one of True, False, Unknown.",
1434          "type": "string"
1435        },
1436        "type": {
1437          "description": "Type of statefulset condition.",
1438          "type": "string"
1439        }
1440      },
1441      "required": [
1442        "type",
1443        "status"
1444      ],
1445      "type": "object"
1446    },
1447    "io.k8s.api.apps.v1.StatefulSetList": {
1448      "description": "StatefulSetList is a collection of StatefulSets.",
1449      "properties": {
1450        "apiVersion": {
1451          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1452          "type": "string"
1453        },
1454        "items": {
1455          "items": {
1456            "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
1457          },
1458          "type": "array"
1459        },
1460        "kind": {
1461          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1462          "type": "string"
1463        },
1464        "metadata": {
1465          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
1466        }
1467      },
1468      "required": [
1469        "items"
1470      ],
1471      "type": "object",
1472      "x-kubernetes-group-version-kind": [
1473        {
1474          "group": "apps",
1475          "kind": "StatefulSetList",
1476          "version": "v1"
1477        }
1478      ]
1479    },
1480    "io.k8s.api.apps.v1.StatefulSetSpec": {
1481      "description": "A StatefulSetSpec is the specification of a StatefulSet.",
1482      "properties": {
1483        "podManagementPolicy": {
1484          "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.",
1485          "type": "string"
1486        },
1487        "replicas": {
1488          "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.",
1489          "format": "int32",
1490          "type": "integer"
1491        },
1492        "revisionHistoryLimit": {
1493          "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.",
1494          "format": "int32",
1495          "type": "integer"
1496        },
1497        "selector": {
1498          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1499          "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"
1500        },
1501        "serviceName": {
1502          "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.",
1503          "type": "string"
1504        },
1505        "template": {
1506          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1507          "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."
1508        },
1509        "updateStrategy": {
1510          "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy",
1511          "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template."
1512        },
1513        "volumeClaimTemplates": {
1514          "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.",
1515          "items": {
1516            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
1517          },
1518          "type": "array"
1519        }
1520      },
1521      "required": [
1522        "selector",
1523        "template",
1524        "serviceName"
1525      ],
1526      "type": "object"
1527    },
1528    "io.k8s.api.apps.v1.StatefulSetStatus": {
1529      "description": "StatefulSetStatus represents the current state of a StatefulSet.",
1530      "properties": {
1531        "collisionCount": {
1532          "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.",
1533          "format": "int32",
1534          "type": "integer"
1535        },
1536        "conditions": {
1537          "description": "Represents the latest available observations of a statefulset's current state.",
1538          "items": {
1539            "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetCondition"
1540          },
1541          "type": "array",
1542          "x-kubernetes-patch-merge-key": "type",
1543          "x-kubernetes-patch-strategy": "merge"
1544        },
1545        "currentReplicas": {
1546          "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
1547          "format": "int32",
1548          "type": "integer"
1549        },
1550        "currentRevision": {
1551          "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
1552          "type": "string"
1553        },
1554        "observedGeneration": {
1555          "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.",
1556          "format": "int64",
1557          "type": "integer"
1558        },
1559        "readyReplicas": {
1560          "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.",
1561          "format": "int32",
1562          "type": "integer"
1563        },
1564        "replicas": {
1565          "description": "replicas is the number of Pods created by the StatefulSet controller.",
1566          "format": "int32",
1567          "type": "integer"
1568        },
1569        "updateRevision": {
1570          "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)",
1571          "type": "string"
1572        },
1573        "updatedReplicas": {
1574          "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
1575          "format": "int32",
1576          "type": "integer"
1577        }
1578      },
1579      "required": [
1580        "replicas"
1581      ],
1582      "type": "object"
1583    },
1584    "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": {
1585      "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.",
1586      "properties": {
1587        "rollingUpdate": {
1588          "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy",
1589          "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType."
1590        },
1591        "type": {
1592          "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.",
1593          "type": "string"
1594        }
1595      },
1596      "type": "object"
1597    },
1598    "io.k8s.api.apps.v1beta1.ControllerRevision": {
1599      "description": "DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.",
1600      "properties": {
1601        "apiVersion": {
1602          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1603          "type": "string"
1604        },
1605        "data": {
1606          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
1607          "description": "Data is the serialized representation of the state."
1608        },
1609        "kind": {
1610          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1611          "type": "string"
1612        },
1613        "metadata": {
1614          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1615          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
1616        },
1617        "revision": {
1618          "description": "Revision indicates the revision of the state represented by Data.",
1619          "format": "int64",
1620          "type": "integer"
1621        }
1622      },
1623      "required": [
1624        "revision"
1625      ],
1626      "type": "object",
1627      "x-kubernetes-group-version-kind": [
1628        {
1629          "group": "apps",
1630          "kind": "ControllerRevision",
1631          "version": "v1beta1"
1632        }
1633      ]
1634    },
1635    "io.k8s.api.apps.v1beta1.ControllerRevisionList": {
1636      "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.",
1637      "properties": {
1638        "apiVersion": {
1639          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1640          "type": "string"
1641        },
1642        "items": {
1643          "description": "Items is the list of ControllerRevisions",
1644          "items": {
1645            "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
1646          },
1647          "type": "array"
1648        },
1649        "kind": {
1650          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1651          "type": "string"
1652        },
1653        "metadata": {
1654          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1655          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
1656        }
1657      },
1658      "required": [
1659        "items"
1660      ],
1661      "type": "object",
1662      "x-kubernetes-group-version-kind": [
1663        {
1664          "group": "apps",
1665          "kind": "ControllerRevisionList",
1666          "version": "v1beta1"
1667        }
1668      ]
1669    },
1670    "io.k8s.api.apps.v1beta1.Deployment": {
1671      "description": "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
1672      "properties": {
1673        "apiVersion": {
1674          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1675          "type": "string"
1676        },
1677        "kind": {
1678          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1679          "type": "string"
1680        },
1681        "metadata": {
1682          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1683          "description": "Standard object metadata."
1684        },
1685        "spec": {
1686          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentSpec",
1687          "description": "Specification of the desired behavior of the Deployment."
1688        },
1689        "status": {
1690          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus",
1691          "description": "Most recently observed status of the Deployment."
1692        }
1693      },
1694      "type": "object",
1695      "x-kubernetes-group-version-kind": [
1696        {
1697          "group": "apps",
1698          "kind": "Deployment",
1699          "version": "v1beta1"
1700        }
1701      ]
1702    },
1703    "io.k8s.api.apps.v1beta1.DeploymentCondition": {
1704      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
1705      "properties": {
1706        "lastTransitionTime": {
1707          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1708          "description": "Last time the condition transitioned from one status to another."
1709        },
1710        "lastUpdateTime": {
1711          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
1712          "description": "The last time this condition was updated."
1713        },
1714        "message": {
1715          "description": "A human readable message indicating details about the transition.",
1716          "type": "string"
1717        },
1718        "reason": {
1719          "description": "The reason for the condition's last transition.",
1720          "type": "string"
1721        },
1722        "status": {
1723          "description": "Status of the condition, one of True, False, Unknown.",
1724          "type": "string"
1725        },
1726        "type": {
1727          "description": "Type of deployment condition.",
1728          "type": "string"
1729        }
1730      },
1731      "required": [
1732        "type",
1733        "status"
1734      ],
1735      "type": "object"
1736    },
1737    "io.k8s.api.apps.v1beta1.DeploymentList": {
1738      "description": "DeploymentList is a list of Deployments.",
1739      "properties": {
1740        "apiVersion": {
1741          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1742          "type": "string"
1743        },
1744        "items": {
1745          "description": "Items is the list of Deployments.",
1746          "items": {
1747            "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
1748          },
1749          "type": "array"
1750        },
1751        "kind": {
1752          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1753          "type": "string"
1754        },
1755        "metadata": {
1756          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
1757          "description": "Standard list metadata."
1758        }
1759      },
1760      "required": [
1761        "items"
1762      ],
1763      "type": "object",
1764      "x-kubernetes-group-version-kind": [
1765        {
1766          "group": "apps",
1767          "kind": "DeploymentList",
1768          "version": "v1beta1"
1769        }
1770      ]
1771    },
1772    "io.k8s.api.apps.v1beta1.DeploymentRollback": {
1773      "description": "DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.",
1774      "properties": {
1775        "apiVersion": {
1776          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1777          "type": "string"
1778        },
1779        "kind": {
1780          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1781          "type": "string"
1782        },
1783        "name": {
1784          "description": "Required: This must match the Name of a deployment.",
1785          "type": "string"
1786        },
1787        "rollbackTo": {
1788          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig",
1789          "description": "The config of this deployment rollback."
1790        },
1791        "updatedAnnotations": {
1792          "additionalProperties": {
1793            "type": "string"
1794          },
1795          "description": "The annotations to be updated to a deployment",
1796          "type": "object"
1797        }
1798      },
1799      "required": [
1800        "name",
1801        "rollbackTo"
1802      ],
1803      "type": "object",
1804      "x-kubernetes-group-version-kind": [
1805        {
1806          "group": "apps",
1807          "kind": "DeploymentRollback",
1808          "version": "v1beta1"
1809        }
1810      ]
1811    },
1812    "io.k8s.api.apps.v1beta1.DeploymentSpec": {
1813      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
1814      "properties": {
1815        "minReadySeconds": {
1816          "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)",
1817          "format": "int32",
1818          "type": "integer"
1819        },
1820        "paused": {
1821          "description": "Indicates that the deployment is paused.",
1822          "type": "boolean"
1823        },
1824        "progressDeadlineSeconds": {
1825          "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.",
1826          "format": "int32",
1827          "type": "integer"
1828        },
1829        "replicas": {
1830          "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
1831          "format": "int32",
1832          "type": "integer"
1833        },
1834        "revisionHistoryLimit": {
1835          "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.",
1836          "format": "int32",
1837          "type": "integer"
1838        },
1839        "rollbackTo": {
1840          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig",
1841          "description": "DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done."
1842        },
1843        "selector": {
1844          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
1845          "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment."
1846        },
1847        "strategy": {
1848          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStrategy",
1849          "description": "The deployment strategy to use to replace existing pods with new ones.",
1850          "x-kubernetes-patch-strategy": "retainKeys"
1851        },
1852        "template": {
1853          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
1854          "description": "Template describes the pods that will be created."
1855        }
1856      },
1857      "required": [
1858        "template"
1859      ],
1860      "type": "object"
1861    },
1862    "io.k8s.api.apps.v1beta1.DeploymentStatus": {
1863      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
1864      "properties": {
1865        "availableReplicas": {
1866          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
1867          "format": "int32",
1868          "type": "integer"
1869        },
1870        "collisionCount": {
1871          "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.",
1872          "format": "int32",
1873          "type": "integer"
1874        },
1875        "conditions": {
1876          "description": "Represents the latest available observations of a deployment's current state.",
1877          "items": {
1878            "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentCondition"
1879          },
1880          "type": "array",
1881          "x-kubernetes-patch-merge-key": "type",
1882          "x-kubernetes-patch-strategy": "merge"
1883        },
1884        "observedGeneration": {
1885          "description": "The generation observed by the deployment controller.",
1886          "format": "int64",
1887          "type": "integer"
1888        },
1889        "readyReplicas": {
1890          "description": "Total number of ready pods targeted by this deployment.",
1891          "format": "int32",
1892          "type": "integer"
1893        },
1894        "replicas": {
1895          "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
1896          "format": "int32",
1897          "type": "integer"
1898        },
1899        "unavailableReplicas": {
1900          "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.",
1901          "format": "int32",
1902          "type": "integer"
1903        },
1904        "updatedReplicas": {
1905          "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
1906          "format": "int32",
1907          "type": "integer"
1908        }
1909      },
1910      "type": "object"
1911    },
1912    "io.k8s.api.apps.v1beta1.DeploymentStrategy": {
1913      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
1914      "properties": {
1915        "rollingUpdate": {
1916          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.RollingUpdateDeployment",
1917          "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
1918        },
1919        "type": {
1920          "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
1921          "type": "string"
1922        }
1923      },
1924      "type": "object"
1925    },
1926    "io.k8s.api.apps.v1beta1.RollbackConfig": {
1927      "description": "DEPRECATED.",
1928      "properties": {
1929        "revision": {
1930          "description": "The revision to rollback to. If set to 0, rollback to the last revision.",
1931          "format": "int64",
1932          "type": "integer"
1933        }
1934      },
1935      "type": "object"
1936    },
1937    "io.k8s.api.apps.v1beta1.RollingUpdateDeployment": {
1938      "description": "Spec to control the desired behavior of rolling update.",
1939      "properties": {
1940        "maxSurge": {
1941          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1942          "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."
1943        },
1944        "maxUnavailable": {
1945          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
1946          "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."
1947        }
1948      },
1949      "type": "object"
1950    },
1951    "io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy": {
1952      "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
1953      "properties": {
1954        "partition": {
1955          "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned.",
1956          "format": "int32",
1957          "type": "integer"
1958        }
1959      },
1960      "type": "object"
1961    },
1962    "io.k8s.api.apps.v1beta1.Scale": {
1963      "description": "Scale represents a scaling request for a resource.",
1964      "properties": {
1965        "apiVersion": {
1966          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
1967          "type": "string"
1968        },
1969        "kind": {
1970          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
1971          "type": "string"
1972        },
1973        "metadata": {
1974          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
1975          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata."
1976        },
1977        "spec": {
1978          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ScaleSpec",
1979          "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status."
1980        },
1981        "status": {
1982          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ScaleStatus",
1983          "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only."
1984        }
1985      },
1986      "type": "object",
1987      "x-kubernetes-group-version-kind": [
1988        {
1989          "group": "apps",
1990          "kind": "Scale",
1991          "version": "v1beta1"
1992        }
1993      ]
1994    },
1995    "io.k8s.api.apps.v1beta1.ScaleSpec": {
1996      "description": "ScaleSpec describes the attributes of a scale subresource",
1997      "properties": {
1998        "replicas": {
1999          "description": "desired number of instances for the scaled object.",
2000          "format": "int32",
2001          "type": "integer"
2002        }
2003      },
2004      "type": "object"
2005    },
2006    "io.k8s.api.apps.v1beta1.ScaleStatus": {
2007      "description": "ScaleStatus represents the current status of a scale subresource.",
2008      "properties": {
2009        "replicas": {
2010          "description": "actual number of observed instances of the scaled object.",
2011          "format": "int32",
2012          "type": "integer"
2013        },
2014        "selector": {
2015          "additionalProperties": {
2016            "type": "string"
2017          },
2018          "description": "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
2019          "type": "object"
2020        },
2021        "targetSelector": {
2022          "description": "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
2023          "type": "string"
2024        }
2025      },
2026      "required": [
2027        "replicas"
2028      ],
2029      "type": "object"
2030    },
2031    "io.k8s.api.apps.v1beta1.StatefulSet": {
2032      "description": "DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as:\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.",
2033      "properties": {
2034        "apiVersion": {
2035          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2036          "type": "string"
2037        },
2038        "kind": {
2039          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2040          "type": "string"
2041        },
2042        "metadata": {
2043          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
2044        },
2045        "spec": {
2046          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetSpec",
2047          "description": "Spec defines the desired identities of pods in this set."
2048        },
2049        "status": {
2050          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetStatus",
2051          "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time."
2052        }
2053      },
2054      "type": "object",
2055      "x-kubernetes-group-version-kind": [
2056        {
2057          "group": "apps",
2058          "kind": "StatefulSet",
2059          "version": "v1beta1"
2060        }
2061      ]
2062    },
2063    "io.k8s.api.apps.v1beta1.StatefulSetCondition": {
2064      "description": "StatefulSetCondition describes the state of a statefulset at a certain point.",
2065      "properties": {
2066        "lastTransitionTime": {
2067          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2068          "description": "Last time the condition transitioned from one status to another."
2069        },
2070        "message": {
2071          "description": "A human readable message indicating details about the transition.",
2072          "type": "string"
2073        },
2074        "reason": {
2075          "description": "The reason for the condition's last transition.",
2076          "type": "string"
2077        },
2078        "status": {
2079          "description": "Status of the condition, one of True, False, Unknown.",
2080          "type": "string"
2081        },
2082        "type": {
2083          "description": "Type of statefulset condition.",
2084          "type": "string"
2085        }
2086      },
2087      "required": [
2088        "type",
2089        "status"
2090      ],
2091      "type": "object"
2092    },
2093    "io.k8s.api.apps.v1beta1.StatefulSetList": {
2094      "description": "StatefulSetList is a collection of StatefulSets.",
2095      "properties": {
2096        "apiVersion": {
2097          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2098          "type": "string"
2099        },
2100        "items": {
2101          "items": {
2102            "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
2103          },
2104          "type": "array"
2105        },
2106        "kind": {
2107          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2108          "type": "string"
2109        },
2110        "metadata": {
2111          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
2112        }
2113      },
2114      "required": [
2115        "items"
2116      ],
2117      "type": "object",
2118      "x-kubernetes-group-version-kind": [
2119        {
2120          "group": "apps",
2121          "kind": "StatefulSetList",
2122          "version": "v1beta1"
2123        }
2124      ]
2125    },
2126    "io.k8s.api.apps.v1beta1.StatefulSetSpec": {
2127      "description": "A StatefulSetSpec is the specification of a StatefulSet.",
2128      "properties": {
2129        "podManagementPolicy": {
2130          "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.",
2131          "type": "string"
2132        },
2133        "replicas": {
2134          "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.",
2135          "format": "int32",
2136          "type": "integer"
2137        },
2138        "revisionHistoryLimit": {
2139          "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.",
2140          "format": "int32",
2141          "type": "integer"
2142        },
2143        "selector": {
2144          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2145          "description": "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
2146        },
2147        "serviceName": {
2148          "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.",
2149          "type": "string"
2150        },
2151        "template": {
2152          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
2153          "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."
2154        },
2155        "updateStrategy": {
2156          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy",
2157          "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template."
2158        },
2159        "volumeClaimTemplates": {
2160          "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.",
2161          "items": {
2162            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
2163          },
2164          "type": "array"
2165        }
2166      },
2167      "required": [
2168        "template",
2169        "serviceName"
2170      ],
2171      "type": "object"
2172    },
2173    "io.k8s.api.apps.v1beta1.StatefulSetStatus": {
2174      "description": "StatefulSetStatus represents the current state of a StatefulSet.",
2175      "properties": {
2176        "collisionCount": {
2177          "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.",
2178          "format": "int32",
2179          "type": "integer"
2180        },
2181        "conditions": {
2182          "description": "Represents the latest available observations of a statefulset's current state.",
2183          "items": {
2184            "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetCondition"
2185          },
2186          "type": "array",
2187          "x-kubernetes-patch-merge-key": "type",
2188          "x-kubernetes-patch-strategy": "merge"
2189        },
2190        "currentReplicas": {
2191          "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
2192          "format": "int32",
2193          "type": "integer"
2194        },
2195        "currentRevision": {
2196          "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
2197          "type": "string"
2198        },
2199        "observedGeneration": {
2200          "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.",
2201          "format": "int64",
2202          "type": "integer"
2203        },
2204        "readyReplicas": {
2205          "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.",
2206          "format": "int32",
2207          "type": "integer"
2208        },
2209        "replicas": {
2210          "description": "replicas is the number of Pods created by the StatefulSet controller.",
2211          "format": "int32",
2212          "type": "integer"
2213        },
2214        "updateRevision": {
2215          "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)",
2216          "type": "string"
2217        },
2218        "updatedReplicas": {
2219          "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
2220          "format": "int32",
2221          "type": "integer"
2222        }
2223      },
2224      "required": [
2225        "replicas"
2226      ],
2227      "type": "object"
2228    },
2229    "io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy": {
2230      "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.",
2231      "properties": {
2232        "rollingUpdate": {
2233          "$ref": "#/definitions/io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy",
2234          "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType."
2235        },
2236        "type": {
2237          "description": "Type indicates the type of the StatefulSetUpdateStrategy.",
2238          "type": "string"
2239        }
2240      },
2241      "type": "object"
2242    },
2243    "io.k8s.api.apps.v1beta2.ControllerRevision": {
2244      "description": "DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.",
2245      "properties": {
2246        "apiVersion": {
2247          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2248          "type": "string"
2249        },
2250        "data": {
2251          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
2252          "description": "Data is the serialized representation of the state."
2253        },
2254        "kind": {
2255          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2256          "type": "string"
2257        },
2258        "metadata": {
2259          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2260          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2261        },
2262        "revision": {
2263          "description": "Revision indicates the revision of the state represented by Data.",
2264          "format": "int64",
2265          "type": "integer"
2266        }
2267      },
2268      "required": [
2269        "revision"
2270      ],
2271      "type": "object",
2272      "x-kubernetes-group-version-kind": [
2273        {
2274          "group": "apps",
2275          "kind": "ControllerRevision",
2276          "version": "v1beta2"
2277        }
2278      ]
2279    },
2280    "io.k8s.api.apps.v1beta2.ControllerRevisionList": {
2281      "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.",
2282      "properties": {
2283        "apiVersion": {
2284          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2285          "type": "string"
2286        },
2287        "items": {
2288          "description": "Items is the list of ControllerRevisions",
2289          "items": {
2290            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
2291          },
2292          "type": "array"
2293        },
2294        "kind": {
2295          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2296          "type": "string"
2297        },
2298        "metadata": {
2299          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2300          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2301        }
2302      },
2303      "required": [
2304        "items"
2305      ],
2306      "type": "object",
2307      "x-kubernetes-group-version-kind": [
2308        {
2309          "group": "apps",
2310          "kind": "ControllerRevisionList",
2311          "version": "v1beta2"
2312        }
2313      ]
2314    },
2315    "io.k8s.api.apps.v1beta2.DaemonSet": {
2316      "description": "DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.",
2317      "properties": {
2318        "apiVersion": {
2319          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2320          "type": "string"
2321        },
2322        "kind": {
2323          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2324          "type": "string"
2325        },
2326        "metadata": {
2327          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2328          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2329        },
2330        "spec": {
2331          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetSpec",
2332          "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"
2333        },
2334        "status": {
2335          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetStatus",
2336          "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"
2337        }
2338      },
2339      "type": "object",
2340      "x-kubernetes-group-version-kind": [
2341        {
2342          "group": "apps",
2343          "kind": "DaemonSet",
2344          "version": "v1beta2"
2345        }
2346      ]
2347    },
2348    "io.k8s.api.apps.v1beta2.DaemonSetCondition": {
2349      "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
2350      "properties": {
2351        "lastTransitionTime": {
2352          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2353          "description": "Last time the condition transitioned from one status to another."
2354        },
2355        "message": {
2356          "description": "A human readable message indicating details about the transition.",
2357          "type": "string"
2358        },
2359        "reason": {
2360          "description": "The reason for the condition's last transition.",
2361          "type": "string"
2362        },
2363        "status": {
2364          "description": "Status of the condition, one of True, False, Unknown.",
2365          "type": "string"
2366        },
2367        "type": {
2368          "description": "Type of DaemonSet condition.",
2369          "type": "string"
2370        }
2371      },
2372      "required": [
2373        "type",
2374        "status"
2375      ],
2376      "type": "object"
2377    },
2378    "io.k8s.api.apps.v1beta2.DaemonSetList": {
2379      "description": "DaemonSetList is a collection of daemon sets.",
2380      "properties": {
2381        "apiVersion": {
2382          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2383          "type": "string"
2384        },
2385        "items": {
2386          "description": "A list of daemon sets.",
2387          "items": {
2388            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
2389          },
2390          "type": "array"
2391        },
2392        "kind": {
2393          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2394          "type": "string"
2395        },
2396        "metadata": {
2397          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2398          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
2399        }
2400      },
2401      "required": [
2402        "items"
2403      ],
2404      "type": "object",
2405      "x-kubernetes-group-version-kind": [
2406        {
2407          "group": "apps",
2408          "kind": "DaemonSetList",
2409          "version": "v1beta2"
2410        }
2411      ]
2412    },
2413    "io.k8s.api.apps.v1beta2.DaemonSetSpec": {
2414      "description": "DaemonSetSpec is the specification of a daemon set.",
2415      "properties": {
2416        "minReadySeconds": {
2417          "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).",
2418          "format": "int32",
2419          "type": "integer"
2420        },
2421        "revisionHistoryLimit": {
2422          "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.",
2423          "format": "int32",
2424          "type": "integer"
2425        },
2426        "selector": {
2427          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2428          "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"
2429        },
2430        "template": {
2431          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
2432          "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"
2433        },
2434        "updateStrategy": {
2435          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetUpdateStrategy",
2436          "description": "An update strategy to replace existing DaemonSet pods with new pods."
2437        }
2438      },
2439      "required": [
2440        "selector",
2441        "template"
2442      ],
2443      "type": "object"
2444    },
2445    "io.k8s.api.apps.v1beta2.DaemonSetStatus": {
2446      "description": "DaemonSetStatus represents the current status of a daemon set.",
2447      "properties": {
2448        "collisionCount": {
2449          "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.",
2450          "format": "int32",
2451          "type": "integer"
2452        },
2453        "conditions": {
2454          "description": "Represents the latest available observations of a DaemonSet's current state.",
2455          "items": {
2456            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetCondition"
2457          },
2458          "type": "array",
2459          "x-kubernetes-patch-merge-key": "type",
2460          "x-kubernetes-patch-strategy": "merge"
2461        },
2462        "currentNumberScheduled": {
2463          "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/",
2464          "format": "int32",
2465          "type": "integer"
2466        },
2467        "desiredNumberScheduled": {
2468          "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/",
2469          "format": "int32",
2470          "type": "integer"
2471        },
2472        "numberAvailable": {
2473          "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)",
2474          "format": "int32",
2475          "type": "integer"
2476        },
2477        "numberMisscheduled": {
2478          "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/",
2479          "format": "int32",
2480          "type": "integer"
2481        },
2482        "numberReady": {
2483          "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
2484          "format": "int32",
2485          "type": "integer"
2486        },
2487        "numberUnavailable": {
2488          "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)",
2489          "format": "int32",
2490          "type": "integer"
2491        },
2492        "observedGeneration": {
2493          "description": "The most recent generation observed by the daemon set controller.",
2494          "format": "int64",
2495          "type": "integer"
2496        },
2497        "updatedNumberScheduled": {
2498          "description": "The total number of nodes that are running updated daemon pod",
2499          "format": "int32",
2500          "type": "integer"
2501        }
2502      },
2503      "required": [
2504        "currentNumberScheduled",
2505        "numberMisscheduled",
2506        "desiredNumberScheduled",
2507        "numberReady"
2508      ],
2509      "type": "object"
2510    },
2511    "io.k8s.api.apps.v1beta2.DaemonSetUpdateStrategy": {
2512      "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
2513      "properties": {
2514        "rollingUpdate": {
2515          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateDaemonSet",
2516          "description": "Rolling update config params. Present only if type = \"RollingUpdate\"."
2517        },
2518        "type": {
2519          "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
2520          "type": "string"
2521        }
2522      },
2523      "type": "object"
2524    },
2525    "io.k8s.api.apps.v1beta2.Deployment": {
2526      "description": "DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
2527      "properties": {
2528        "apiVersion": {
2529          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2530          "type": "string"
2531        },
2532        "kind": {
2533          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2534          "type": "string"
2535        },
2536        "metadata": {
2537          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2538          "description": "Standard object metadata."
2539        },
2540        "spec": {
2541          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentSpec",
2542          "description": "Specification of the desired behavior of the Deployment."
2543        },
2544        "status": {
2545          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentStatus",
2546          "description": "Most recently observed status of the Deployment."
2547        }
2548      },
2549      "type": "object",
2550      "x-kubernetes-group-version-kind": [
2551        {
2552          "group": "apps",
2553          "kind": "Deployment",
2554          "version": "v1beta2"
2555        }
2556      ]
2557    },
2558    "io.k8s.api.apps.v1beta2.DeploymentCondition": {
2559      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
2560      "properties": {
2561        "lastTransitionTime": {
2562          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2563          "description": "Last time the condition transitioned from one status to another."
2564        },
2565        "lastUpdateTime": {
2566          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2567          "description": "The last time this condition was updated."
2568        },
2569        "message": {
2570          "description": "A human readable message indicating details about the transition.",
2571          "type": "string"
2572        },
2573        "reason": {
2574          "description": "The reason for the condition's last transition.",
2575          "type": "string"
2576        },
2577        "status": {
2578          "description": "Status of the condition, one of True, False, Unknown.",
2579          "type": "string"
2580        },
2581        "type": {
2582          "description": "Type of deployment condition.",
2583          "type": "string"
2584        }
2585      },
2586      "required": [
2587        "type",
2588        "status"
2589      ],
2590      "type": "object"
2591    },
2592    "io.k8s.api.apps.v1beta2.DeploymentList": {
2593      "description": "DeploymentList is a list of Deployments.",
2594      "properties": {
2595        "apiVersion": {
2596          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2597          "type": "string"
2598        },
2599        "items": {
2600          "description": "Items is the list of Deployments.",
2601          "items": {
2602            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
2603          },
2604          "type": "array"
2605        },
2606        "kind": {
2607          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2608          "type": "string"
2609        },
2610        "metadata": {
2611          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2612          "description": "Standard list metadata."
2613        }
2614      },
2615      "required": [
2616        "items"
2617      ],
2618      "type": "object",
2619      "x-kubernetes-group-version-kind": [
2620        {
2621          "group": "apps",
2622          "kind": "DeploymentList",
2623          "version": "v1beta2"
2624        }
2625      ]
2626    },
2627    "io.k8s.api.apps.v1beta2.DeploymentSpec": {
2628      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
2629      "properties": {
2630        "minReadySeconds": {
2631          "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)",
2632          "format": "int32",
2633          "type": "integer"
2634        },
2635        "paused": {
2636          "description": "Indicates that the deployment is paused.",
2637          "type": "boolean"
2638        },
2639        "progressDeadlineSeconds": {
2640          "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.",
2641          "format": "int32",
2642          "type": "integer"
2643        },
2644        "replicas": {
2645          "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
2646          "format": "int32",
2647          "type": "integer"
2648        },
2649        "revisionHistoryLimit": {
2650          "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.",
2651          "format": "int32",
2652          "type": "integer"
2653        },
2654        "selector": {
2655          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2656          "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."
2657        },
2658        "strategy": {
2659          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentStrategy",
2660          "description": "The deployment strategy to use to replace existing pods with new ones.",
2661          "x-kubernetes-patch-strategy": "retainKeys"
2662        },
2663        "template": {
2664          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
2665          "description": "Template describes the pods that will be created."
2666        }
2667      },
2668      "required": [
2669        "selector",
2670        "template"
2671      ],
2672      "type": "object"
2673    },
2674    "io.k8s.api.apps.v1beta2.DeploymentStatus": {
2675      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
2676      "properties": {
2677        "availableReplicas": {
2678          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
2679          "format": "int32",
2680          "type": "integer"
2681        },
2682        "collisionCount": {
2683          "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.",
2684          "format": "int32",
2685          "type": "integer"
2686        },
2687        "conditions": {
2688          "description": "Represents the latest available observations of a deployment's current state.",
2689          "items": {
2690            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentCondition"
2691          },
2692          "type": "array",
2693          "x-kubernetes-patch-merge-key": "type",
2694          "x-kubernetes-patch-strategy": "merge"
2695        },
2696        "observedGeneration": {
2697          "description": "The generation observed by the deployment controller.",
2698          "format": "int64",
2699          "type": "integer"
2700        },
2701        "readyReplicas": {
2702          "description": "Total number of ready pods targeted by this deployment.",
2703          "format": "int32",
2704          "type": "integer"
2705        },
2706        "replicas": {
2707          "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
2708          "format": "int32",
2709          "type": "integer"
2710        },
2711        "unavailableReplicas": {
2712          "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.",
2713          "format": "int32",
2714          "type": "integer"
2715        },
2716        "updatedReplicas": {
2717          "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
2718          "format": "int32",
2719          "type": "integer"
2720        }
2721      },
2722      "type": "object"
2723    },
2724    "io.k8s.api.apps.v1beta2.DeploymentStrategy": {
2725      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
2726      "properties": {
2727        "rollingUpdate": {
2728          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateDeployment",
2729          "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
2730        },
2731        "type": {
2732          "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
2733          "type": "string"
2734        }
2735      },
2736      "type": "object"
2737    },
2738    "io.k8s.api.apps.v1beta2.ReplicaSet": {
2739      "description": "DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
2740      "properties": {
2741        "apiVersion": {
2742          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2743          "type": "string"
2744        },
2745        "kind": {
2746          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2747          "type": "string"
2748        },
2749        "metadata": {
2750          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2751          "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"
2752        },
2753        "spec": {
2754          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetSpec",
2755          "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"
2756        },
2757        "status": {
2758          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetStatus",
2759          "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"
2760        }
2761      },
2762      "type": "object",
2763      "x-kubernetes-group-version-kind": [
2764        {
2765          "group": "apps",
2766          "kind": "ReplicaSet",
2767          "version": "v1beta2"
2768        }
2769      ]
2770    },
2771    "io.k8s.api.apps.v1beta2.ReplicaSetCondition": {
2772      "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
2773      "properties": {
2774        "lastTransitionTime": {
2775          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
2776          "description": "The last time the condition transitioned from one status to another."
2777        },
2778        "message": {
2779          "description": "A human readable message indicating details about the transition.",
2780          "type": "string"
2781        },
2782        "reason": {
2783          "description": "The reason for the condition's last transition.",
2784          "type": "string"
2785        },
2786        "status": {
2787          "description": "Status of the condition, one of True, False, Unknown.",
2788          "type": "string"
2789        },
2790        "type": {
2791          "description": "Type of replica set condition.",
2792          "type": "string"
2793        }
2794      },
2795      "required": [
2796        "type",
2797        "status"
2798      ],
2799      "type": "object"
2800    },
2801    "io.k8s.api.apps.v1beta2.ReplicaSetList": {
2802      "description": "ReplicaSetList is a collection of ReplicaSets.",
2803      "properties": {
2804        "apiVersion": {
2805          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2806          "type": "string"
2807        },
2808        "items": {
2809          "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
2810          "items": {
2811            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
2812          },
2813          "type": "array"
2814        },
2815        "kind": {
2816          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2817          "type": "string"
2818        },
2819        "metadata": {
2820          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
2821          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
2822        }
2823      },
2824      "required": [
2825        "items"
2826      ],
2827      "type": "object",
2828      "x-kubernetes-group-version-kind": [
2829        {
2830          "group": "apps",
2831          "kind": "ReplicaSetList",
2832          "version": "v1beta2"
2833        }
2834      ]
2835    },
2836    "io.k8s.api.apps.v1beta2.ReplicaSetSpec": {
2837      "description": "ReplicaSetSpec is the specification of a ReplicaSet.",
2838      "properties": {
2839        "minReadySeconds": {
2840          "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)",
2841          "format": "int32",
2842          "type": "integer"
2843        },
2844        "replicas": {
2845          "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",
2846          "format": "int32",
2847          "type": "integer"
2848        },
2849        "selector": {
2850          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
2851          "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"
2852        },
2853        "template": {
2854          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
2855          "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"
2856        }
2857      },
2858      "required": [
2859        "selector"
2860      ],
2861      "type": "object"
2862    },
2863    "io.k8s.api.apps.v1beta2.ReplicaSetStatus": {
2864      "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
2865      "properties": {
2866        "availableReplicas": {
2867          "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
2868          "format": "int32",
2869          "type": "integer"
2870        },
2871        "conditions": {
2872          "description": "Represents the latest available observations of a replica set's current state.",
2873          "items": {
2874            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetCondition"
2875          },
2876          "type": "array",
2877          "x-kubernetes-patch-merge-key": "type",
2878          "x-kubernetes-patch-strategy": "merge"
2879        },
2880        "fullyLabeledReplicas": {
2881          "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
2882          "format": "int32",
2883          "type": "integer"
2884        },
2885        "observedGeneration": {
2886          "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
2887          "format": "int64",
2888          "type": "integer"
2889        },
2890        "readyReplicas": {
2891          "description": "The number of ready replicas for this replica set.",
2892          "format": "int32",
2893          "type": "integer"
2894        },
2895        "replicas": {
2896          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
2897          "format": "int32",
2898          "type": "integer"
2899        }
2900      },
2901      "required": [
2902        "replicas"
2903      ],
2904      "type": "object"
2905    },
2906    "io.k8s.api.apps.v1beta2.RollingUpdateDaemonSet": {
2907      "description": "Spec to control the desired behavior of daemon set rolling update.",
2908      "properties": {
2909        "maxUnavailable": {
2910          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
2911          "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
2912        }
2913      },
2914      "type": "object"
2915    },
2916    "io.k8s.api.apps.v1beta2.RollingUpdateDeployment": {
2917      "description": "Spec to control the desired behavior of rolling update.",
2918      "properties": {
2919        "maxSurge": {
2920          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
2921          "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."
2922        },
2923        "maxUnavailable": {
2924          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
2925          "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."
2926        }
2927      },
2928      "type": "object"
2929    },
2930    "io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy": {
2931      "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.",
2932      "properties": {
2933        "partition": {
2934          "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.",
2935          "format": "int32",
2936          "type": "integer"
2937        }
2938      },
2939      "type": "object"
2940    },
2941    "io.k8s.api.apps.v1beta2.Scale": {
2942      "description": "Scale represents a scaling request for a resource.",
2943      "properties": {
2944        "apiVersion": {
2945          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
2946          "type": "string"
2947        },
2948        "kind": {
2949          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
2950          "type": "string"
2951        },
2952        "metadata": {
2953          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
2954          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
2955        },
2956        "spec": {
2957          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ScaleSpec",
2958          "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
2959        },
2960        "status": {
2961          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ScaleStatus",
2962          "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."
2963        }
2964      },
2965      "type": "object",
2966      "x-kubernetes-group-version-kind": [
2967        {
2968          "group": "apps",
2969          "kind": "Scale",
2970          "version": "v1beta2"
2971        }
2972      ]
2973    },
2974    "io.k8s.api.apps.v1beta2.ScaleSpec": {
2975      "description": "ScaleSpec describes the attributes of a scale subresource",
2976      "properties": {
2977        "replicas": {
2978          "description": "desired number of instances for the scaled object.",
2979          "format": "int32",
2980          "type": "integer"
2981        }
2982      },
2983      "type": "object"
2984    },
2985    "io.k8s.api.apps.v1beta2.ScaleStatus": {
2986      "description": "ScaleStatus represents the current status of a scale subresource.",
2987      "properties": {
2988        "replicas": {
2989          "description": "actual number of observed instances of the scaled object.",
2990          "format": "int32",
2991          "type": "integer"
2992        },
2993        "selector": {
2994          "additionalProperties": {
2995            "type": "string"
2996          },
2997          "description": "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
2998          "type": "object"
2999        },
3000        "targetSelector": {
3001          "description": "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
3002          "type": "string"
3003        }
3004      },
3005      "required": [
3006        "replicas"
3007      ],
3008      "type": "object"
3009    },
3010    "io.k8s.api.apps.v1beta2.StatefulSet": {
3011      "description": "DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as:\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.",
3012      "properties": {
3013        "apiVersion": {
3014          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3015          "type": "string"
3016        },
3017        "kind": {
3018          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3019          "type": "string"
3020        },
3021        "metadata": {
3022          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3023        },
3024        "spec": {
3025          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetSpec",
3026          "description": "Spec defines the desired identities of pods in this set."
3027        },
3028        "status": {
3029          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetStatus",
3030          "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time."
3031        }
3032      },
3033      "type": "object",
3034      "x-kubernetes-group-version-kind": [
3035        {
3036          "group": "apps",
3037          "kind": "StatefulSet",
3038          "version": "v1beta2"
3039        }
3040      ]
3041    },
3042    "io.k8s.api.apps.v1beta2.StatefulSetCondition": {
3043      "description": "StatefulSetCondition describes the state of a statefulset at a certain point.",
3044      "properties": {
3045        "lastTransitionTime": {
3046          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3047          "description": "Last time the condition transitioned from one status to another."
3048        },
3049        "message": {
3050          "description": "A human readable message indicating details about the transition.",
3051          "type": "string"
3052        },
3053        "reason": {
3054          "description": "The reason for the condition's last transition.",
3055          "type": "string"
3056        },
3057        "status": {
3058          "description": "Status of the condition, one of True, False, Unknown.",
3059          "type": "string"
3060        },
3061        "type": {
3062          "description": "Type of statefulset condition.",
3063          "type": "string"
3064        }
3065      },
3066      "required": [
3067        "type",
3068        "status"
3069      ],
3070      "type": "object"
3071    },
3072    "io.k8s.api.apps.v1beta2.StatefulSetList": {
3073      "description": "StatefulSetList is a collection of StatefulSets.",
3074      "properties": {
3075        "apiVersion": {
3076          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3077          "type": "string"
3078        },
3079        "items": {
3080          "items": {
3081            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
3082          },
3083          "type": "array"
3084        },
3085        "kind": {
3086          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3087          "type": "string"
3088        },
3089        "metadata": {
3090          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
3091        }
3092      },
3093      "required": [
3094        "items"
3095      ],
3096      "type": "object",
3097      "x-kubernetes-group-version-kind": [
3098        {
3099          "group": "apps",
3100          "kind": "StatefulSetList",
3101          "version": "v1beta2"
3102        }
3103      ]
3104    },
3105    "io.k8s.api.apps.v1beta2.StatefulSetSpec": {
3106      "description": "A StatefulSetSpec is the specification of a StatefulSet.",
3107      "properties": {
3108        "podManagementPolicy": {
3109          "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.",
3110          "type": "string"
3111        },
3112        "replicas": {
3113          "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.",
3114          "format": "int32",
3115          "type": "integer"
3116        },
3117        "revisionHistoryLimit": {
3118          "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.",
3119          "format": "int32",
3120          "type": "integer"
3121        },
3122        "selector": {
3123          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
3124          "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"
3125        },
3126        "serviceName": {
3127          "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.",
3128          "type": "string"
3129        },
3130        "template": {
3131          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
3132          "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."
3133        },
3134        "updateStrategy": {
3135          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy",
3136          "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template."
3137        },
3138        "volumeClaimTemplates": {
3139          "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.",
3140          "items": {
3141            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
3142          },
3143          "type": "array"
3144        }
3145      },
3146      "required": [
3147        "selector",
3148        "template",
3149        "serviceName"
3150      ],
3151      "type": "object"
3152    },
3153    "io.k8s.api.apps.v1beta2.StatefulSetStatus": {
3154      "description": "StatefulSetStatus represents the current state of a StatefulSet.",
3155      "properties": {
3156        "collisionCount": {
3157          "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.",
3158          "format": "int32",
3159          "type": "integer"
3160        },
3161        "conditions": {
3162          "description": "Represents the latest available observations of a statefulset's current state.",
3163          "items": {
3164            "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetCondition"
3165          },
3166          "type": "array",
3167          "x-kubernetes-patch-merge-key": "type",
3168          "x-kubernetes-patch-strategy": "merge"
3169        },
3170        "currentReplicas": {
3171          "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
3172          "format": "int32",
3173          "type": "integer"
3174        },
3175        "currentRevision": {
3176          "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
3177          "type": "string"
3178        },
3179        "observedGeneration": {
3180          "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.",
3181          "format": "int64",
3182          "type": "integer"
3183        },
3184        "readyReplicas": {
3185          "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.",
3186          "format": "int32",
3187          "type": "integer"
3188        },
3189        "replicas": {
3190          "description": "replicas is the number of Pods created by the StatefulSet controller.",
3191          "format": "int32",
3192          "type": "integer"
3193        },
3194        "updateRevision": {
3195          "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)",
3196          "type": "string"
3197        },
3198        "updatedReplicas": {
3199          "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
3200          "format": "int32",
3201          "type": "integer"
3202        }
3203      },
3204      "required": [
3205        "replicas"
3206      ],
3207      "type": "object"
3208    },
3209    "io.k8s.api.apps.v1beta2.StatefulSetUpdateStrategy": {
3210      "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.",
3211      "properties": {
3212        "rollingUpdate": {
3213          "$ref": "#/definitions/io.k8s.api.apps.v1beta2.RollingUpdateStatefulSetStrategy",
3214          "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType."
3215        },
3216        "type": {
3217          "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.",
3218          "type": "string"
3219        }
3220      },
3221      "type": "object"
3222    },
3223    "io.k8s.api.auditregistration.v1alpha1.AuditSink": {
3224      "description": "AuditSink represents a cluster level audit sink",
3225      "properties": {
3226        "apiVersion": {
3227          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3228          "type": "string"
3229        },
3230        "kind": {
3231          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3232          "type": "string"
3233        },
3234        "metadata": {
3235          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3236        },
3237        "spec": {
3238          "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec",
3239          "description": "Spec defines the audit configuration spec"
3240        }
3241      },
3242      "type": "object",
3243      "x-kubernetes-group-version-kind": [
3244        {
3245          "group": "auditregistration.k8s.io",
3246          "kind": "AuditSink",
3247          "version": "v1alpha1"
3248        }
3249      ]
3250    },
3251    "io.k8s.api.auditregistration.v1alpha1.AuditSinkList": {
3252      "description": "AuditSinkList is a list of AuditSink items.",
3253      "properties": {
3254        "apiVersion": {
3255          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3256          "type": "string"
3257        },
3258        "items": {
3259          "description": "List of audit configurations.",
3260          "items": {
3261            "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
3262          },
3263          "type": "array"
3264        },
3265        "kind": {
3266          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3267          "type": "string"
3268        },
3269        "metadata": {
3270          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
3271        }
3272      },
3273      "required": [
3274        "items"
3275      ],
3276      "type": "object",
3277      "x-kubernetes-group-version-kind": [
3278        {
3279          "group": "auditregistration.k8s.io",
3280          "kind": "AuditSinkList",
3281          "version": "v1alpha1"
3282        }
3283      ]
3284    },
3285    "io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec": {
3286      "description": "AuditSinkSpec holds the spec for the audit sink",
3287      "properties": {
3288        "policy": {
3289          "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.Policy",
3290          "description": "Policy defines the policy for selecting which events should be sent to the webhook required"
3291        },
3292        "webhook": {
3293          "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.Webhook",
3294          "description": "Webhook to send events required"
3295        }
3296      },
3297      "required": [
3298        "policy",
3299        "webhook"
3300      ],
3301      "type": "object"
3302    },
3303    "io.k8s.api.auditregistration.v1alpha1.Policy": {
3304      "description": "Policy defines the configuration of how audit events are logged",
3305      "properties": {
3306        "level": {
3307          "description": "The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required",
3308          "type": "string"
3309        },
3310        "stages": {
3311          "description": "Stages is a list of stages for which events are created.",
3312          "items": {
3313            "type": "string"
3314          },
3315          "type": "array"
3316        }
3317      },
3318      "required": [
3319        "level"
3320      ],
3321      "type": "object"
3322    },
3323    "io.k8s.api.auditregistration.v1alpha1.ServiceReference": {
3324      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
3325      "properties": {
3326        "name": {
3327          "description": "`name` is the name of the service. Required",
3328          "type": "string"
3329        },
3330        "namespace": {
3331          "description": "`namespace` is the namespace of the service. Required",
3332          "type": "string"
3333        },
3334        "path": {
3335          "description": "`path` is an optional URL path which will be sent in any request to this service.",
3336          "type": "string"
3337        },
3338        "port": {
3339          "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).",
3340          "format": "int32",
3341          "type": "integer"
3342        }
3343      },
3344      "required": [
3345        "namespace",
3346        "name"
3347      ],
3348      "type": "object"
3349    },
3350    "io.k8s.api.auditregistration.v1alpha1.Webhook": {
3351      "description": "Webhook holds the configuration of the webhook",
3352      "properties": {
3353        "clientConfig": {
3354          "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.WebhookClientConfig",
3355          "description": "ClientConfig holds the connection parameters for the webhook required"
3356        },
3357        "throttle": {
3358          "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig",
3359          "description": "Throttle holds the options for throttling the webhook"
3360        }
3361      },
3362      "required": [
3363        "clientConfig"
3364      ],
3365      "type": "object"
3366    },
3367    "io.k8s.api.auditregistration.v1alpha1.WebhookClientConfig": {
3368      "description": "WebhookClientConfig contains the information to make a connection with the webhook",
3369      "properties": {
3370        "caBundle": {
3371          "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.",
3372          "format": "byte",
3373          "type": "string"
3374        },
3375        "service": {
3376          "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.ServiceReference",
3377          "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`."
3378        },
3379        "url": {
3380          "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.",
3381          "type": "string"
3382        }
3383      },
3384      "type": "object"
3385    },
3386    "io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig": {
3387      "description": "WebhookThrottleConfig holds the configuration for throttling events",
3388      "properties": {
3389        "burst": {
3390          "description": "ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS",
3391          "format": "int64",
3392          "type": "integer"
3393        },
3394        "qps": {
3395          "description": "ThrottleQPS maximum number of batches per second default 10 QPS",
3396          "format": "int64",
3397          "type": "integer"
3398        }
3399      },
3400      "type": "object"
3401    },
3402    "io.k8s.api.authentication.v1.BoundObjectReference": {
3403      "description": "BoundObjectReference is a reference to an object that a token is bound to.",
3404      "properties": {
3405        "apiVersion": {
3406          "description": "API version of the referent.",
3407          "type": "string"
3408        },
3409        "kind": {
3410          "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
3411          "type": "string"
3412        },
3413        "name": {
3414          "description": "Name of the referent.",
3415          "type": "string"
3416        },
3417        "uid": {
3418          "description": "UID of the referent.",
3419          "type": "string"
3420        }
3421      },
3422      "type": "object"
3423    },
3424    "io.k8s.api.authentication.v1.TokenRequest": {
3425      "description": "TokenRequest requests a token for a given service account.",
3426      "properties": {
3427        "apiVersion": {
3428          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3429          "type": "string"
3430        },
3431        "kind": {
3432          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3433          "type": "string"
3434        },
3435        "metadata": {
3436          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3437        },
3438        "spec": {
3439          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestSpec"
3440        },
3441        "status": {
3442          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequestStatus"
3443        }
3444      },
3445      "required": [
3446        "spec"
3447      ],
3448      "type": "object",
3449      "x-kubernetes-group-version-kind": [
3450        {
3451          "group": "authentication.k8s.io",
3452          "kind": "TokenRequest",
3453          "version": "v1"
3454        }
3455      ]
3456    },
3457    "io.k8s.api.authentication.v1.TokenRequestSpec": {
3458      "description": "TokenRequestSpec contains client provided parameters of a token request.",
3459      "properties": {
3460        "audiences": {
3461          "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.",
3462          "items": {
3463            "type": "string"
3464          },
3465          "type": "array"
3466        },
3467        "boundObjectRef": {
3468          "$ref": "#/definitions/io.k8s.api.authentication.v1.BoundObjectReference",
3469          "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."
3470        },
3471        "expirationSeconds": {
3472          "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.",
3473          "format": "int64",
3474          "type": "integer"
3475        }
3476      },
3477      "required": [
3478        "audiences"
3479      ],
3480      "type": "object"
3481    },
3482    "io.k8s.api.authentication.v1.TokenRequestStatus": {
3483      "description": "TokenRequestStatus is the result of a token request.",
3484      "properties": {
3485        "expirationTimestamp": {
3486          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
3487          "description": "ExpirationTimestamp is the time of expiration of the returned token."
3488        },
3489        "token": {
3490          "description": "Token is the opaque bearer token.",
3491          "type": "string"
3492        }
3493      },
3494      "required": [
3495        "token",
3496        "expirationTimestamp"
3497      ],
3498      "type": "object"
3499    },
3500    "io.k8s.api.authentication.v1.TokenReview": {
3501      "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.",
3502      "properties": {
3503        "apiVersion": {
3504          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3505          "type": "string"
3506        },
3507        "kind": {
3508          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3509          "type": "string"
3510        },
3511        "metadata": {
3512          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3513        },
3514        "spec": {
3515          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewSpec",
3516          "description": "Spec holds information about the request being evaluated"
3517        },
3518        "status": {
3519          "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReviewStatus",
3520          "description": "Status is filled in by the server and indicates whether the request can be authenticated."
3521        }
3522      },
3523      "required": [
3524        "spec"
3525      ],
3526      "type": "object",
3527      "x-kubernetes-group-version-kind": [
3528        {
3529          "group": "authentication.k8s.io",
3530          "kind": "TokenReview",
3531          "version": "v1"
3532        }
3533      ]
3534    },
3535    "io.k8s.api.authentication.v1.TokenReviewSpec": {
3536      "description": "TokenReviewSpec is a description of the token authentication request.",
3537      "properties": {
3538        "audiences": {
3539          "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.",
3540          "items": {
3541            "type": "string"
3542          },
3543          "type": "array"
3544        },
3545        "token": {
3546          "description": "Token is the opaque bearer token.",
3547          "type": "string"
3548        }
3549      },
3550      "type": "object"
3551    },
3552    "io.k8s.api.authentication.v1.TokenReviewStatus": {
3553      "description": "TokenReviewStatus is the result of the token authentication request.",
3554      "properties": {
3555        "audiences": {
3556          "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.",
3557          "items": {
3558            "type": "string"
3559          },
3560          "type": "array"
3561        },
3562        "authenticated": {
3563          "description": "Authenticated indicates that the token was associated with a known user.",
3564          "type": "boolean"
3565        },
3566        "error": {
3567          "description": "Error indicates that the token couldn't be checked",
3568          "type": "string"
3569        },
3570        "user": {
3571          "$ref": "#/definitions/io.k8s.api.authentication.v1.UserInfo",
3572          "description": "User is the UserInfo associated with the provided token."
3573        }
3574      },
3575      "type": "object"
3576    },
3577    "io.k8s.api.authentication.v1.UserInfo": {
3578      "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
3579      "properties": {
3580        "extra": {
3581          "additionalProperties": {
3582            "items": {
3583              "type": "string"
3584            },
3585            "type": "array"
3586          },
3587          "description": "Any additional information provided by the authenticator.",
3588          "type": "object"
3589        },
3590        "groups": {
3591          "description": "The names of groups this user is a part of.",
3592          "items": {
3593            "type": "string"
3594          },
3595          "type": "array"
3596        },
3597        "uid": {
3598          "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.",
3599          "type": "string"
3600        },
3601        "username": {
3602          "description": "The name that uniquely identifies this user among all active users.",
3603          "type": "string"
3604        }
3605      },
3606      "type": "object"
3607    },
3608    "io.k8s.api.authentication.v1beta1.TokenReview": {
3609      "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.",
3610      "properties": {
3611        "apiVersion": {
3612          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3613          "type": "string"
3614        },
3615        "kind": {
3616          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3617          "type": "string"
3618        },
3619        "metadata": {
3620          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3621        },
3622        "spec": {
3623          "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewSpec",
3624          "description": "Spec holds information about the request being evaluated"
3625        },
3626        "status": {
3627          "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReviewStatus",
3628          "description": "Status is filled in by the server and indicates whether the request can be authenticated."
3629        }
3630      },
3631      "required": [
3632        "spec"
3633      ],
3634      "type": "object",
3635      "x-kubernetes-group-version-kind": [
3636        {
3637          "group": "authentication.k8s.io",
3638          "kind": "TokenReview",
3639          "version": "v1beta1"
3640        }
3641      ]
3642    },
3643    "io.k8s.api.authentication.v1beta1.TokenReviewSpec": {
3644      "description": "TokenReviewSpec is a description of the token authentication request.",
3645      "properties": {
3646        "audiences": {
3647          "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.",
3648          "items": {
3649            "type": "string"
3650          },
3651          "type": "array"
3652        },
3653        "token": {
3654          "description": "Token is the opaque bearer token.",
3655          "type": "string"
3656        }
3657      },
3658      "type": "object"
3659    },
3660    "io.k8s.api.authentication.v1beta1.TokenReviewStatus": {
3661      "description": "TokenReviewStatus is the result of the token authentication request.",
3662      "properties": {
3663        "audiences": {
3664          "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.",
3665          "items": {
3666            "type": "string"
3667          },
3668          "type": "array"
3669        },
3670        "authenticated": {
3671          "description": "Authenticated indicates that the token was associated with a known user.",
3672          "type": "boolean"
3673        },
3674        "error": {
3675          "description": "Error indicates that the token couldn't be checked",
3676          "type": "string"
3677        },
3678        "user": {
3679          "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.UserInfo",
3680          "description": "User is the UserInfo associated with the provided token."
3681        }
3682      },
3683      "type": "object"
3684    },
3685    "io.k8s.api.authentication.v1beta1.UserInfo": {
3686      "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
3687      "properties": {
3688        "extra": {
3689          "additionalProperties": {
3690            "items": {
3691              "type": "string"
3692            },
3693            "type": "array"
3694          },
3695          "description": "Any additional information provided by the authenticator.",
3696          "type": "object"
3697        },
3698        "groups": {
3699          "description": "The names of groups this user is a part of.",
3700          "items": {
3701            "type": "string"
3702          },
3703          "type": "array"
3704        },
3705        "uid": {
3706          "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.",
3707          "type": "string"
3708        },
3709        "username": {
3710          "description": "The name that uniquely identifies this user among all active users.",
3711          "type": "string"
3712        }
3713      },
3714      "type": "object"
3715    },
3716    "io.k8s.api.authorization.v1.LocalSubjectAccessReview": {
3717      "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.",
3718      "properties": {
3719        "apiVersion": {
3720          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3721          "type": "string"
3722        },
3723        "kind": {
3724          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3725          "type": "string"
3726        },
3727        "metadata": {
3728          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3729        },
3730        "spec": {
3731          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec",
3732          "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."
3733        },
3734        "status": {
3735          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
3736          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
3737        }
3738      },
3739      "required": [
3740        "spec"
3741      ],
3742      "type": "object",
3743      "x-kubernetes-group-version-kind": [
3744        {
3745          "group": "authorization.k8s.io",
3746          "kind": "LocalSubjectAccessReview",
3747          "version": "v1"
3748        }
3749      ]
3750    },
3751    "io.k8s.api.authorization.v1.NonResourceAttributes": {
3752      "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
3753      "properties": {
3754        "path": {
3755          "description": "Path is the URL path of the request",
3756          "type": "string"
3757        },
3758        "verb": {
3759          "description": "Verb is the standard HTTP verb",
3760          "type": "string"
3761        }
3762      },
3763      "type": "object"
3764    },
3765    "io.k8s.api.authorization.v1.NonResourceRule": {
3766      "description": "NonResourceRule holds information that describes a rule for the non-resource",
3767      "properties": {
3768        "nonResourceURLs": {
3769          "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.",
3770          "items": {
3771            "type": "string"
3772          },
3773          "type": "array"
3774        },
3775        "verbs": {
3776          "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  \"*\" means all.",
3777          "items": {
3778            "type": "string"
3779          },
3780          "type": "array"
3781        }
3782      },
3783      "required": [
3784        "verbs"
3785      ],
3786      "type": "object"
3787    },
3788    "io.k8s.api.authorization.v1.ResourceAttributes": {
3789      "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
3790      "properties": {
3791        "group": {
3792          "description": "Group is the API Group of the Resource.  \"*\" means all.",
3793          "type": "string"
3794        },
3795        "name": {
3796          "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.",
3797          "type": "string"
3798        },
3799        "namespace": {
3800          "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",
3801          "type": "string"
3802        },
3803        "resource": {
3804          "description": "Resource is one of the existing resource types.  \"*\" means all.",
3805          "type": "string"
3806        },
3807        "subresource": {
3808          "description": "Subresource is one of the existing resource types.  \"\" means none.",
3809          "type": "string"
3810        },
3811        "verb": {
3812          "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
3813          "type": "string"
3814        },
3815        "version": {
3816          "description": "Version is the API Version of the Resource.  \"*\" means all.",
3817          "type": "string"
3818        }
3819      },
3820      "type": "object"
3821    },
3822    "io.k8s.api.authorization.v1.ResourceRule": {
3823      "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.",
3824      "properties": {
3825        "apiGroups": {
3826          "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.",
3827          "items": {
3828            "type": "string"
3829          },
3830          "type": "array"
3831        },
3832        "resourceNames": {
3833          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
3834          "items": {
3835            "type": "string"
3836          },
3837          "type": "array"
3838        },
3839        "resources": {
3840          "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.",
3841          "items": {
3842            "type": "string"
3843          },
3844          "type": "array"
3845        },
3846        "verbs": {
3847          "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
3848          "items": {
3849            "type": "string"
3850          },
3851          "type": "array"
3852        }
3853      },
3854      "required": [
3855        "verbs"
3856      ],
3857      "type": "object"
3858    },
3859    "io.k8s.api.authorization.v1.SelfSubjectAccessReview": {
3860      "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",
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/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/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.authorization.v1.SelfSubjectAccessReviewSpec",
3875          "description": "Spec holds information about the request being evaluated.  user and groups must be empty"
3876        },
3877        "status": {
3878          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
3879          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
3880        }
3881      },
3882      "required": [
3883        "spec"
3884      ],
3885      "type": "object",
3886      "x-kubernetes-group-version-kind": [
3887        {
3888          "group": "authorization.k8s.io",
3889          "kind": "SelfSubjectAccessReview",
3890          "version": "v1"
3891        }
3892      ]
3893    },
3894    "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": {
3895      "description": "SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
3896      "properties": {
3897        "nonResourceAttributes": {
3898          "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes",
3899          "description": "NonResourceAttributes describes information for a non-resource access request"
3900        },
3901        "resourceAttributes": {
3902          "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes",
3903          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
3904        }
3905      },
3906      "type": "object"
3907    },
3908    "io.k8s.api.authorization.v1.SelfSubjectRulesReview": {
3909      "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.",
3910      "properties": {
3911        "apiVersion": {
3912          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3913          "type": "string"
3914        },
3915        "kind": {
3916          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3917          "type": "string"
3918        },
3919        "metadata": {
3920          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3921        },
3922        "spec": {
3923          "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec",
3924          "description": "Spec holds information about the request being evaluated."
3925        },
3926        "status": {
3927          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectRulesReviewStatus",
3928          "description": "Status is filled in by the server and indicates the set of actions a user can perform."
3929        }
3930      },
3931      "required": [
3932        "spec"
3933      ],
3934      "type": "object",
3935      "x-kubernetes-group-version-kind": [
3936        {
3937          "group": "authorization.k8s.io",
3938          "kind": "SelfSubjectRulesReview",
3939          "version": "v1"
3940        }
3941      ]
3942    },
3943    "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": {
3944      "properties": {
3945        "namespace": {
3946          "description": "Namespace to evaluate rules for. Required.",
3947          "type": "string"
3948        }
3949      },
3950      "type": "object"
3951    },
3952    "io.k8s.api.authorization.v1.SubjectAccessReview": {
3953      "description": "SubjectAccessReview checks whether or not a user or group can perform an action.",
3954      "properties": {
3955        "apiVersion": {
3956          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
3957          "type": "string"
3958        },
3959        "kind": {
3960          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
3961          "type": "string"
3962        },
3963        "metadata": {
3964          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
3965        },
3966        "spec": {
3967          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewSpec",
3968          "description": "Spec holds information about the request being evaluated"
3969        },
3970        "status": {
3971          "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReviewStatus",
3972          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
3973        }
3974      },
3975      "required": [
3976        "spec"
3977      ],
3978      "type": "object",
3979      "x-kubernetes-group-version-kind": [
3980        {
3981          "group": "authorization.k8s.io",
3982          "kind": "SubjectAccessReview",
3983          "version": "v1"
3984        }
3985      ]
3986    },
3987    "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": {
3988      "description": "SubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
3989      "properties": {
3990        "extra": {
3991          "additionalProperties": {
3992            "items": {
3993              "type": "string"
3994            },
3995            "type": "array"
3996          },
3997          "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer it needs a reflection here.",
3998          "type": "object"
3999        },
4000        "groups": {
4001          "description": "Groups is the groups you're testing for.",
4002          "items": {
4003            "type": "string"
4004          },
4005          "type": "array"
4006        },
4007        "nonResourceAttributes": {
4008          "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceAttributes",
4009          "description": "NonResourceAttributes describes information for a non-resource access request"
4010        },
4011        "resourceAttributes": {
4012          "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceAttributes",
4013          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
4014        },
4015        "uid": {
4016          "description": "UID information about the requesting user.",
4017          "type": "string"
4018        },
4019        "user": {
4020          "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",
4021          "type": "string"
4022        }
4023      },
4024      "type": "object"
4025    },
4026    "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": {
4027      "description": "SubjectAccessReviewStatus",
4028      "properties": {
4029        "allowed": {
4030          "description": "Allowed is required. True if the action would be allowed, false otherwise.",
4031          "type": "boolean"
4032        },
4033        "denied": {
4034          "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.",
4035          "type": "boolean"
4036        },
4037        "evaluationError": {
4038          "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.",
4039          "type": "string"
4040        },
4041        "reason": {
4042          "description": "Reason is optional.  It indicates why a request was allowed or denied.",
4043          "type": "string"
4044        }
4045      },
4046      "required": [
4047        "allowed"
4048      ],
4049      "type": "object"
4050    },
4051    "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": {
4052      "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.",
4053      "properties": {
4054        "evaluationError": {
4055          "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.",
4056          "type": "string"
4057        },
4058        "incomplete": {
4059          "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.",
4060          "type": "boolean"
4061        },
4062        "nonResourceRules": {
4063          "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.",
4064          "items": {
4065            "$ref": "#/definitions/io.k8s.api.authorization.v1.NonResourceRule"
4066          },
4067          "type": "array"
4068        },
4069        "resourceRules": {
4070          "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.",
4071          "items": {
4072            "$ref": "#/definitions/io.k8s.api.authorization.v1.ResourceRule"
4073          },
4074          "type": "array"
4075        }
4076      },
4077      "required": [
4078        "resourceRules",
4079        "nonResourceRules",
4080        "incomplete"
4081      ],
4082      "type": "object"
4083    },
4084    "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview": {
4085      "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.",
4086      "properties": {
4087        "apiVersion": {
4088          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4089          "type": "string"
4090        },
4091        "kind": {
4092          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4093          "type": "string"
4094        },
4095        "metadata": {
4096          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4097        },
4098        "spec": {
4099          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec",
4100          "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."
4101        },
4102        "status": {
4103          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus",
4104          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
4105        }
4106      },
4107      "required": [
4108        "spec"
4109      ],
4110      "type": "object",
4111      "x-kubernetes-group-version-kind": [
4112        {
4113          "group": "authorization.k8s.io",
4114          "kind": "LocalSubjectAccessReview",
4115          "version": "v1beta1"
4116        }
4117      ]
4118    },
4119    "io.k8s.api.authorization.v1beta1.NonResourceAttributes": {
4120      "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
4121      "properties": {
4122        "path": {
4123          "description": "Path is the URL path of the request",
4124          "type": "string"
4125        },
4126        "verb": {
4127          "description": "Verb is the standard HTTP verb",
4128          "type": "string"
4129        }
4130      },
4131      "type": "object"
4132    },
4133    "io.k8s.api.authorization.v1beta1.NonResourceRule": {
4134      "description": "NonResourceRule holds information that describes a rule for the non-resource",
4135      "properties": {
4136        "nonResourceURLs": {
4137          "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.",
4138          "items": {
4139            "type": "string"
4140          },
4141          "type": "array"
4142        },
4143        "verbs": {
4144          "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  \"*\" means all.",
4145          "items": {
4146            "type": "string"
4147          },
4148          "type": "array"
4149        }
4150      },
4151      "required": [
4152        "verbs"
4153      ],
4154      "type": "object"
4155    },
4156    "io.k8s.api.authorization.v1beta1.ResourceAttributes": {
4157      "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
4158      "properties": {
4159        "group": {
4160          "description": "Group is the API Group of the Resource.  \"*\" means all.",
4161          "type": "string"
4162        },
4163        "name": {
4164          "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.",
4165          "type": "string"
4166        },
4167        "namespace": {
4168          "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",
4169          "type": "string"
4170        },
4171        "resource": {
4172          "description": "Resource is one of the existing resource types.  \"*\" means all.",
4173          "type": "string"
4174        },
4175        "subresource": {
4176          "description": "Subresource is one of the existing resource types.  \"\" means none.",
4177          "type": "string"
4178        },
4179        "verb": {
4180          "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
4181          "type": "string"
4182        },
4183        "version": {
4184          "description": "Version is the API Version of the Resource.  \"*\" means all.",
4185          "type": "string"
4186        }
4187      },
4188      "type": "object"
4189    },
4190    "io.k8s.api.authorization.v1beta1.ResourceRule": {
4191      "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.",
4192      "properties": {
4193        "apiGroups": {
4194          "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.",
4195          "items": {
4196            "type": "string"
4197          },
4198          "type": "array"
4199        },
4200        "resourceNames": {
4201          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
4202          "items": {
4203            "type": "string"
4204          },
4205          "type": "array"
4206        },
4207        "resources": {
4208          "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.",
4209          "items": {
4210            "type": "string"
4211          },
4212          "type": "array"
4213        },
4214        "verbs": {
4215          "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
4216          "items": {
4217            "type": "string"
4218          },
4219          "type": "array"
4220        }
4221      },
4222      "required": [
4223        "verbs"
4224      ],
4225      "type": "object"
4226    },
4227    "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview": {
4228      "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",
4229      "properties": {
4230        "apiVersion": {
4231          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4232          "type": "string"
4233        },
4234        "kind": {
4235          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4236          "type": "string"
4237        },
4238        "metadata": {
4239          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4240        },
4241        "spec": {
4242          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec",
4243          "description": "Spec holds information about the request being evaluated.  user and groups must be empty"
4244        },
4245        "status": {
4246          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus",
4247          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
4248        }
4249      },
4250      "required": [
4251        "spec"
4252      ],
4253      "type": "object",
4254      "x-kubernetes-group-version-kind": [
4255        {
4256          "group": "authorization.k8s.io",
4257          "kind": "SelfSubjectAccessReview",
4258          "version": "v1beta1"
4259        }
4260      ]
4261    },
4262    "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec": {
4263      "description": "SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
4264      "properties": {
4265        "nonResourceAttributes": {
4266          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes",
4267          "description": "NonResourceAttributes describes information for a non-resource access request"
4268        },
4269        "resourceAttributes": {
4270          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes",
4271          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
4272        }
4273      },
4274      "type": "object"
4275    },
4276    "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview": {
4277      "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.",
4278      "properties": {
4279        "apiVersion": {
4280          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4281          "type": "string"
4282        },
4283        "kind": {
4284          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4285          "type": "string"
4286        },
4287        "metadata": {
4288          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4289        },
4290        "spec": {
4291          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec",
4292          "description": "Spec holds information about the request being evaluated."
4293        },
4294        "status": {
4295          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus",
4296          "description": "Status is filled in by the server and indicates the set of actions a user can perform."
4297        }
4298      },
4299      "required": [
4300        "spec"
4301      ],
4302      "type": "object",
4303      "x-kubernetes-group-version-kind": [
4304        {
4305          "group": "authorization.k8s.io",
4306          "kind": "SelfSubjectRulesReview",
4307          "version": "v1beta1"
4308        }
4309      ]
4310    },
4311    "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReviewSpec": {
4312      "properties": {
4313        "namespace": {
4314          "description": "Namespace to evaluate rules for. Required.",
4315          "type": "string"
4316        }
4317      },
4318      "type": "object"
4319    },
4320    "io.k8s.api.authorization.v1beta1.SubjectAccessReview": {
4321      "description": "SubjectAccessReview checks whether or not a user or group can perform an action.",
4322      "properties": {
4323        "apiVersion": {
4324          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4325          "type": "string"
4326        },
4327        "kind": {
4328          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4329          "type": "string"
4330        },
4331        "metadata": {
4332          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
4333        },
4334        "spec": {
4335          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec",
4336          "description": "Spec holds information about the request being evaluated"
4337        },
4338        "status": {
4339          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus",
4340          "description": "Status is filled in by the server and indicates whether the request is allowed or not"
4341        }
4342      },
4343      "required": [
4344        "spec"
4345      ],
4346      "type": "object",
4347      "x-kubernetes-group-version-kind": [
4348        {
4349          "group": "authorization.k8s.io",
4350          "kind": "SubjectAccessReview",
4351          "version": "v1beta1"
4352        }
4353      ]
4354    },
4355    "io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec": {
4356      "description": "SubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
4357      "properties": {
4358        "extra": {
4359          "additionalProperties": {
4360            "items": {
4361              "type": "string"
4362            },
4363            "type": "array"
4364          },
4365          "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer it needs a reflection here.",
4366          "type": "object"
4367        },
4368        "group": {
4369          "description": "Groups is the groups you're testing for.",
4370          "items": {
4371            "type": "string"
4372          },
4373          "type": "array"
4374        },
4375        "nonResourceAttributes": {
4376          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceAttributes",
4377          "description": "NonResourceAttributes describes information for a non-resource access request"
4378        },
4379        "resourceAttributes": {
4380          "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceAttributes",
4381          "description": "ResourceAuthorizationAttributes describes information for a resource access request"
4382        },
4383        "uid": {
4384          "description": "UID information about the requesting user.",
4385          "type": "string"
4386        },
4387        "user": {
4388          "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups",
4389          "type": "string"
4390        }
4391      },
4392      "type": "object"
4393    },
4394    "io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus": {
4395      "description": "SubjectAccessReviewStatus",
4396      "properties": {
4397        "allowed": {
4398          "description": "Allowed is required. True if the action would be allowed, false otherwise.",
4399          "type": "boolean"
4400        },
4401        "denied": {
4402          "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.",
4403          "type": "boolean"
4404        },
4405        "evaluationError": {
4406          "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.",
4407          "type": "string"
4408        },
4409        "reason": {
4410          "description": "Reason is optional.  It indicates why a request was allowed or denied.",
4411          "type": "string"
4412        }
4413      },
4414      "required": [
4415        "allowed"
4416      ],
4417      "type": "object"
4418    },
4419    "io.k8s.api.authorization.v1beta1.SubjectRulesReviewStatus": {
4420      "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.",
4421      "properties": {
4422        "evaluationError": {
4423          "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.",
4424          "type": "string"
4425        },
4426        "incomplete": {
4427          "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.",
4428          "type": "boolean"
4429        },
4430        "nonResourceRules": {
4431          "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.",
4432          "items": {
4433            "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.NonResourceRule"
4434          },
4435          "type": "array"
4436        },
4437        "resourceRules": {
4438          "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.",
4439          "items": {
4440            "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.ResourceRule"
4441          },
4442          "type": "array"
4443        }
4444      },
4445      "required": [
4446        "resourceRules",
4447        "nonResourceRules",
4448        "incomplete"
4449      ],
4450      "type": "object"
4451    },
4452    "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": {
4453      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
4454      "properties": {
4455        "apiVersion": {
4456          "description": "API version of the referent",
4457          "type": "string"
4458        },
4459        "kind": {
4460          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"",
4461          "type": "string"
4462        },
4463        "name": {
4464          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
4465          "type": "string"
4466        }
4467      },
4468      "required": [
4469        "kind",
4470        "name"
4471      ],
4472      "type": "object"
4473    },
4474    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": {
4475      "description": "configuration of a horizontal pod autoscaler.",
4476      "properties": {
4477        "apiVersion": {
4478          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4479          "type": "string"
4480        },
4481        "kind": {
4482          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4483          "type": "string"
4484        },
4485        "metadata": {
4486          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4487          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
4488        },
4489        "spec": {
4490          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec",
4491          "description": "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status."
4492        },
4493        "status": {
4494          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus",
4495          "description": "current information about the autoscaler."
4496        }
4497      },
4498      "type": "object",
4499      "x-kubernetes-group-version-kind": [
4500        {
4501          "group": "autoscaling",
4502          "kind": "HorizontalPodAutoscaler",
4503          "version": "v1"
4504        }
4505      ]
4506    },
4507    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": {
4508      "description": "list of horizontal pod autoscaler objects.",
4509      "properties": {
4510        "apiVersion": {
4511          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4512          "type": "string"
4513        },
4514        "items": {
4515          "description": "list of horizontal pod autoscaler objects.",
4516          "items": {
4517            "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
4518          },
4519          "type": "array"
4520        },
4521        "kind": {
4522          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4523          "type": "string"
4524        },
4525        "metadata": {
4526          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4527          "description": "Standard list metadata."
4528        }
4529      },
4530      "required": [
4531        "items"
4532      ],
4533      "type": "object",
4534      "x-kubernetes-group-version-kind": [
4535        {
4536          "group": "autoscaling",
4537          "kind": "HorizontalPodAutoscalerList",
4538          "version": "v1"
4539        }
4540      ]
4541    },
4542    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": {
4543      "description": "specification of a horizontal pod autoscaler.",
4544      "properties": {
4545        "maxReplicas": {
4546          "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
4547          "format": "int32",
4548          "type": "integer"
4549        },
4550        "minReplicas": {
4551          "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.",
4552          "format": "int32",
4553          "type": "integer"
4554        },
4555        "scaleTargetRef": {
4556          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.CrossVersionObjectReference",
4557          "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."
4558        },
4559        "targetCPUUtilizationPercentage": {
4560          "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.",
4561          "format": "int32",
4562          "type": "integer"
4563        }
4564      },
4565      "required": [
4566        "scaleTargetRef",
4567        "maxReplicas"
4568      ],
4569      "type": "object"
4570    },
4571    "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": {
4572      "description": "current status of a horizontal pod autoscaler",
4573      "properties": {
4574        "currentCPUUtilizationPercentage": {
4575          "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.",
4576          "format": "int32",
4577          "type": "integer"
4578        },
4579        "currentReplicas": {
4580          "description": "current number of replicas of pods managed by this autoscaler.",
4581          "format": "int32",
4582          "type": "integer"
4583        },
4584        "desiredReplicas": {
4585          "description": "desired number of replicas of pods managed by this autoscaler.",
4586          "format": "int32",
4587          "type": "integer"
4588        },
4589        "lastScaleTime": {
4590          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4591          "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed."
4592        },
4593        "observedGeneration": {
4594          "description": "most recent generation observed by this autoscaler.",
4595          "format": "int64",
4596          "type": "integer"
4597        }
4598      },
4599      "required": [
4600        "currentReplicas",
4601        "desiredReplicas"
4602      ],
4603      "type": "object"
4604    },
4605    "io.k8s.api.autoscaling.v1.Scale": {
4606      "description": "Scale represents a scaling request for a resource.",
4607      "properties": {
4608        "apiVersion": {
4609          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4610          "type": "string"
4611        },
4612        "kind": {
4613          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4614          "type": "string"
4615        },
4616        "metadata": {
4617          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4618          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata."
4619        },
4620        "spec": {
4621          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleSpec",
4622          "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status."
4623        },
4624        "status": {
4625          "$ref": "#/definitions/io.k8s.api.autoscaling.v1.ScaleStatus",
4626          "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only."
4627        }
4628      },
4629      "type": "object",
4630      "x-kubernetes-group-version-kind": [
4631        {
4632          "group": "autoscaling",
4633          "kind": "Scale",
4634          "version": "v1"
4635        }
4636      ]
4637    },
4638    "io.k8s.api.autoscaling.v1.ScaleSpec": {
4639      "description": "ScaleSpec describes the attributes of a scale subresource.",
4640      "properties": {
4641        "replicas": {
4642          "description": "desired number of instances for the scaled object.",
4643          "format": "int32",
4644          "type": "integer"
4645        }
4646      },
4647      "type": "object"
4648    },
4649    "io.k8s.api.autoscaling.v1.ScaleStatus": {
4650      "description": "ScaleStatus represents the current status of a scale subresource.",
4651      "properties": {
4652        "replicas": {
4653          "description": "actual number of observed instances of the scaled object.",
4654          "format": "int32",
4655          "type": "integer"
4656        },
4657        "selector": {
4658          "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",
4659          "type": "string"
4660        }
4661      },
4662      "required": [
4663        "replicas"
4664      ],
4665      "type": "object"
4666    },
4667    "io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference": {
4668      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
4669      "properties": {
4670        "apiVersion": {
4671          "description": "API version of the referent",
4672          "type": "string"
4673        },
4674        "kind": {
4675          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"",
4676          "type": "string"
4677        },
4678        "name": {
4679          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
4680          "type": "string"
4681        }
4682      },
4683      "required": [
4684        "kind",
4685        "name"
4686      ],
4687      "type": "object"
4688    },
4689    "io.k8s.api.autoscaling.v2beta1.ExternalMetricSource": {
4690      "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.",
4691      "properties": {
4692        "metricName": {
4693          "description": "metricName is the name of the metric in question.",
4694          "type": "string"
4695        },
4696        "metricSelector": {
4697          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
4698          "description": "metricSelector is used to identify a specific time series within a given metric."
4699        },
4700        "targetAverageValue": {
4701          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4702          "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue."
4703        },
4704        "targetValue": {
4705          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4706          "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue."
4707        }
4708      },
4709      "required": [
4710        "metricName"
4711      ],
4712      "type": "object"
4713    },
4714    "io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus": {
4715      "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
4716      "properties": {
4717        "currentAverageValue": {
4718          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4719          "description": "currentAverageValue is the current value of metric averaged over autoscaled pods."
4720        },
4721        "currentValue": {
4722          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4723          "description": "currentValue is the current value of the metric (as a quantity)"
4724        },
4725        "metricName": {
4726          "description": "metricName is the name of a metric used for autoscaling in metric system.",
4727          "type": "string"
4728        },
4729        "metricSelector": {
4730          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
4731          "description": "metricSelector is used to identify a specific time series within a given metric."
4732        }
4733      },
4734      "required": [
4735        "metricName",
4736        "currentValue"
4737      ],
4738      "type": "object"
4739    },
4740    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler": {
4741      "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.",
4742      "properties": {
4743        "apiVersion": {
4744          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4745          "type": "string"
4746        },
4747        "kind": {
4748          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4749          "type": "string"
4750        },
4751        "metadata": {
4752          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
4753          "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
4754        },
4755        "spec": {
4756          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec",
4757          "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status."
4758        },
4759        "status": {
4760          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus",
4761          "description": "status is the current information about the autoscaler."
4762        }
4763      },
4764      "type": "object",
4765      "x-kubernetes-group-version-kind": [
4766        {
4767          "group": "autoscaling",
4768          "kind": "HorizontalPodAutoscaler",
4769          "version": "v2beta1"
4770        }
4771      ]
4772    },
4773    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition": {
4774      "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
4775      "properties": {
4776        "lastTransitionTime": {
4777          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4778          "description": "lastTransitionTime is the last time the condition transitioned from one status to another"
4779        },
4780        "message": {
4781          "description": "message is a human-readable explanation containing details about the transition",
4782          "type": "string"
4783        },
4784        "reason": {
4785          "description": "reason is the reason for the condition's last transition.",
4786          "type": "string"
4787        },
4788        "status": {
4789          "description": "status is the status of the condition (True, False, Unknown)",
4790          "type": "string"
4791        },
4792        "type": {
4793          "description": "type describes the current condition",
4794          "type": "string"
4795        }
4796      },
4797      "required": [
4798        "type",
4799        "status"
4800      ],
4801      "type": "object"
4802    },
4803    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList": {
4804      "description": "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.",
4805      "properties": {
4806        "apiVersion": {
4807          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
4808          "type": "string"
4809        },
4810        "items": {
4811          "description": "items is the list of horizontal pod autoscaler objects.",
4812          "items": {
4813            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
4814          },
4815          "type": "array"
4816        },
4817        "kind": {
4818          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
4819          "type": "string"
4820        },
4821        "metadata": {
4822          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
4823          "description": "metadata is the standard list metadata."
4824        }
4825      },
4826      "required": [
4827        "items"
4828      ],
4829      "type": "object",
4830      "x-kubernetes-group-version-kind": [
4831        {
4832          "group": "autoscaling",
4833          "kind": "HorizontalPodAutoscalerList",
4834          "version": "v2beta1"
4835        }
4836      ]
4837    },
4838    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec": {
4839      "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
4840      "properties": {
4841        "maxReplicas": {
4842          "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
4843          "format": "int32",
4844          "type": "integer"
4845        },
4846        "metrics": {
4847          "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.",
4848          "items": {
4849            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricSpec"
4850          },
4851          "type": "array"
4852        },
4853        "minReplicas": {
4854          "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.",
4855          "format": "int32",
4856          "type": "integer"
4857        },
4858        "scaleTargetRef": {
4859          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
4860          "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."
4861        }
4862      },
4863      "required": [
4864        "scaleTargetRef",
4865        "maxReplicas"
4866      ],
4867      "type": "object"
4868    },
4869    "io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerStatus": {
4870      "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
4871      "properties": {
4872        "conditions": {
4873          "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
4874          "items": {
4875            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerCondition"
4876          },
4877          "type": "array"
4878        },
4879        "currentMetrics": {
4880          "description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
4881          "items": {
4882            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.MetricStatus"
4883          },
4884          "type": "array"
4885        },
4886        "currentReplicas": {
4887          "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
4888          "format": "int32",
4889          "type": "integer"
4890        },
4891        "desiredReplicas": {
4892          "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
4893          "format": "int32",
4894          "type": "integer"
4895        },
4896        "lastScaleTime": {
4897          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
4898          "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."
4899        },
4900        "observedGeneration": {
4901          "description": "observedGeneration is the most recent generation observed by this autoscaler.",
4902          "format": "int64",
4903          "type": "integer"
4904        }
4905      },
4906      "required": [
4907        "currentReplicas",
4908        "desiredReplicas",
4909        "conditions"
4910      ],
4911      "type": "object"
4912    },
4913    "io.k8s.api.autoscaling.v2beta1.MetricSpec": {
4914      "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
4915      "properties": {
4916        "external": {
4917          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricSource",
4918          "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)."
4919        },
4920        "object": {
4921          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricSource",
4922          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
4923        },
4924        "pods": {
4925          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricSource",
4926          "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."
4927        },
4928        "resource": {
4929          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricSource",
4930          "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."
4931        },
4932        "type": {
4933          "description": "type is the type of metric source.  It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
4934          "type": "string"
4935        }
4936      },
4937      "required": [
4938        "type"
4939      ],
4940      "type": "object"
4941    },
4942    "io.k8s.api.autoscaling.v2beta1.MetricStatus": {
4943      "description": "MetricStatus describes the last-read state of a single metric.",
4944      "properties": {
4945        "external": {
4946          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ExternalMetricStatus",
4947          "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)."
4948        },
4949        "object": {
4950          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus",
4951          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
4952        },
4953        "pods": {
4954          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.PodsMetricStatus",
4955          "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."
4956        },
4957        "resource": {
4958          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus",
4959          "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."
4960        },
4961        "type": {
4962          "description": "type is the type of metric source.  It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.",
4963          "type": "string"
4964        }
4965      },
4966      "required": [
4967        "type"
4968      ],
4969      "type": "object"
4970    },
4971    "io.k8s.api.autoscaling.v2beta1.ObjectMetricSource": {
4972      "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
4973      "properties": {
4974        "averageValue": {
4975          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4976          "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
4977        },
4978        "metricName": {
4979          "description": "metricName is the name of the metric in question.",
4980          "type": "string"
4981        },
4982        "selector": {
4983          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
4984          "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."
4985        },
4986        "target": {
4987          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
4988          "description": "target is the described Kubernetes object."
4989        },
4990        "targetValue": {
4991          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
4992          "description": "targetValue is the target value of the metric (as a quantity)."
4993        }
4994      },
4995      "required": [
4996        "target",
4997        "metricName",
4998        "targetValue"
4999      ],
5000      "type": "object"
5001    },
5002    "io.k8s.api.autoscaling.v2beta1.ObjectMetricStatus": {
5003      "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
5004      "properties": {
5005        "averageValue": {
5006          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5007          "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
5008        },
5009        "currentValue": {
5010          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5011          "description": "currentValue is the current value of the metric (as a quantity)."
5012        },
5013        "metricName": {
5014          "description": "metricName is the name of the metric in question.",
5015          "type": "string"
5016        },
5017        "selector": {
5018          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
5019          "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."
5020        },
5021        "target": {
5022          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference",
5023          "description": "target is the described Kubernetes object."
5024        }
5025      },
5026      "required": [
5027        "target",
5028        "metricName",
5029        "currentValue"
5030      ],
5031      "type": "object"
5032    },
5033    "io.k8s.api.autoscaling.v2beta1.PodsMetricSource": {
5034      "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.",
5035      "properties": {
5036        "metricName": {
5037          "description": "metricName is the name of the metric in question",
5038          "type": "string"
5039        },
5040        "selector": {
5041          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
5042          "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."
5043        },
5044        "targetAverageValue": {
5045          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5046          "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
5047        }
5048      },
5049      "required": [
5050        "metricName",
5051        "targetAverageValue"
5052      ],
5053      "type": "object"
5054    },
5055    "io.k8s.api.autoscaling.v2beta1.PodsMetricStatus": {
5056      "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
5057      "properties": {
5058        "currentAverageValue": {
5059          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5060          "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
5061        },
5062        "metricName": {
5063          "description": "metricName is the name of the metric in question",
5064          "type": "string"
5065        },
5066        "selector": {
5067          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
5068          "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."
5069        }
5070      },
5071      "required": [
5072        "metricName",
5073        "currentAverageValue"
5074      ],
5075      "type": "object"
5076    },
5077    "io.k8s.api.autoscaling.v2beta1.ResourceMetricSource": {
5078      "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.",
5079      "properties": {
5080        "name": {
5081          "description": "name is the name of the resource in question.",
5082          "type": "string"
5083        },
5084        "targetAverageUtilization": {
5085          "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.",
5086          "format": "int32",
5087          "type": "integer"
5088        },
5089        "targetAverageValue": {
5090          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5091          "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."
5092        }
5093      },
5094      "required": [
5095        "name"
5096      ],
5097      "type": "object"
5098    },
5099    "io.k8s.api.autoscaling.v2beta1.ResourceMetricStatus": {
5100      "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.",
5101      "properties": {
5102        "currentAverageUtilization": {
5103          "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.",
5104          "format": "int32",
5105          "type": "integer"
5106        },
5107        "currentAverageValue": {
5108          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5109          "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."
5110        },
5111        "name": {
5112          "description": "name is the name of the resource in question.",
5113          "type": "string"
5114        }
5115      },
5116      "required": [
5117        "name",
5118        "currentAverageValue"
5119      ],
5120      "type": "object"
5121    },
5122    "io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference": {
5123      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
5124      "properties": {
5125        "apiVersion": {
5126          "description": "API version of the referent",
5127          "type": "string"
5128        },
5129        "kind": {
5130          "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"",
5131          "type": "string"
5132        },
5133        "name": {
5134          "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
5135          "type": "string"
5136        }
5137      },
5138      "required": [
5139        "kind",
5140        "name"
5141      ],
5142      "type": "object"
5143    },
5144    "io.k8s.api.autoscaling.v2beta2.ExternalMetricSource": {
5145      "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).",
5146      "properties": {
5147        "metric": {
5148          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
5149          "description": "metric identifies the target metric by name and selector"
5150        },
5151        "target": {
5152          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
5153          "description": "target specifies the target value for the given metric"
5154        }
5155      },
5156      "required": [
5157        "metric",
5158        "target"
5159      ],
5160      "type": "object"
5161    },
5162    "io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus": {
5163      "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
5164      "properties": {
5165        "current": {
5166          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
5167          "description": "current contains the current value for the given metric"
5168        },
5169        "metric": {
5170          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
5171          "description": "metric identifies the target metric by name and selector"
5172        }
5173      },
5174      "required": [
5175        "metric",
5176        "current"
5177      ],
5178      "type": "object"
5179    },
5180    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler": {
5181      "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.",
5182      "properties": {
5183        "apiVersion": {
5184          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5185          "type": "string"
5186        },
5187        "kind": {
5188          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5189          "type": "string"
5190        },
5191        "metadata": {
5192          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5193          "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5194        },
5195        "spec": {
5196          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec",
5197          "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status."
5198        },
5199        "status": {
5200          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus",
5201          "description": "status is the current information about the autoscaler."
5202        }
5203      },
5204      "type": "object",
5205      "x-kubernetes-group-version-kind": [
5206        {
5207          "group": "autoscaling",
5208          "kind": "HorizontalPodAutoscaler",
5209          "version": "v2beta2"
5210        }
5211      ]
5212    },
5213    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition": {
5214      "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
5215      "properties": {
5216        "lastTransitionTime": {
5217          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5218          "description": "lastTransitionTime is the last time the condition transitioned from one status to another"
5219        },
5220        "message": {
5221          "description": "message is a human-readable explanation containing details about the transition",
5222          "type": "string"
5223        },
5224        "reason": {
5225          "description": "reason is the reason for the condition's last transition.",
5226          "type": "string"
5227        },
5228        "status": {
5229          "description": "status is the status of the condition (True, False, Unknown)",
5230          "type": "string"
5231        },
5232        "type": {
5233          "description": "type describes the current condition",
5234          "type": "string"
5235        }
5236      },
5237      "required": [
5238        "type",
5239        "status"
5240      ],
5241      "type": "object"
5242    },
5243    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList": {
5244      "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.",
5245      "properties": {
5246        "apiVersion": {
5247          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5248          "type": "string"
5249        },
5250        "items": {
5251          "description": "items is the list of horizontal pod autoscaler objects.",
5252          "items": {
5253            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
5254          },
5255          "type": "array"
5256        },
5257        "kind": {
5258          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5259          "type": "string"
5260        },
5261        "metadata": {
5262          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5263          "description": "metadata is the standard list metadata."
5264        }
5265      },
5266      "required": [
5267        "items"
5268      ],
5269      "type": "object",
5270      "x-kubernetes-group-version-kind": [
5271        {
5272          "group": "autoscaling",
5273          "kind": "HorizontalPodAutoscalerList",
5274          "version": "v2beta2"
5275        }
5276      ]
5277    },
5278    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec": {
5279      "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
5280      "properties": {
5281        "maxReplicas": {
5282          "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
5283          "format": "int32",
5284          "type": "integer"
5285        },
5286        "metrics": {
5287          "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.",
5288          "items": {
5289            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricSpec"
5290          },
5291          "type": "array"
5292        },
5293        "minReplicas": {
5294          "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.",
5295          "format": "int32",
5296          "type": "integer"
5297        },
5298        "scaleTargetRef": {
5299          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference",
5300          "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."
5301        }
5302      },
5303      "required": [
5304        "scaleTargetRef",
5305        "maxReplicas"
5306      ],
5307      "type": "object"
5308    },
5309    "io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerStatus": {
5310      "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
5311      "properties": {
5312        "conditions": {
5313          "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
5314          "items": {
5315            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerCondition"
5316          },
5317          "type": "array"
5318        },
5319        "currentMetrics": {
5320          "description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
5321          "items": {
5322            "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricStatus"
5323          },
5324          "type": "array"
5325        },
5326        "currentReplicas": {
5327          "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
5328          "format": "int32",
5329          "type": "integer"
5330        },
5331        "desiredReplicas": {
5332          "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
5333          "format": "int32",
5334          "type": "integer"
5335        },
5336        "lastScaleTime": {
5337          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5338          "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."
5339        },
5340        "observedGeneration": {
5341          "description": "observedGeneration is the most recent generation observed by this autoscaler.",
5342          "format": "int64",
5343          "type": "integer"
5344        }
5345      },
5346      "required": [
5347        "currentReplicas",
5348        "desiredReplicas",
5349        "conditions"
5350      ],
5351      "type": "object"
5352    },
5353    "io.k8s.api.autoscaling.v2beta2.MetricIdentifier": {
5354      "description": "MetricIdentifier defines the name and optionally selector for a metric",
5355      "properties": {
5356        "name": {
5357          "description": "name is the name of the given metric",
5358          "type": "string"
5359        },
5360        "selector": {
5361          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
5362          "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."
5363        }
5364      },
5365      "required": [
5366        "name"
5367      ],
5368      "type": "object"
5369    },
5370    "io.k8s.api.autoscaling.v2beta2.MetricSpec": {
5371      "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
5372      "properties": {
5373        "external": {
5374          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricSource",
5375          "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)."
5376        },
5377        "object": {
5378          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricSource",
5379          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
5380        },
5381        "pods": {
5382          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricSource",
5383          "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."
5384        },
5385        "resource": {
5386          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricSource",
5387          "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."
5388        },
5389        "type": {
5390          "description": "type is the type of metric source.  It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
5391          "type": "string"
5392        }
5393      },
5394      "required": [
5395        "type"
5396      ],
5397      "type": "object"
5398    },
5399    "io.k8s.api.autoscaling.v2beta2.MetricStatus": {
5400      "description": "MetricStatus describes the last-read state of a single metric.",
5401      "properties": {
5402        "external": {
5403          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ExternalMetricStatus",
5404          "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)."
5405        },
5406        "object": {
5407          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus",
5408          "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
5409        },
5410        "pods": {
5411          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.PodsMetricStatus",
5412          "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."
5413        },
5414        "resource": {
5415          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus",
5416          "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."
5417        },
5418        "type": {
5419          "description": "type is the type of metric source.  It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.",
5420          "type": "string"
5421        }
5422      },
5423      "required": [
5424        "type"
5425      ],
5426      "type": "object"
5427    },
5428    "io.k8s.api.autoscaling.v2beta2.MetricTarget": {
5429      "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
5430      "properties": {
5431        "averageUtilization": {
5432          "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",
5433          "format": "int32",
5434          "type": "integer"
5435        },
5436        "averageValue": {
5437          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5438          "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
5439        },
5440        "type": {
5441          "description": "type represents whether the metric type is Utilization, Value, or AverageValue",
5442          "type": "string"
5443        },
5444        "value": {
5445          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5446          "description": "value is the target value of the metric (as a quantity)."
5447        }
5448      },
5449      "required": [
5450        "type"
5451      ],
5452      "type": "object"
5453    },
5454    "io.k8s.api.autoscaling.v2beta2.MetricValueStatus": {
5455      "description": "MetricValueStatus holds the current value for a metric",
5456      "properties": {
5457        "averageUtilization": {
5458          "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.",
5459          "format": "int32",
5460          "type": "integer"
5461        },
5462        "averageValue": {
5463          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5464          "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
5465        },
5466        "value": {
5467          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
5468          "description": "value is the current value of the metric (as a quantity)."
5469        }
5470      },
5471      "type": "object"
5472    },
5473    "io.k8s.api.autoscaling.v2beta2.ObjectMetricSource": {
5474      "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
5475      "properties": {
5476        "describedObject": {
5477          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference"
5478        },
5479        "metric": {
5480          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
5481          "description": "metric identifies the target metric by name and selector"
5482        },
5483        "target": {
5484          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
5485          "description": "target specifies the target value for the given metric"
5486        }
5487      },
5488      "required": [
5489        "describedObject",
5490        "target",
5491        "metric"
5492      ],
5493      "type": "object"
5494    },
5495    "io.k8s.api.autoscaling.v2beta2.ObjectMetricStatus": {
5496      "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
5497      "properties": {
5498        "current": {
5499          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
5500          "description": "current contains the current value for the given metric"
5501        },
5502        "describedObject": {
5503          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.CrossVersionObjectReference"
5504        },
5505        "metric": {
5506          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
5507          "description": "metric identifies the target metric by name and selector"
5508        }
5509      },
5510      "required": [
5511        "metric",
5512        "current",
5513        "describedObject"
5514      ],
5515      "type": "object"
5516    },
5517    "io.k8s.api.autoscaling.v2beta2.PodsMetricSource": {
5518      "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.",
5519      "properties": {
5520        "metric": {
5521          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
5522          "description": "metric identifies the target metric by name and selector"
5523        },
5524        "target": {
5525          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
5526          "description": "target specifies the target value for the given metric"
5527        }
5528      },
5529      "required": [
5530        "metric",
5531        "target"
5532      ],
5533      "type": "object"
5534    },
5535    "io.k8s.api.autoscaling.v2beta2.PodsMetricStatus": {
5536      "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
5537      "properties": {
5538        "current": {
5539          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
5540          "description": "current contains the current value for the given metric"
5541        },
5542        "metric": {
5543          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricIdentifier",
5544          "description": "metric identifies the target metric by name and selector"
5545        }
5546      },
5547      "required": [
5548        "metric",
5549        "current"
5550      ],
5551      "type": "object"
5552    },
5553    "io.k8s.api.autoscaling.v2beta2.ResourceMetricSource": {
5554      "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.",
5555      "properties": {
5556        "name": {
5557          "description": "name is the name of the resource in question.",
5558          "type": "string"
5559        },
5560        "target": {
5561          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricTarget",
5562          "description": "target specifies the target value for the given metric"
5563        }
5564      },
5565      "required": [
5566        "name",
5567        "target"
5568      ],
5569      "type": "object"
5570    },
5571    "io.k8s.api.autoscaling.v2beta2.ResourceMetricStatus": {
5572      "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.",
5573      "properties": {
5574        "current": {
5575          "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.MetricValueStatus",
5576          "description": "current contains the current value for the given metric"
5577        },
5578        "name": {
5579          "description": "Name is the name of the resource in question.",
5580          "type": "string"
5581        }
5582      },
5583      "required": [
5584        "name",
5585        "current"
5586      ],
5587      "type": "object"
5588    },
5589    "io.k8s.api.batch.v1.Job": {
5590      "description": "Job represents the configuration of a single job.",
5591      "properties": {
5592        "apiVersion": {
5593          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5594          "type": "string"
5595        },
5596        "kind": {
5597          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5598          "type": "string"
5599        },
5600        "metadata": {
5601          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5602          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5603        },
5604        "spec": {
5605          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
5606          "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5607        },
5608        "status": {
5609          "$ref": "#/definitions/io.k8s.api.batch.v1.JobStatus",
5610          "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5611        }
5612      },
5613      "type": "object",
5614      "x-kubernetes-group-version-kind": [
5615        {
5616          "group": "batch",
5617          "kind": "Job",
5618          "version": "v1"
5619        }
5620      ]
5621    },
5622    "io.k8s.api.batch.v1.JobCondition": {
5623      "description": "JobCondition describes current state of a job.",
5624      "properties": {
5625        "lastProbeTime": {
5626          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5627          "description": "Last time the condition was checked."
5628        },
5629        "lastTransitionTime": {
5630          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5631          "description": "Last time the condition transit from one status to another."
5632        },
5633        "message": {
5634          "description": "Human readable message indicating details about last transition.",
5635          "type": "string"
5636        },
5637        "reason": {
5638          "description": "(brief) reason for the condition's last transition.",
5639          "type": "string"
5640        },
5641        "status": {
5642          "description": "Status of the condition, one of True, False, Unknown.",
5643          "type": "string"
5644        },
5645        "type": {
5646          "description": "Type of job condition, Complete or Failed.",
5647          "type": "string"
5648        }
5649      },
5650      "required": [
5651        "type",
5652        "status"
5653      ],
5654      "type": "object"
5655    },
5656    "io.k8s.api.batch.v1.JobList": {
5657      "description": "JobList is a collection of jobs.",
5658      "properties": {
5659        "apiVersion": {
5660          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5661          "type": "string"
5662        },
5663        "items": {
5664          "description": "items is the list of Jobs.",
5665          "items": {
5666            "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
5667          },
5668          "type": "array"
5669        },
5670        "kind": {
5671          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5672          "type": "string"
5673        },
5674        "metadata": {
5675          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5676          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5677        }
5678      },
5679      "required": [
5680        "items"
5681      ],
5682      "type": "object",
5683      "x-kubernetes-group-version-kind": [
5684        {
5685          "group": "batch",
5686          "kind": "JobList",
5687          "version": "v1"
5688        }
5689      ]
5690    },
5691    "io.k8s.api.batch.v1.JobSpec": {
5692      "description": "JobSpec describes how the job execution will look like.",
5693      "properties": {
5694        "activeDeadlineSeconds": {
5695          "description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer",
5696          "format": "int64",
5697          "type": "integer"
5698        },
5699        "backoffLimit": {
5700          "description": "Specifies the number of retries before marking this job failed. Defaults to 6",
5701          "format": "int32",
5702          "type": "integer"
5703        },
5704        "completions": {
5705          "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/",
5706          "format": "int32",
5707          "type": "integer"
5708        },
5709        "manualSelector": {
5710          "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",
5711          "type": "boolean"
5712        },
5713        "parallelism": {
5714          "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/",
5715          "format": "int32",
5716          "type": "integer"
5717        },
5718        "selector": {
5719          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
5720          "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"
5721        },
5722        "template": {
5723          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
5724          "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/"
5725        },
5726        "ttlSecondsAfterFinished": {
5727          "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.",
5728          "format": "int32",
5729          "type": "integer"
5730        }
5731      },
5732      "required": [
5733        "template"
5734      ],
5735      "type": "object"
5736    },
5737    "io.k8s.api.batch.v1.JobStatus": {
5738      "description": "JobStatus represents the current state of a Job.",
5739      "properties": {
5740        "active": {
5741          "description": "The number of actively running pods.",
5742          "format": "int32",
5743          "type": "integer"
5744        },
5745        "completionTime": {
5746          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5747          "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."
5748        },
5749        "conditions": {
5750          "description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
5751          "items": {
5752            "$ref": "#/definitions/io.k8s.api.batch.v1.JobCondition"
5753          },
5754          "type": "array",
5755          "x-kubernetes-patch-merge-key": "type",
5756          "x-kubernetes-patch-strategy": "merge"
5757        },
5758        "failed": {
5759          "description": "The number of pods which reached phase Failed.",
5760          "format": "int32",
5761          "type": "integer"
5762        },
5763        "startTime": {
5764          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5765          "description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC."
5766        },
5767        "succeeded": {
5768          "description": "The number of pods which reached phase Succeeded.",
5769          "format": "int32",
5770          "type": "integer"
5771        }
5772      },
5773      "type": "object"
5774    },
5775    "io.k8s.api.batch.v1beta1.CronJob": {
5776      "description": "CronJob represents the configuration of a single cron job.",
5777      "properties": {
5778        "apiVersion": {
5779          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5780          "type": "string"
5781        },
5782        "kind": {
5783          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5784          "type": "string"
5785        },
5786        "metadata": {
5787          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5788          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5789        },
5790        "spec": {
5791          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobSpec",
5792          "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5793        },
5794        "status": {
5795          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobStatus",
5796          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5797        }
5798      },
5799      "type": "object",
5800      "x-kubernetes-group-version-kind": [
5801        {
5802          "group": "batch",
5803          "kind": "CronJob",
5804          "version": "v1beta1"
5805        }
5806      ]
5807    },
5808    "io.k8s.api.batch.v1beta1.CronJobList": {
5809      "description": "CronJobList is a collection of cron jobs.",
5810      "properties": {
5811        "apiVersion": {
5812          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5813          "type": "string"
5814        },
5815        "items": {
5816          "description": "items is the list of CronJobs.",
5817          "items": {
5818            "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
5819          },
5820          "type": "array"
5821        },
5822        "kind": {
5823          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5824          "type": "string"
5825        },
5826        "metadata": {
5827          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5828          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5829        }
5830      },
5831      "required": [
5832        "items"
5833      ],
5834      "type": "object",
5835      "x-kubernetes-group-version-kind": [
5836        {
5837          "group": "batch",
5838          "kind": "CronJobList",
5839          "version": "v1beta1"
5840        }
5841      ]
5842    },
5843    "io.k8s.api.batch.v1beta1.CronJobSpec": {
5844      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
5845      "properties": {
5846        "concurrencyPolicy": {
5847          "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",
5848          "type": "string"
5849        },
5850        "failedJobsHistoryLimit": {
5851          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
5852          "format": "int32",
5853          "type": "integer"
5854        },
5855        "jobTemplate": {
5856          "$ref": "#/definitions/io.k8s.api.batch.v1beta1.JobTemplateSpec",
5857          "description": "Specifies the job that will be created when executing a CronJob."
5858        },
5859        "schedule": {
5860          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
5861          "type": "string"
5862        },
5863        "startingDeadlineSeconds": {
5864          "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.",
5865          "format": "int64",
5866          "type": "integer"
5867        },
5868        "successfulJobsHistoryLimit": {
5869          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.",
5870          "format": "int32",
5871          "type": "integer"
5872        },
5873        "suspend": {
5874          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
5875          "type": "boolean"
5876        }
5877      },
5878      "required": [
5879        "schedule",
5880        "jobTemplate"
5881      ],
5882      "type": "object"
5883    },
5884    "io.k8s.api.batch.v1beta1.CronJobStatus": {
5885      "description": "CronJobStatus represents the current state of a cron job.",
5886      "properties": {
5887        "active": {
5888          "description": "A list of pointers to currently running jobs.",
5889          "items": {
5890            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
5891          },
5892          "type": "array"
5893        },
5894        "lastScheduleTime": {
5895          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
5896          "description": "Information when was the last time the job was successfully scheduled."
5897        }
5898      },
5899      "type": "object"
5900    },
5901    "io.k8s.api.batch.v1beta1.JobTemplateSpec": {
5902      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
5903      "properties": {
5904        "metadata": {
5905          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5906          "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5907        },
5908        "spec": {
5909          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
5910          "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5911        }
5912      },
5913      "type": "object"
5914    },
5915    "io.k8s.api.batch.v2alpha1.CronJob": {
5916      "description": "CronJob represents the configuration of a single cron job.",
5917      "properties": {
5918        "apiVersion": {
5919          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5920          "type": "string"
5921        },
5922        "kind": {
5923          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5924          "type": "string"
5925        },
5926        "metadata": {
5927          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
5928          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5929        },
5930        "spec": {
5931          "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobSpec",
5932          "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5933        },
5934        "status": {
5935          "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobStatus",
5936          "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
5937        }
5938      },
5939      "type": "object",
5940      "x-kubernetes-group-version-kind": [
5941        {
5942          "group": "batch",
5943          "kind": "CronJob",
5944          "version": "v2alpha1"
5945        }
5946      ]
5947    },
5948    "io.k8s.api.batch.v2alpha1.CronJobList": {
5949      "description": "CronJobList is a collection of cron jobs.",
5950      "properties": {
5951        "apiVersion": {
5952          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
5953          "type": "string"
5954        },
5955        "items": {
5956          "description": "items is the list of CronJobs.",
5957          "items": {
5958            "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
5959          },
5960          "type": "array"
5961        },
5962        "kind": {
5963          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
5964          "type": "string"
5965        },
5966        "metadata": {
5967          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
5968          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
5969        }
5970      },
5971      "required": [
5972        "items"
5973      ],
5974      "type": "object",
5975      "x-kubernetes-group-version-kind": [
5976        {
5977          "group": "batch",
5978          "kind": "CronJobList",
5979          "version": "v2alpha1"
5980        }
5981      ]
5982    },
5983    "io.k8s.api.batch.v2alpha1.CronJobSpec": {
5984      "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
5985      "properties": {
5986        "concurrencyPolicy": {
5987          "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",
5988          "type": "string"
5989        },
5990        "failedJobsHistoryLimit": {
5991          "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.",
5992          "format": "int32",
5993          "type": "integer"
5994        },
5995        "jobTemplate": {
5996          "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.JobTemplateSpec",
5997          "description": "Specifies the job that will be created when executing a CronJob."
5998        },
5999        "schedule": {
6000          "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
6001          "type": "string"
6002        },
6003        "startingDeadlineSeconds": {
6004          "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.",
6005          "format": "int64",
6006          "type": "integer"
6007        },
6008        "successfulJobsHistoryLimit": {
6009          "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.",
6010          "format": "int32",
6011          "type": "integer"
6012        },
6013        "suspend": {
6014          "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
6015          "type": "boolean"
6016        }
6017      },
6018      "required": [
6019        "schedule",
6020        "jobTemplate"
6021      ],
6022      "type": "object"
6023    },
6024    "io.k8s.api.batch.v2alpha1.CronJobStatus": {
6025      "description": "CronJobStatus represents the current state of a cron job.",
6026      "properties": {
6027        "active": {
6028          "description": "A list of pointers to currently running jobs.",
6029          "items": {
6030            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
6031          },
6032          "type": "array"
6033        },
6034        "lastScheduleTime": {
6035          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6036          "description": "Information when was the last time the job was successfully scheduled."
6037        }
6038      },
6039      "type": "object"
6040    },
6041    "io.k8s.api.batch.v2alpha1.JobTemplateSpec": {
6042      "description": "JobTemplateSpec describes the data a Job should have when created from a template",
6043      "properties": {
6044        "metadata": {
6045          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6046          "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6047        },
6048        "spec": {
6049          "$ref": "#/definitions/io.k8s.api.batch.v1.JobSpec",
6050          "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
6051        }
6052      },
6053      "type": "object"
6054    },
6055    "io.k8s.api.certificates.v1beta1.CertificateSigningRequest": {
6056      "description": "Describes a certificate signing request",
6057      "properties": {
6058        "apiVersion": {
6059          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6060          "type": "string"
6061        },
6062        "kind": {
6063          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6064          "type": "string"
6065        },
6066        "metadata": {
6067          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
6068        },
6069        "spec": {
6070          "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec",
6071          "description": "The certificate request itself and any additional information."
6072        },
6073        "status": {
6074          "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus",
6075          "description": "Derived information about the request."
6076        }
6077      },
6078      "type": "object",
6079      "x-kubernetes-group-version-kind": [
6080        {
6081          "group": "certificates.k8s.io",
6082          "kind": "CertificateSigningRequest",
6083          "version": "v1beta1"
6084        }
6085      ]
6086    },
6087    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition": {
6088      "properties": {
6089        "lastUpdateTime": {
6090          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
6091          "description": "timestamp for the last update to this condition"
6092        },
6093        "message": {
6094          "description": "human readable message with details about the request state",
6095          "type": "string"
6096        },
6097        "reason": {
6098          "description": "brief reason for the request state",
6099          "type": "string"
6100        },
6101        "type": {
6102          "description": "request approval state, currently Approved or Denied.",
6103          "type": "string"
6104        }
6105      },
6106      "required": [
6107        "type"
6108      ],
6109      "type": "object"
6110    },
6111    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestList": {
6112      "properties": {
6113        "apiVersion": {
6114          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6115          "type": "string"
6116        },
6117        "items": {
6118          "items": {
6119            "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
6120          },
6121          "type": "array"
6122        },
6123        "kind": {
6124          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6125          "type": "string"
6126        },
6127        "metadata": {
6128          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
6129        }
6130      },
6131      "required": [
6132        "items"
6133      ],
6134      "type": "object",
6135      "x-kubernetes-group-version-kind": [
6136        {
6137          "group": "certificates.k8s.io",
6138          "kind": "CertificateSigningRequestList",
6139          "version": "v1beta1"
6140        }
6141      ]
6142    },
6143    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec": {
6144      "description": "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.",
6145      "properties": {
6146        "extra": {
6147          "additionalProperties": {
6148            "items": {
6149              "type": "string"
6150            },
6151            "type": "array"
6152          },
6153          "description": "Extra information about the requesting user. See user.Info interface for details.",
6154          "type": "object"
6155        },
6156        "groups": {
6157          "description": "Group information about the requesting user. See user.Info interface for details.",
6158          "items": {
6159            "type": "string"
6160          },
6161          "type": "array"
6162        },
6163        "request": {
6164          "description": "Base64-encoded PKCS#10 CSR data",
6165          "format": "byte",
6166          "type": "string"
6167        },
6168        "uid": {
6169          "description": "UID information about the requesting user. See user.Info interface for details.",
6170          "type": "string"
6171        },
6172        "usages": {
6173          "description": "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n     https://tools.ietf.org/html/rfc5280#section-4.2.1.12",
6174          "items": {
6175            "type": "string"
6176          },
6177          "type": "array"
6178        },
6179        "username": {
6180          "description": "Information about the requesting user. See user.Info interface for details.",
6181          "type": "string"
6182        }
6183      },
6184      "required": [
6185        "request"
6186      ],
6187      "type": "object"
6188    },
6189    "io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus": {
6190      "properties": {
6191        "certificate": {
6192          "description": "If request was approved, the controller will place the issued certificate here.",
6193          "format": "byte",
6194          "type": "string"
6195        },
6196        "conditions": {
6197          "description": "Conditions applied to the request, such as approval or denial.",
6198          "items": {
6199            "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition"
6200          },
6201          "type": "array"
6202        }
6203      },
6204      "type": "object"
6205    },
6206    "io.k8s.api.coordination.v1.Lease": {
6207      "description": "Lease defines a lease concept.",
6208      "properties": {
6209        "apiVersion": {
6210          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6211          "type": "string"
6212        },
6213        "kind": {
6214          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6215          "type": "string"
6216        },
6217        "metadata": {
6218          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6219          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6220        },
6221        "spec": {
6222          "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseSpec",
6223          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
6224        }
6225      },
6226      "type": "object",
6227      "x-kubernetes-group-version-kind": [
6228        {
6229          "group": "coordination.k8s.io",
6230          "kind": "Lease",
6231          "version": "v1"
6232        }
6233      ]
6234    },
6235    "io.k8s.api.coordination.v1.LeaseList": {
6236      "description": "LeaseList is a list of Lease objects.",
6237      "properties": {
6238        "apiVersion": {
6239          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6240          "type": "string"
6241        },
6242        "items": {
6243          "description": "Items is a list of schema objects.",
6244          "items": {
6245            "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
6246          },
6247          "type": "array"
6248        },
6249        "kind": {
6250          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6251          "type": "string"
6252        },
6253        "metadata": {
6254          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6255          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6256        }
6257      },
6258      "required": [
6259        "items"
6260      ],
6261      "type": "object",
6262      "x-kubernetes-group-version-kind": [
6263        {
6264          "group": "coordination.k8s.io",
6265          "kind": "LeaseList",
6266          "version": "v1"
6267        }
6268      ]
6269    },
6270    "io.k8s.api.coordination.v1.LeaseSpec": {
6271      "description": "LeaseSpec is a specification of a Lease.",
6272      "properties": {
6273        "acquireTime": {
6274          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6275          "description": "acquireTime is a time when the current lease was acquired."
6276        },
6277        "holderIdentity": {
6278          "description": "holderIdentity contains the identity of the holder of a current lease.",
6279          "type": "string"
6280        },
6281        "leaseDurationSeconds": {
6282          "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.",
6283          "format": "int32",
6284          "type": "integer"
6285        },
6286        "leaseTransitions": {
6287          "description": "leaseTransitions is the number of transitions of a lease between holders.",
6288          "format": "int32",
6289          "type": "integer"
6290        },
6291        "renewTime": {
6292          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6293          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
6294        }
6295      },
6296      "type": "object"
6297    },
6298    "io.k8s.api.coordination.v1beta1.Lease": {
6299      "description": "Lease defines a lease concept.",
6300      "properties": {
6301        "apiVersion": {
6302          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6303          "type": "string"
6304        },
6305        "kind": {
6306          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6307          "type": "string"
6308        },
6309        "metadata": {
6310          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6311          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6312        },
6313        "spec": {
6314          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseSpec",
6315          "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
6316        }
6317      },
6318      "type": "object",
6319      "x-kubernetes-group-version-kind": [
6320        {
6321          "group": "coordination.k8s.io",
6322          "kind": "Lease",
6323          "version": "v1beta1"
6324        }
6325      ]
6326    },
6327    "io.k8s.api.coordination.v1beta1.LeaseList": {
6328      "description": "LeaseList is a list of Lease objects.",
6329      "properties": {
6330        "apiVersion": {
6331          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6332          "type": "string"
6333        },
6334        "items": {
6335          "description": "Items is a list of schema objects.",
6336          "items": {
6337            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
6338          },
6339          "type": "array"
6340        },
6341        "kind": {
6342          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6343          "type": "string"
6344        },
6345        "metadata": {
6346          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6347          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6348        }
6349      },
6350      "required": [
6351        "items"
6352      ],
6353      "type": "object",
6354      "x-kubernetes-group-version-kind": [
6355        {
6356          "group": "coordination.k8s.io",
6357          "kind": "LeaseList",
6358          "version": "v1beta1"
6359        }
6360      ]
6361    },
6362    "io.k8s.api.coordination.v1beta1.LeaseSpec": {
6363      "description": "LeaseSpec is a specification of a Lease.",
6364      "properties": {
6365        "acquireTime": {
6366          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6367          "description": "acquireTime is a time when the current lease was acquired."
6368        },
6369        "holderIdentity": {
6370          "description": "holderIdentity contains the identity of the holder of a current lease.",
6371          "type": "string"
6372        },
6373        "leaseDurationSeconds": {
6374          "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.",
6375          "format": "int32",
6376          "type": "integer"
6377        },
6378        "leaseTransitions": {
6379          "description": "leaseTransitions is the number of transitions of a lease between holders.",
6380          "format": "int32",
6381          "type": "integer"
6382        },
6383        "renewTime": {
6384          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
6385          "description": "renewTime is a time when the current holder of a lease has last updated the lease."
6386        }
6387      },
6388      "type": "object"
6389    },
6390    "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
6391      "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.",
6392      "properties": {
6393        "fsType": {
6394          "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",
6395          "type": "string"
6396        },
6397        "partition": {
6398          "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).",
6399          "format": "int32",
6400          "type": "integer"
6401        },
6402        "readOnly": {
6403          "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",
6404          "type": "boolean"
6405        },
6406        "volumeID": {
6407          "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
6408          "type": "string"
6409        }
6410      },
6411      "required": [
6412        "volumeID"
6413      ],
6414      "type": "object"
6415    },
6416    "io.k8s.api.core.v1.Affinity": {
6417      "description": "Affinity is a group of affinity scheduling rules.",
6418      "properties": {
6419        "nodeAffinity": {
6420          "$ref": "#/definitions/io.k8s.api.core.v1.NodeAffinity",
6421          "description": "Describes node affinity scheduling rules for the pod."
6422        },
6423        "podAffinity": {
6424          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinity",
6425          "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
6426        },
6427        "podAntiAffinity": {
6428          "$ref": "#/definitions/io.k8s.api.core.v1.PodAntiAffinity",
6429          "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
6430        }
6431      },
6432      "type": "object"
6433    },
6434    "io.k8s.api.core.v1.AttachedVolume": {
6435      "description": "AttachedVolume describes a volume attached to a node",
6436      "properties": {
6437        "devicePath": {
6438          "description": "DevicePath represents the device path where the volume should be available",
6439          "type": "string"
6440        },
6441        "name": {
6442          "description": "Name of the attached volume",
6443          "type": "string"
6444        }
6445      },
6446      "required": [
6447        "name",
6448        "devicePath"
6449      ],
6450      "type": "object"
6451    },
6452    "io.k8s.api.core.v1.AzureDiskVolumeSource": {
6453      "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
6454      "properties": {
6455        "cachingMode": {
6456          "description": "Host Caching mode: None, Read Only, Read Write.",
6457          "type": "string"
6458        },
6459        "diskName": {
6460          "description": "The Name of the data disk in the blob storage",
6461          "type": "string"
6462        },
6463        "diskURI": {
6464          "description": "The URI the data disk in the blob storage",
6465          "type": "string"
6466        },
6467        "fsType": {
6468          "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.",
6469          "type": "string"
6470        },
6471        "kind": {
6472          "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",
6473          "type": "string"
6474        },
6475        "readOnly": {
6476          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6477          "type": "boolean"
6478        }
6479      },
6480      "required": [
6481        "diskName",
6482        "diskURI"
6483      ],
6484      "type": "object"
6485    },
6486    "io.k8s.api.core.v1.AzureFilePersistentVolumeSource": {
6487      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
6488      "properties": {
6489        "readOnly": {
6490          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6491          "type": "boolean"
6492        },
6493        "secretName": {
6494          "description": "the name of secret that contains Azure Storage Account Name and Key",
6495          "type": "string"
6496        },
6497        "secretNamespace": {
6498          "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
6499          "type": "string"
6500        },
6501        "shareName": {
6502          "description": "Share Name",
6503          "type": "string"
6504        }
6505      },
6506      "required": [
6507        "secretName",
6508        "shareName"
6509      ],
6510      "type": "object"
6511    },
6512    "io.k8s.api.core.v1.AzureFileVolumeSource": {
6513      "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
6514      "properties": {
6515        "readOnly": {
6516          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
6517          "type": "boolean"
6518        },
6519        "secretName": {
6520          "description": "the name of secret that contains Azure Storage Account Name and Key",
6521          "type": "string"
6522        },
6523        "shareName": {
6524          "description": "Share Name",
6525          "type": "string"
6526        }
6527      },
6528      "required": [
6529        "secretName",
6530        "shareName"
6531      ],
6532      "type": "object"
6533    },
6534    "io.k8s.api.core.v1.Binding": {
6535      "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.",
6536      "properties": {
6537        "apiVersion": {
6538          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6539          "type": "string"
6540        },
6541        "kind": {
6542          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6543          "type": "string"
6544        },
6545        "metadata": {
6546          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6547          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6548        },
6549        "target": {
6550          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
6551          "description": "The target object that you want to bind to the standard object."
6552        }
6553      },
6554      "required": [
6555        "target"
6556      ],
6557      "type": "object",
6558      "x-kubernetes-group-version-kind": [
6559        {
6560          "group": "",
6561          "kind": "Binding",
6562          "version": "v1"
6563        }
6564      ]
6565    },
6566    "io.k8s.api.core.v1.CSIPersistentVolumeSource": {
6567      "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
6568      "properties": {
6569        "controllerExpandSecretRef": {
6570          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6571          "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."
6572        },
6573        "controllerPublishSecretRef": {
6574          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6575          "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."
6576        },
6577        "driver": {
6578          "description": "Driver is the name of the driver to use for this volume. Required.",
6579          "type": "string"
6580        },
6581        "fsType": {
6582          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
6583          "type": "string"
6584        },
6585        "nodePublishSecretRef": {
6586          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6587          "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."
6588        },
6589        "nodeStageSecretRef": {
6590          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6591          "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."
6592        },
6593        "readOnly": {
6594          "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
6595          "type": "boolean"
6596        },
6597        "volumeAttributes": {
6598          "additionalProperties": {
6599            "type": "string"
6600          },
6601          "description": "Attributes of the volume to publish.",
6602          "type": "object"
6603        },
6604        "volumeHandle": {
6605          "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.",
6606          "type": "string"
6607        }
6608      },
6609      "required": [
6610        "driver",
6611        "volumeHandle"
6612      ],
6613      "type": "object"
6614    },
6615    "io.k8s.api.core.v1.CSIVolumeSource": {
6616      "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
6617      "properties": {
6618        "driver": {
6619          "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.",
6620          "type": "string"
6621        },
6622        "fsType": {
6623          "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.",
6624          "type": "string"
6625        },
6626        "nodePublishSecretRef": {
6627          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
6628          "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."
6629        },
6630        "readOnly": {
6631          "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
6632          "type": "boolean"
6633        },
6634        "volumeAttributes": {
6635          "additionalProperties": {
6636            "type": "string"
6637          },
6638          "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
6639          "type": "object"
6640        }
6641      },
6642      "required": [
6643        "driver"
6644      ],
6645      "type": "object"
6646    },
6647    "io.k8s.api.core.v1.Capabilities": {
6648      "description": "Adds and removes POSIX capabilities from running containers.",
6649      "properties": {
6650        "add": {
6651          "description": "Added capabilities",
6652          "items": {
6653            "type": "string"
6654          },
6655          "type": "array"
6656        },
6657        "drop": {
6658          "description": "Removed capabilities",
6659          "items": {
6660            "type": "string"
6661          },
6662          "type": "array"
6663        }
6664      },
6665      "type": "object"
6666    },
6667    "io.k8s.api.core.v1.CephFSPersistentVolumeSource": {
6668      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
6669      "properties": {
6670        "monitors": {
6671          "description": "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6672          "items": {
6673            "type": "string"
6674          },
6675          "type": "array"
6676        },
6677        "path": {
6678          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
6679          "type": "string"
6680        },
6681        "readOnly": {
6682          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6683          "type": "boolean"
6684        },
6685        "secretFile": {
6686          "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6687          "type": "string"
6688        },
6689        "secretRef": {
6690          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6691          "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it"
6692        },
6693        "user": {
6694          "description": "Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6695          "type": "string"
6696        }
6697      },
6698      "required": [
6699        "monitors"
6700      ],
6701      "type": "object"
6702    },
6703    "io.k8s.api.core.v1.CephFSVolumeSource": {
6704      "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
6705      "properties": {
6706        "monitors": {
6707          "description": "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6708          "items": {
6709            "type": "string"
6710          },
6711          "type": "array"
6712        },
6713        "path": {
6714          "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
6715          "type": "string"
6716        },
6717        "readOnly": {
6718          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6719          "type": "boolean"
6720        },
6721        "secretFile": {
6722          "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6723          "type": "string"
6724        },
6725        "secretRef": {
6726          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
6727          "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it"
6728        },
6729        "user": {
6730          "description": "Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
6731          "type": "string"
6732        }
6733      },
6734      "required": [
6735        "monitors"
6736      ],
6737      "type": "object"
6738    },
6739    "io.k8s.api.core.v1.CinderPersistentVolumeSource": {
6740      "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.",
6741      "properties": {
6742        "fsType": {
6743          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
6744          "type": "string"
6745        },
6746        "readOnly": {
6747          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
6748          "type": "boolean"
6749        },
6750        "secretRef": {
6751          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
6752          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
6753        },
6754        "volumeID": {
6755          "description": "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
6756          "type": "string"
6757        }
6758      },
6759      "required": [
6760        "volumeID"
6761      ],
6762      "type": "object"
6763    },
6764    "io.k8s.api.core.v1.CinderVolumeSource": {
6765      "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.",
6766      "properties": {
6767        "fsType": {
6768          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
6769          "type": "string"
6770        },
6771        "readOnly": {
6772          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
6773          "type": "boolean"
6774        },
6775        "secretRef": {
6776          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
6777          "description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
6778        },
6779        "volumeID": {
6780          "description": "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
6781          "type": "string"
6782        }
6783      },
6784      "required": [
6785        "volumeID"
6786      ],
6787      "type": "object"
6788    },
6789    "io.k8s.api.core.v1.ClientIPConfig": {
6790      "description": "ClientIPConfig represents the configurations of Client IP based session affinity.",
6791      "properties": {
6792        "timeoutSeconds": {
6793          "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).",
6794          "format": "int32",
6795          "type": "integer"
6796        }
6797      },
6798      "type": "object"
6799    },
6800    "io.k8s.api.core.v1.ComponentCondition": {
6801      "description": "Information about the condition of a component.",
6802      "properties": {
6803        "error": {
6804          "description": "Condition error code for a component. For example, a health check error code.",
6805          "type": "string"
6806        },
6807        "message": {
6808          "description": "Message about the condition for a component. For example, information about a health check.",
6809          "type": "string"
6810        },
6811        "status": {
6812          "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
6813          "type": "string"
6814        },
6815        "type": {
6816          "description": "Type of condition for a component. Valid value: \"Healthy\"",
6817          "type": "string"
6818        }
6819      },
6820      "required": [
6821        "type",
6822        "status"
6823      ],
6824      "type": "object"
6825    },
6826    "io.k8s.api.core.v1.ComponentStatus": {
6827      "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info.",
6828      "properties": {
6829        "apiVersion": {
6830          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6831          "type": "string"
6832        },
6833        "conditions": {
6834          "description": "List of component conditions observed",
6835          "items": {
6836            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentCondition"
6837          },
6838          "type": "array",
6839          "x-kubernetes-patch-merge-key": "type",
6840          "x-kubernetes-patch-strategy": "merge"
6841        },
6842        "kind": {
6843          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6844          "type": "string"
6845        },
6846        "metadata": {
6847          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6848          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6849        }
6850      },
6851      "type": "object",
6852      "x-kubernetes-group-version-kind": [
6853        {
6854          "group": "",
6855          "kind": "ComponentStatus",
6856          "version": "v1"
6857        }
6858      ]
6859    },
6860    "io.k8s.api.core.v1.ComponentStatusList": {
6861      "description": "Status of all the conditions for the component as a list of ComponentStatus objects.",
6862      "properties": {
6863        "apiVersion": {
6864          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6865          "type": "string"
6866        },
6867        "items": {
6868          "description": "List of ComponentStatus objects.",
6869          "items": {
6870            "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
6871          },
6872          "type": "array"
6873        },
6874        "kind": {
6875          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6876          "type": "string"
6877        },
6878        "metadata": {
6879          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6880          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
6881        }
6882      },
6883      "required": [
6884        "items"
6885      ],
6886      "type": "object",
6887      "x-kubernetes-group-version-kind": [
6888        {
6889          "group": "",
6890          "kind": "ComponentStatusList",
6891          "version": "v1"
6892        }
6893      ]
6894    },
6895    "io.k8s.api.core.v1.ConfigMap": {
6896      "description": "ConfigMap holds configuration data for pods to consume.",
6897      "properties": {
6898        "apiVersion": {
6899          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6900          "type": "string"
6901        },
6902        "binaryData": {
6903          "additionalProperties": {
6904            "format": "byte",
6905            "type": "string"
6906          },
6907          "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.",
6908          "type": "object"
6909        },
6910        "data": {
6911          "additionalProperties": {
6912            "type": "string"
6913          },
6914          "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.",
6915          "type": "object"
6916        },
6917        "kind": {
6918          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6919          "type": "string"
6920        },
6921        "metadata": {
6922          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
6923          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6924        }
6925      },
6926      "type": "object",
6927      "x-kubernetes-group-version-kind": [
6928        {
6929          "group": "",
6930          "kind": "ConfigMap",
6931          "version": "v1"
6932        }
6933      ]
6934    },
6935    "io.k8s.api.core.v1.ConfigMapEnvSource": {
6936      "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.",
6937      "properties": {
6938        "name": {
6939          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
6940          "type": "string"
6941        },
6942        "optional": {
6943          "description": "Specify whether the ConfigMap must be defined",
6944          "type": "boolean"
6945        }
6946      },
6947      "type": "object"
6948    },
6949    "io.k8s.api.core.v1.ConfigMapKeySelector": {
6950      "description": "Selects a key from a ConfigMap.",
6951      "properties": {
6952        "key": {
6953          "description": "The key to select.",
6954          "type": "string"
6955        },
6956        "name": {
6957          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
6958          "type": "string"
6959        },
6960        "optional": {
6961          "description": "Specify whether the ConfigMap or its key must be defined",
6962          "type": "boolean"
6963        }
6964      },
6965      "required": [
6966        "key"
6967      ],
6968      "type": "object"
6969    },
6970    "io.k8s.api.core.v1.ConfigMapList": {
6971      "description": "ConfigMapList is a resource containing a list of ConfigMap objects.",
6972      "properties": {
6973        "apiVersion": {
6974          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
6975          "type": "string"
6976        },
6977        "items": {
6978          "description": "Items is the list of ConfigMaps.",
6979          "items": {
6980            "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
6981          },
6982          "type": "array"
6983        },
6984        "kind": {
6985          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
6986          "type": "string"
6987        },
6988        "metadata": {
6989          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
6990          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
6991        }
6992      },
6993      "required": [
6994        "items"
6995      ],
6996      "type": "object",
6997      "x-kubernetes-group-version-kind": [
6998        {
6999          "group": "",
7000          "kind": "ConfigMapList",
7001          "version": "v1"
7002        }
7003      ]
7004    },
7005    "io.k8s.api.core.v1.ConfigMapNodeConfigSource": {
7006      "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.",
7007      "properties": {
7008        "kubeletConfigKey": {
7009          "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.",
7010          "type": "string"
7011        },
7012        "name": {
7013          "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
7014          "type": "string"
7015        },
7016        "namespace": {
7017          "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
7018          "type": "string"
7019        },
7020        "resourceVersion": {
7021          "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
7022          "type": "string"
7023        },
7024        "uid": {
7025          "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
7026          "type": "string"
7027        }
7028      },
7029      "required": [
7030        "namespace",
7031        "name",
7032        "kubeletConfigKey"
7033      ],
7034      "type": "object"
7035    },
7036    "io.k8s.api.core.v1.ConfigMapProjection": {
7037      "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.",
7038      "properties": {
7039        "items": {
7040          "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 '..'.",
7041          "items": {
7042            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
7043          },
7044          "type": "array"
7045        },
7046        "name": {
7047          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
7048          "type": "string"
7049        },
7050        "optional": {
7051          "description": "Specify whether the ConfigMap or its keys must be defined",
7052          "type": "boolean"
7053        }
7054      },
7055      "type": "object"
7056    },
7057    "io.k8s.api.core.v1.ConfigMapVolumeSource": {
7058      "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.",
7059      "properties": {
7060        "defaultMode": {
7061          "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
7062          "format": "int32",
7063          "type": "integer"
7064        },
7065        "items": {
7066          "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 '..'.",
7067          "items": {
7068            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
7069          },
7070          "type": "array"
7071        },
7072        "name": {
7073          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
7074          "type": "string"
7075        },
7076        "optional": {
7077          "description": "Specify whether the ConfigMap or its keys must be defined",
7078          "type": "boolean"
7079        }
7080      },
7081      "type": "object"
7082    },
7083    "io.k8s.api.core.v1.Container": {
7084      "description": "A single application container that you want to run within a pod.",
7085      "properties": {
7086        "args": {
7087          "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
7088          "items": {
7089            "type": "string"
7090          },
7091          "type": "array"
7092        },
7093        "command": {
7094          "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
7095          "items": {
7096            "type": "string"
7097          },
7098          "type": "array"
7099        },
7100        "env": {
7101          "description": "List of environment variables to set in the container. Cannot be updated.",
7102          "items": {
7103            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
7104          },
7105          "type": "array",
7106          "x-kubernetes-patch-merge-key": "name",
7107          "x-kubernetes-patch-strategy": "merge"
7108        },
7109        "envFrom": {
7110          "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.",
7111          "items": {
7112            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
7113          },
7114          "type": "array"
7115        },
7116        "image": {
7117          "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.",
7118          "type": "string"
7119        },
7120        "imagePullPolicy": {
7121          "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",
7122          "type": "string"
7123        },
7124        "lifecycle": {
7125          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
7126          "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
7127        },
7128        "livenessProbe": {
7129          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
7130          "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"
7131        },
7132        "name": {
7133          "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.",
7134          "type": "string"
7135        },
7136        "ports": {
7137          "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.",
7138          "items": {
7139            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
7140          },
7141          "type": "array",
7142          "x-kubernetes-list-map-keys": [
7143            "containerPort",
7144            "protocol"
7145          ],
7146          "x-kubernetes-list-type": "map",
7147          "x-kubernetes-patch-merge-key": "containerPort",
7148          "x-kubernetes-patch-strategy": "merge"
7149        },
7150        "readinessProbe": {
7151          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
7152          "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"
7153        },
7154        "resources": {
7155          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
7156          "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
7157        },
7158        "securityContext": {
7159          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
7160          "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
7161        },
7162        "stdin": {
7163          "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.",
7164          "type": "boolean"
7165        },
7166        "stdinOnce": {
7167          "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",
7168          "type": "boolean"
7169        },
7170        "terminationMessagePath": {
7171          "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.",
7172          "type": "string"
7173        },
7174        "terminationMessagePolicy": {
7175          "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.",
7176          "type": "string"
7177        },
7178        "tty": {
7179          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
7180          "type": "boolean"
7181        },
7182        "volumeDevices": {
7183          "description": "volumeDevices is the list of block devices to be used by the container. This is a beta feature.",
7184          "items": {
7185            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
7186          },
7187          "type": "array",
7188          "x-kubernetes-patch-merge-key": "devicePath",
7189          "x-kubernetes-patch-strategy": "merge"
7190        },
7191        "volumeMounts": {
7192          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
7193          "items": {
7194            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
7195          },
7196          "type": "array",
7197          "x-kubernetes-patch-merge-key": "mountPath",
7198          "x-kubernetes-patch-strategy": "merge"
7199        },
7200        "workingDir": {
7201          "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.",
7202          "type": "string"
7203        }
7204      },
7205      "required": [
7206        "name"
7207      ],
7208      "type": "object"
7209    },
7210    "io.k8s.api.core.v1.ContainerImage": {
7211      "description": "Describe a container image",
7212      "properties": {
7213        "names": {
7214          "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\"]",
7215          "items": {
7216            "type": "string"
7217          },
7218          "type": "array"
7219        },
7220        "sizeBytes": {
7221          "description": "The size of the image in bytes.",
7222          "format": "int64",
7223          "type": "integer"
7224        }
7225      },
7226      "required": [
7227        "names"
7228      ],
7229      "type": "object"
7230    },
7231    "io.k8s.api.core.v1.ContainerPort": {
7232      "description": "ContainerPort represents a network port in a single container.",
7233      "properties": {
7234        "containerPort": {
7235          "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
7236          "format": "int32",
7237          "type": "integer"
7238        },
7239        "hostIP": {
7240          "description": "What host IP to bind the external port to.",
7241          "type": "string"
7242        },
7243        "hostPort": {
7244          "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.",
7245          "format": "int32",
7246          "type": "integer"
7247        },
7248        "name": {
7249          "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.",
7250          "type": "string"
7251        },
7252        "protocol": {
7253          "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
7254          "type": "string"
7255        }
7256      },
7257      "required": [
7258        "containerPort"
7259      ],
7260      "type": "object"
7261    },
7262    "io.k8s.api.core.v1.ContainerState": {
7263      "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.",
7264      "properties": {
7265        "running": {
7266          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateRunning",
7267          "description": "Details about a running container"
7268        },
7269        "terminated": {
7270          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateTerminated",
7271          "description": "Details about a terminated container"
7272        },
7273        "waiting": {
7274          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStateWaiting",
7275          "description": "Details about a waiting container"
7276        }
7277      },
7278      "type": "object"
7279    },
7280    "io.k8s.api.core.v1.ContainerStateRunning": {
7281      "description": "ContainerStateRunning is a running state of a container.",
7282      "properties": {
7283        "startedAt": {
7284          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7285          "description": "Time at which the container was last (re-)started"
7286        }
7287      },
7288      "type": "object"
7289    },
7290    "io.k8s.api.core.v1.ContainerStateTerminated": {
7291      "description": "ContainerStateTerminated is a terminated state of a container.",
7292      "properties": {
7293        "containerID": {
7294          "description": "Container's ID in the format 'docker://<container_id>'",
7295          "type": "string"
7296        },
7297        "exitCode": {
7298          "description": "Exit status from the last termination of the container",
7299          "format": "int32",
7300          "type": "integer"
7301        },
7302        "finishedAt": {
7303          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7304          "description": "Time at which the container last terminated"
7305        },
7306        "message": {
7307          "description": "Message regarding the last termination of the container",
7308          "type": "string"
7309        },
7310        "reason": {
7311          "description": "(brief) reason from the last termination of the container",
7312          "type": "string"
7313        },
7314        "signal": {
7315          "description": "Signal from the last termination of the container",
7316          "format": "int32",
7317          "type": "integer"
7318        },
7319        "startedAt": {
7320          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7321          "description": "Time at which previous execution of the container started"
7322        }
7323      },
7324      "required": [
7325        "exitCode"
7326      ],
7327      "type": "object"
7328    },
7329    "io.k8s.api.core.v1.ContainerStateWaiting": {
7330      "description": "ContainerStateWaiting is a waiting state of a container.",
7331      "properties": {
7332        "message": {
7333          "description": "Message regarding why the container is not yet running.",
7334          "type": "string"
7335        },
7336        "reason": {
7337          "description": "(brief) reason the container is not yet running.",
7338          "type": "string"
7339        }
7340      },
7341      "type": "object"
7342    },
7343    "io.k8s.api.core.v1.ContainerStatus": {
7344      "description": "ContainerStatus contains details for the current status of this container.",
7345      "properties": {
7346        "containerID": {
7347          "description": "Container's ID in the format 'docker://<container_id>'.",
7348          "type": "string"
7349        },
7350        "image": {
7351          "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images",
7352          "type": "string"
7353        },
7354        "imageID": {
7355          "description": "ImageID of the container's image.",
7356          "type": "string"
7357        },
7358        "lastState": {
7359          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
7360          "description": "Details about the container's last termination condition."
7361        },
7362        "name": {
7363          "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.",
7364          "type": "string"
7365        },
7366        "ready": {
7367          "description": "Specifies whether the container has passed its readiness probe.",
7368          "type": "boolean"
7369        },
7370        "restartCount": {
7371          "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.",
7372          "format": "int32",
7373          "type": "integer"
7374        },
7375        "state": {
7376          "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
7377          "description": "Details about the container's current condition."
7378        }
7379      },
7380      "required": [
7381        "name",
7382        "ready",
7383        "restartCount",
7384        "image",
7385        "imageID"
7386      ],
7387      "type": "object"
7388    },
7389    "io.k8s.api.core.v1.DaemonEndpoint": {
7390      "description": "DaemonEndpoint contains information about a single Daemon endpoint.",
7391      "properties": {
7392        "Port": {
7393          "description": "Port number of the given endpoint.",
7394          "format": "int32",
7395          "type": "integer"
7396        }
7397      },
7398      "required": [
7399        "Port"
7400      ],
7401      "type": "object"
7402    },
7403    "io.k8s.api.core.v1.DownwardAPIProjection": {
7404      "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.",
7405      "properties": {
7406        "items": {
7407          "description": "Items is a list of DownwardAPIVolume file",
7408          "items": {
7409            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
7410          },
7411          "type": "array"
7412        }
7413      },
7414      "type": "object"
7415    },
7416    "io.k8s.api.core.v1.DownwardAPIVolumeFile": {
7417      "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
7418      "properties": {
7419        "fieldRef": {
7420          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
7421          "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
7422        },
7423        "mode": {
7424          "description": "Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
7425          "format": "int32",
7426          "type": "integer"
7427        },
7428        "path": {
7429          "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 '..'",
7430          "type": "string"
7431        },
7432        "resourceFieldRef": {
7433          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
7434          "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
7435        }
7436      },
7437      "required": [
7438        "path"
7439      ],
7440      "type": "object"
7441    },
7442    "io.k8s.api.core.v1.DownwardAPIVolumeSource": {
7443      "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
7444      "properties": {
7445        "defaultMode": {
7446          "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
7447          "format": "int32",
7448          "type": "integer"
7449        },
7450        "items": {
7451          "description": "Items is a list of downward API volume file",
7452          "items": {
7453            "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile"
7454          },
7455          "type": "array"
7456        }
7457      },
7458      "type": "object"
7459    },
7460    "io.k8s.api.core.v1.EmptyDirVolumeSource": {
7461      "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
7462      "properties": {
7463        "medium": {
7464          "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",
7465          "type": "string"
7466        },
7467        "sizeLimit": {
7468          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
7469          "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"
7470        }
7471      },
7472      "type": "object"
7473    },
7474    "io.k8s.api.core.v1.EndpointAddress": {
7475      "description": "EndpointAddress is a tuple that describes single IP address.",
7476      "properties": {
7477        "hostname": {
7478          "description": "The Hostname of this endpoint",
7479          "type": "string"
7480        },
7481        "ip": {
7482          "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.",
7483          "type": "string"
7484        },
7485        "nodeName": {
7486          "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
7487          "type": "string"
7488        },
7489        "targetRef": {
7490          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
7491          "description": "Reference to object providing the endpoint."
7492        }
7493      },
7494      "required": [
7495        "ip"
7496      ],
7497      "type": "object"
7498    },
7499    "io.k8s.api.core.v1.EndpointPort": {
7500      "description": "EndpointPort is a tuple that describes a single port.",
7501      "properties": {
7502        "name": {
7503          "description": "The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.",
7504          "type": "string"
7505        },
7506        "port": {
7507          "description": "The port number of the endpoint.",
7508          "format": "int32",
7509          "type": "integer"
7510        },
7511        "protocol": {
7512          "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
7513          "type": "string"
7514        }
7515      },
7516      "required": [
7517        "port"
7518      ],
7519      "type": "object"
7520    },
7521    "io.k8s.api.core.v1.EndpointSubset": {
7522      "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 ]",
7523      "properties": {
7524        "addresses": {
7525          "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.",
7526          "items": {
7527            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
7528          },
7529          "type": "array"
7530        },
7531        "notReadyAddresses": {
7532          "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.",
7533          "items": {
7534            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointAddress"
7535          },
7536          "type": "array"
7537        },
7538        "ports": {
7539          "description": "Port numbers available on the related IP addresses.",
7540          "items": {
7541            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointPort"
7542          },
7543          "type": "array"
7544        }
7545      },
7546      "type": "object"
7547    },
7548    "io.k8s.api.core.v1.Endpoints": {
7549      "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 ]",
7550      "properties": {
7551        "apiVersion": {
7552          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
7553          "type": "string"
7554        },
7555        "kind": {
7556          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
7557          "type": "string"
7558        },
7559        "metadata": {
7560          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7561          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
7562        },
7563        "subsets": {
7564          "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.",
7565          "items": {
7566            "$ref": "#/definitions/io.k8s.api.core.v1.EndpointSubset"
7567          },
7568          "type": "array"
7569        }
7570      },
7571      "type": "object",
7572      "x-kubernetes-group-version-kind": [
7573        {
7574          "group": "",
7575          "kind": "Endpoints",
7576          "version": "v1"
7577        }
7578      ]
7579    },
7580    "io.k8s.api.core.v1.EndpointsList": {
7581      "description": "EndpointsList is a list of endpoints.",
7582      "properties": {
7583        "apiVersion": {
7584          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
7585          "type": "string"
7586        },
7587        "items": {
7588          "description": "List of endpoints.",
7589          "items": {
7590            "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
7591          },
7592          "type": "array"
7593        },
7594        "kind": {
7595          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
7596          "type": "string"
7597        },
7598        "metadata": {
7599          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7600          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
7601        }
7602      },
7603      "required": [
7604        "items"
7605      ],
7606      "type": "object",
7607      "x-kubernetes-group-version-kind": [
7608        {
7609          "group": "",
7610          "kind": "EndpointsList",
7611          "version": "v1"
7612        }
7613      ]
7614    },
7615    "io.k8s.api.core.v1.EnvFromSource": {
7616      "description": "EnvFromSource represents the source of a set of ConfigMaps",
7617      "properties": {
7618        "configMapRef": {
7619          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource",
7620          "description": "The ConfigMap to select from"
7621        },
7622        "prefix": {
7623          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
7624          "type": "string"
7625        },
7626        "secretRef": {
7627          "$ref": "#/definitions/io.k8s.api.core.v1.SecretEnvSource",
7628          "description": "The Secret to select from"
7629        }
7630      },
7631      "type": "object"
7632    },
7633    "io.k8s.api.core.v1.EnvVar": {
7634      "description": "EnvVar represents an environment variable present in a Container.",
7635      "properties": {
7636        "name": {
7637          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
7638          "type": "string"
7639        },
7640        "value": {
7641          "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
7642          "type": "string"
7643        },
7644        "valueFrom": {
7645          "$ref": "#/definitions/io.k8s.api.core.v1.EnvVarSource",
7646          "description": "Source for the environment variable's value. Cannot be used if value is not empty."
7647        }
7648      },
7649      "required": [
7650        "name"
7651      ],
7652      "type": "object"
7653    },
7654    "io.k8s.api.core.v1.EnvVarSource": {
7655      "description": "EnvVarSource represents a source for the value of an EnvVar.",
7656      "properties": {
7657        "configMapKeyRef": {
7658          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector",
7659          "description": "Selects a key of a ConfigMap."
7660        },
7661        "fieldRef": {
7662          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectFieldSelector",
7663          "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP."
7664        },
7665        "resourceFieldRef": {
7666          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceFieldSelector",
7667          "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."
7668        },
7669        "secretKeyRef": {
7670          "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
7671          "description": "Selects a key of a secret in the pod's namespace"
7672        }
7673      },
7674      "type": "object"
7675    },
7676    "io.k8s.api.core.v1.EphemeralContainer": {
7677      "description": "An EphemeralContainer is a special type of container which doesn't come with any resource or scheduling guarantees but can be added to a pod that has already been created. They are intended for user-initiated activities such as troubleshooting a running pod. Ephemeral containers will not be restarted when they exit, and they will be killed if the pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers are added via a pod's ephemeralcontainers subresource and will appear in the pod spec once added. No fields in EphemeralContainer may be changed once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
7678      "properties": {
7679        "args": {
7680          "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
7681          "items": {
7682            "type": "string"
7683          },
7684          "type": "array"
7685        },
7686        "command": {
7687          "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
7688          "items": {
7689            "type": "string"
7690          },
7691          "type": "array"
7692        },
7693        "env": {
7694          "description": "List of environment variables to set in the container. Cannot be updated.",
7695          "items": {
7696            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
7697          },
7698          "type": "array",
7699          "x-kubernetes-patch-merge-key": "name",
7700          "x-kubernetes-patch-strategy": "merge"
7701        },
7702        "envFrom": {
7703          "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.",
7704          "items": {
7705            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
7706          },
7707          "type": "array"
7708        },
7709        "image": {
7710          "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
7711          "type": "string"
7712        },
7713        "imagePullPolicy": {
7714          "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",
7715          "type": "string"
7716        },
7717        "lifecycle": {
7718          "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
7719          "description": "Lifecycle is not allowed for ephemeral containers."
7720        },
7721        "livenessProbe": {
7722          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
7723          "description": "Probes are not allowed for ephemeral containers."
7724        },
7725        "name": {
7726          "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
7727          "type": "string"
7728        },
7729        "ports": {
7730          "description": "Ports are not allowed for ephemeral containers.",
7731          "items": {
7732            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort"
7733          },
7734          "type": "array"
7735        },
7736        "readinessProbe": {
7737          "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
7738          "description": "Probes are not allowed for ephemeral containers."
7739        },
7740        "resources": {
7741          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
7742          "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
7743        },
7744        "securityContext": {
7745          "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
7746          "description": "SecurityContext is not allowed for ephemeral containers."
7747        },
7748        "stdin": {
7749          "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.",
7750          "type": "boolean"
7751        },
7752        "stdinOnce": {
7753          "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",
7754          "type": "boolean"
7755        },
7756        "targetContainerName": {
7757          "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.",
7758          "type": "string"
7759        },
7760        "terminationMessagePath": {
7761          "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.",
7762          "type": "string"
7763        },
7764        "terminationMessagePolicy": {
7765          "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.",
7766          "type": "string"
7767        },
7768        "tty": {
7769          "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
7770          "type": "boolean"
7771        },
7772        "volumeDevices": {
7773          "description": "volumeDevices is the list of block devices to be used by the container. This is a beta feature.",
7774          "items": {
7775            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice"
7776          },
7777          "type": "array",
7778          "x-kubernetes-patch-merge-key": "devicePath",
7779          "x-kubernetes-patch-strategy": "merge"
7780        },
7781        "volumeMounts": {
7782          "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
7783          "items": {
7784            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
7785          },
7786          "type": "array",
7787          "x-kubernetes-patch-merge-key": "mountPath",
7788          "x-kubernetes-patch-strategy": "merge"
7789        },
7790        "workingDir": {
7791          "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.",
7792          "type": "string"
7793        }
7794      },
7795      "required": [
7796        "name"
7797      ],
7798      "type": "object"
7799    },
7800    "io.k8s.api.core.v1.Event": {
7801      "description": "Event is a report of an event somewhere in the cluster.",
7802      "properties": {
7803        "action": {
7804          "description": "What action was taken/failed regarding to the Regarding object.",
7805          "type": "string"
7806        },
7807        "apiVersion": {
7808          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
7809          "type": "string"
7810        },
7811        "count": {
7812          "description": "The number of times this event has occurred.",
7813          "format": "int32",
7814          "type": "integer"
7815        },
7816        "eventTime": {
7817          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
7818          "description": "Time when this Event was first observed."
7819        },
7820        "firstTimestamp": {
7821          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7822          "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)"
7823        },
7824        "involvedObject": {
7825          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
7826          "description": "The object that this event is about."
7827        },
7828        "kind": {
7829          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
7830          "type": "string"
7831        },
7832        "lastTimestamp": {
7833          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
7834          "description": "The time at which the most recent occurrence of this event was recorded."
7835        },
7836        "message": {
7837          "description": "A human-readable description of the status of this operation.",
7838          "type": "string"
7839        },
7840        "metadata": {
7841          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
7842          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
7843        },
7844        "reason": {
7845          "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
7846          "type": "string"
7847        },
7848        "related": {
7849          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
7850          "description": "Optional secondary object for more complex actions."
7851        },
7852        "reportingComponent": {
7853          "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
7854          "type": "string"
7855        },
7856        "reportingInstance": {
7857          "description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
7858          "type": "string"
7859        },
7860        "series": {
7861          "$ref": "#/definitions/io.k8s.api.core.v1.EventSeries",
7862          "description": "Data about the Event series this event represents or nil if it's a singleton Event."
7863        },
7864        "source": {
7865          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
7866          "description": "The component reporting this event. Should be a short machine understandable string."
7867        },
7868        "type": {
7869          "description": "Type of this event (Normal, Warning), new types could be added in the future",
7870          "type": "string"
7871        }
7872      },
7873      "required": [
7874        "metadata",
7875        "involvedObject"
7876      ],
7877      "type": "object",
7878      "x-kubernetes-group-version-kind": [
7879        {
7880          "group": "",
7881          "kind": "Event",
7882          "version": "v1"
7883        }
7884      ]
7885    },
7886    "io.k8s.api.core.v1.EventList": {
7887      "description": "EventList is a list of events.",
7888      "properties": {
7889        "apiVersion": {
7890          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
7891          "type": "string"
7892        },
7893        "items": {
7894          "description": "List of events",
7895          "items": {
7896            "$ref": "#/definitions/io.k8s.api.core.v1.Event"
7897          },
7898          "type": "array"
7899        },
7900        "kind": {
7901          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
7902          "type": "string"
7903        },
7904        "metadata": {
7905          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
7906          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
7907        }
7908      },
7909      "required": [
7910        "items"
7911      ],
7912      "type": "object",
7913      "x-kubernetes-group-version-kind": [
7914        {
7915          "group": "",
7916          "kind": "EventList",
7917          "version": "v1"
7918        }
7919      ]
7920    },
7921    "io.k8s.api.core.v1.EventSeries": {
7922      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
7923      "properties": {
7924        "count": {
7925          "description": "Number of occurrences in this series up to the last heartbeat time",
7926          "format": "int32",
7927          "type": "integer"
7928        },
7929        "lastObservedTime": {
7930          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
7931          "description": "Time of the last occurrence observed"
7932        },
7933        "state": {
7934          "description": "State of this Series: Ongoing or Finished Deprecated. Planned removal for 1.18",
7935          "type": "string"
7936        }
7937      },
7938      "type": "object"
7939    },
7940    "io.k8s.api.core.v1.EventSource": {
7941      "description": "EventSource contains information for an event.",
7942      "properties": {
7943        "component": {
7944          "description": "Component from which the event is generated.",
7945          "type": "string"
7946        },
7947        "host": {
7948          "description": "Node name on which the event is generated.",
7949          "type": "string"
7950        }
7951      },
7952      "type": "object"
7953    },
7954    "io.k8s.api.core.v1.ExecAction": {
7955      "description": "ExecAction describes a \"run in container\" action.",
7956      "properties": {
7957        "command": {
7958          "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.",
7959          "items": {
7960            "type": "string"
7961          },
7962          "type": "array"
7963        }
7964      },
7965      "type": "object"
7966    },
7967    "io.k8s.api.core.v1.FCVolumeSource": {
7968      "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.",
7969      "properties": {
7970        "fsType": {
7971          "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.",
7972          "type": "string"
7973        },
7974        "lun": {
7975          "description": "Optional: FC target lun number",
7976          "format": "int32",
7977          "type": "integer"
7978        },
7979        "readOnly": {
7980          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
7981          "type": "boolean"
7982        },
7983        "targetWWNs": {
7984          "description": "Optional: FC target worldwide names (WWNs)",
7985          "items": {
7986            "type": "string"
7987          },
7988          "type": "array"
7989        },
7990        "wwids": {
7991          "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
7992          "items": {
7993            "type": "string"
7994          },
7995          "type": "array"
7996        }
7997      },
7998      "type": "object"
7999    },
8000    "io.k8s.api.core.v1.FlexPersistentVolumeSource": {
8001      "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
8002      "properties": {
8003        "driver": {
8004          "description": "Driver is the name of the driver to use for this volume.",
8005          "type": "string"
8006        },
8007        "fsType": {
8008          "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.",
8009          "type": "string"
8010        },
8011        "options": {
8012          "additionalProperties": {
8013            "type": "string"
8014          },
8015          "description": "Optional: Extra command options if any.",
8016          "type": "object"
8017        },
8018        "readOnly": {
8019          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
8020          "type": "boolean"
8021        },
8022        "secretRef": {
8023          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
8024          "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."
8025        }
8026      },
8027      "required": [
8028        "driver"
8029      ],
8030      "type": "object"
8031    },
8032    "io.k8s.api.core.v1.FlexVolumeSource": {
8033      "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
8034      "properties": {
8035        "driver": {
8036          "description": "Driver is the name of the driver to use for this volume.",
8037          "type": "string"
8038        },
8039        "fsType": {
8040          "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.",
8041          "type": "string"
8042        },
8043        "options": {
8044          "additionalProperties": {
8045            "type": "string"
8046          },
8047          "description": "Optional: Extra command options if any.",
8048          "type": "object"
8049        },
8050        "readOnly": {
8051          "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
8052          "type": "boolean"
8053        },
8054        "secretRef": {
8055          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
8056          "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."
8057        }
8058      },
8059      "required": [
8060        "driver"
8061      ],
8062      "type": "object"
8063    },
8064    "io.k8s.api.core.v1.FlockerVolumeSource": {
8065      "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.",
8066      "properties": {
8067        "datasetName": {
8068          "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
8069          "type": "string"
8070        },
8071        "datasetUUID": {
8072          "description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
8073          "type": "string"
8074        }
8075      },
8076      "type": "object"
8077    },
8078    "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": {
8079      "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.",
8080      "properties": {
8081        "fsType": {
8082          "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",
8083          "type": "string"
8084        },
8085        "partition": {
8086          "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",
8087          "format": "int32",
8088          "type": "integer"
8089        },
8090        "pdName": {
8091          "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",
8092          "type": "string"
8093        },
8094        "readOnly": {
8095          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
8096          "type": "boolean"
8097        }
8098      },
8099      "required": [
8100        "pdName"
8101      ],
8102      "type": "object"
8103    },
8104    "io.k8s.api.core.v1.GitRepoVolumeSource": {
8105      "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.",
8106      "properties": {
8107        "directory": {
8108          "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.",
8109          "type": "string"
8110        },
8111        "repository": {
8112          "description": "Repository URL",
8113          "type": "string"
8114        },
8115        "revision": {
8116          "description": "Commit hash for the specified revision.",
8117          "type": "string"
8118        }
8119      },
8120      "required": [
8121        "repository"
8122      ],
8123      "type": "object"
8124    },
8125    "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": {
8126      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
8127      "properties": {
8128        "endpoints": {
8129          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8130          "type": "string"
8131        },
8132        "endpointsNamespace": {
8133          "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://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8134          "type": "string"
8135        },
8136        "path": {
8137          "description": "Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8138          "type": "string"
8139        },
8140        "readOnly": {
8141          "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8142          "type": "boolean"
8143        }
8144      },
8145      "required": [
8146        "endpoints",
8147        "path"
8148      ],
8149      "type": "object"
8150    },
8151    "io.k8s.api.core.v1.GlusterfsVolumeSource": {
8152      "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
8153      "properties": {
8154        "endpoints": {
8155          "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8156          "type": "string"
8157        },
8158        "path": {
8159          "description": "Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8160          "type": "string"
8161        },
8162        "readOnly": {
8163          "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod",
8164          "type": "boolean"
8165        }
8166      },
8167      "required": [
8168        "endpoints",
8169        "path"
8170      ],
8171      "type": "object"
8172    },
8173    "io.k8s.api.core.v1.HTTPGetAction": {
8174      "description": "HTTPGetAction describes an action based on HTTP Get requests.",
8175      "properties": {
8176        "host": {
8177          "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
8178          "type": "string"
8179        },
8180        "httpHeaders": {
8181          "description": "Custom headers to set in the request. HTTP allows repeated headers.",
8182          "items": {
8183            "$ref": "#/definitions/io.k8s.api.core.v1.HTTPHeader"
8184          },
8185          "type": "array"
8186        },
8187        "path": {
8188          "description": "Path to access on the HTTP server.",
8189          "type": "string"
8190        },
8191        "port": {
8192          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
8193          "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."
8194        },
8195        "scheme": {
8196          "description": "Scheme to use for connecting to the host. Defaults to HTTP.",
8197          "type": "string"
8198        }
8199      },
8200      "required": [
8201        "port"
8202      ],
8203      "type": "object"
8204    },
8205    "io.k8s.api.core.v1.HTTPHeader": {
8206      "description": "HTTPHeader describes a custom header to be used in HTTP probes",
8207      "properties": {
8208        "name": {
8209          "description": "The header field name",
8210          "type": "string"
8211        },
8212        "value": {
8213          "description": "The header field value",
8214          "type": "string"
8215        }
8216      },
8217      "required": [
8218        "name",
8219        "value"
8220      ],
8221      "type": "object"
8222    },
8223    "io.k8s.api.core.v1.Handler": {
8224      "description": "Handler defines a specific action that should be taken",
8225      "properties": {
8226        "exec": {
8227          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
8228          "description": "One and only one of the following should be specified. Exec specifies the action to take."
8229        },
8230        "httpGet": {
8231          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
8232          "description": "HTTPGet specifies the http request to perform."
8233        },
8234        "tcpSocket": {
8235          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
8236          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
8237        }
8238      },
8239      "type": "object"
8240    },
8241    "io.k8s.api.core.v1.HostAlias": {
8242      "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
8243      "properties": {
8244        "hostnames": {
8245          "description": "Hostnames for the above IP address.",
8246          "items": {
8247            "type": "string"
8248          },
8249          "type": "array"
8250        },
8251        "ip": {
8252          "description": "IP address of the host file entry.",
8253          "type": "string"
8254        }
8255      },
8256      "type": "object"
8257    },
8258    "io.k8s.api.core.v1.HostPathVolumeSource": {
8259      "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
8260      "properties": {
8261        "path": {
8262          "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",
8263          "type": "string"
8264        },
8265        "type": {
8266          "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
8267          "type": "string"
8268        }
8269      },
8270      "required": [
8271        "path"
8272      ],
8273      "type": "object"
8274    },
8275    "io.k8s.api.core.v1.ISCSIPersistentVolumeSource": {
8276      "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
8277      "properties": {
8278        "chapAuthDiscovery": {
8279          "description": "whether support iSCSI Discovery CHAP authentication",
8280          "type": "boolean"
8281        },
8282        "chapAuthSession": {
8283          "description": "whether support iSCSI Session CHAP authentication",
8284          "type": "boolean"
8285        },
8286        "fsType": {
8287          "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",
8288          "type": "string"
8289        },
8290        "initiatorName": {
8291          "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.",
8292          "type": "string"
8293        },
8294        "iqn": {
8295          "description": "Target iSCSI Qualified Name.",
8296          "type": "string"
8297        },
8298        "iscsiInterface": {
8299          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
8300          "type": "string"
8301        },
8302        "lun": {
8303          "description": "iSCSI Target Lun number.",
8304          "format": "int32",
8305          "type": "integer"
8306        },
8307        "portals": {
8308          "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).",
8309          "items": {
8310            "type": "string"
8311          },
8312          "type": "array"
8313        },
8314        "readOnly": {
8315          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
8316          "type": "boolean"
8317        },
8318        "secretRef": {
8319          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
8320          "description": "CHAP Secret for iSCSI target and initiator authentication"
8321        },
8322        "targetPortal": {
8323          "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).",
8324          "type": "string"
8325        }
8326      },
8327      "required": [
8328        "targetPortal",
8329        "iqn",
8330        "lun"
8331      ],
8332      "type": "object"
8333    },
8334    "io.k8s.api.core.v1.ISCSIVolumeSource": {
8335      "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
8336      "properties": {
8337        "chapAuthDiscovery": {
8338          "description": "whether support iSCSI Discovery CHAP authentication",
8339          "type": "boolean"
8340        },
8341        "chapAuthSession": {
8342          "description": "whether support iSCSI Session CHAP authentication",
8343          "type": "boolean"
8344        },
8345        "fsType": {
8346          "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",
8347          "type": "string"
8348        },
8349        "initiatorName": {
8350          "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.",
8351          "type": "string"
8352        },
8353        "iqn": {
8354          "description": "Target iSCSI Qualified Name.",
8355          "type": "string"
8356        },
8357        "iscsiInterface": {
8358          "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
8359          "type": "string"
8360        },
8361        "lun": {
8362          "description": "iSCSI Target Lun number.",
8363          "format": "int32",
8364          "type": "integer"
8365        },
8366        "portals": {
8367          "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).",
8368          "items": {
8369            "type": "string"
8370          },
8371          "type": "array"
8372        },
8373        "readOnly": {
8374          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
8375          "type": "boolean"
8376        },
8377        "secretRef": {
8378          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
8379          "description": "CHAP Secret for iSCSI target and initiator authentication"
8380        },
8381        "targetPortal": {
8382          "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).",
8383          "type": "string"
8384        }
8385      },
8386      "required": [
8387        "targetPortal",
8388        "iqn",
8389        "lun"
8390      ],
8391      "type": "object"
8392    },
8393    "io.k8s.api.core.v1.KeyToPath": {
8394      "description": "Maps a string key to a path within a volume.",
8395      "properties": {
8396        "key": {
8397          "description": "The key to project.",
8398          "type": "string"
8399        },
8400        "mode": {
8401          "description": "Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
8402          "format": "int32",
8403          "type": "integer"
8404        },
8405        "path": {
8406          "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 '..'.",
8407          "type": "string"
8408        }
8409      },
8410      "required": [
8411        "key",
8412        "path"
8413      ],
8414      "type": "object"
8415    },
8416    "io.k8s.api.core.v1.Lifecycle": {
8417      "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.",
8418      "properties": {
8419        "postStart": {
8420          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
8421          "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"
8422        },
8423        "preStop": {
8424          "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
8425          "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness 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"
8426        }
8427      },
8428      "type": "object"
8429    },
8430    "io.k8s.api.core.v1.LimitRange": {
8431      "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
8432      "properties": {
8433        "apiVersion": {
8434          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
8435          "type": "string"
8436        },
8437        "kind": {
8438          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
8439          "type": "string"
8440        },
8441        "metadata": {
8442          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8443          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
8444        },
8445        "spec": {
8446          "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeSpec",
8447          "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
8448        }
8449      },
8450      "type": "object",
8451      "x-kubernetes-group-version-kind": [
8452        {
8453          "group": "",
8454          "kind": "LimitRange",
8455          "version": "v1"
8456        }
8457      ]
8458    },
8459    "io.k8s.api.core.v1.LimitRangeItem": {
8460      "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
8461      "properties": {
8462        "default": {
8463          "additionalProperties": {
8464            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8465          },
8466          "description": "Default resource requirement limit value by resource name if resource limit is omitted.",
8467          "type": "object"
8468        },
8469        "defaultRequest": {
8470          "additionalProperties": {
8471            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8472          },
8473          "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
8474          "type": "object"
8475        },
8476        "max": {
8477          "additionalProperties": {
8478            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8479          },
8480          "description": "Max usage constraints on this kind by resource name.",
8481          "type": "object"
8482        },
8483        "maxLimitRequestRatio": {
8484          "additionalProperties": {
8485            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8486          },
8487          "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.",
8488          "type": "object"
8489        },
8490        "min": {
8491          "additionalProperties": {
8492            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
8493          },
8494          "description": "Min usage constraints on this kind by resource name.",
8495          "type": "object"
8496        },
8497        "type": {
8498          "description": "Type of resource that this limit applies to.",
8499          "type": "string"
8500        }
8501      },
8502      "type": "object"
8503    },
8504    "io.k8s.api.core.v1.LimitRangeList": {
8505      "description": "LimitRangeList is a list of LimitRange items.",
8506      "properties": {
8507        "apiVersion": {
8508          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
8509          "type": "string"
8510        },
8511        "items": {
8512          "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
8513          "items": {
8514            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
8515          },
8516          "type": "array"
8517        },
8518        "kind": {
8519          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
8520          "type": "string"
8521        },
8522        "metadata": {
8523          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8524          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
8525        }
8526      },
8527      "required": [
8528        "items"
8529      ],
8530      "type": "object",
8531      "x-kubernetes-group-version-kind": [
8532        {
8533          "group": "",
8534          "kind": "LimitRangeList",
8535          "version": "v1"
8536        }
8537      ]
8538    },
8539    "io.k8s.api.core.v1.LimitRangeSpec": {
8540      "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
8541      "properties": {
8542        "limits": {
8543          "description": "Limits is the list of LimitRangeItem objects that are enforced.",
8544          "items": {
8545            "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeItem"
8546          },
8547          "type": "array"
8548        }
8549      },
8550      "required": [
8551        "limits"
8552      ],
8553      "type": "object"
8554    },
8555    "io.k8s.api.core.v1.LoadBalancerIngress": {
8556      "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
8557      "properties": {
8558        "hostname": {
8559          "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
8560          "type": "string"
8561        },
8562        "ip": {
8563          "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
8564          "type": "string"
8565        }
8566      },
8567      "type": "object"
8568    },
8569    "io.k8s.api.core.v1.LoadBalancerStatus": {
8570      "description": "LoadBalancerStatus represents the status of a load-balancer.",
8571      "properties": {
8572        "ingress": {
8573          "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
8574          "items": {
8575            "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerIngress"
8576          },
8577          "type": "array"
8578        }
8579      },
8580      "type": "object"
8581    },
8582    "io.k8s.api.core.v1.LocalObjectReference": {
8583      "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
8584      "properties": {
8585        "name": {
8586          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
8587          "type": "string"
8588        }
8589      },
8590      "type": "object"
8591    },
8592    "io.k8s.api.core.v1.LocalVolumeSource": {
8593      "description": "Local represents directly-attached storage with node affinity (Beta feature)",
8594      "properties": {
8595        "fsType": {
8596          "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.",
8597          "type": "string"
8598        },
8599        "path": {
8600          "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
8601          "type": "string"
8602        }
8603      },
8604      "required": [
8605        "path"
8606      ],
8607      "type": "object"
8608    },
8609    "io.k8s.api.core.v1.NFSVolumeSource": {
8610      "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
8611      "properties": {
8612        "path": {
8613          "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
8614          "type": "string"
8615        },
8616        "readOnly": {
8617          "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",
8618          "type": "boolean"
8619        },
8620        "server": {
8621          "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
8622          "type": "string"
8623        }
8624      },
8625      "required": [
8626        "server",
8627        "path"
8628      ],
8629      "type": "object"
8630    },
8631    "io.k8s.api.core.v1.Namespace": {
8632      "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
8633      "properties": {
8634        "apiVersion": {
8635          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
8636          "type": "string"
8637        },
8638        "kind": {
8639          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
8640          "type": "string"
8641        },
8642        "metadata": {
8643          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8644          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
8645        },
8646        "spec": {
8647          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceSpec",
8648          "description": "Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
8649        },
8650        "status": {
8651          "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceStatus",
8652          "description": "Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
8653        }
8654      },
8655      "type": "object",
8656      "x-kubernetes-group-version-kind": [
8657        {
8658          "group": "",
8659          "kind": "Namespace",
8660          "version": "v1"
8661        }
8662      ]
8663    },
8664    "io.k8s.api.core.v1.NamespaceList": {
8665      "description": "NamespaceList is a list of Namespaces.",
8666      "properties": {
8667        "apiVersion": {
8668          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
8669          "type": "string"
8670        },
8671        "items": {
8672          "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
8673          "items": {
8674            "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
8675          },
8676          "type": "array"
8677        },
8678        "kind": {
8679          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
8680          "type": "string"
8681        },
8682        "metadata": {
8683          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8684          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
8685        }
8686      },
8687      "required": [
8688        "items"
8689      ],
8690      "type": "object",
8691      "x-kubernetes-group-version-kind": [
8692        {
8693          "group": "",
8694          "kind": "NamespaceList",
8695          "version": "v1"
8696        }
8697      ]
8698    },
8699    "io.k8s.api.core.v1.NamespaceSpec": {
8700      "description": "NamespaceSpec describes the attributes on a Namespace.",
8701      "properties": {
8702        "finalizers": {
8703          "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/",
8704          "items": {
8705            "type": "string"
8706          },
8707          "type": "array"
8708        }
8709      },
8710      "type": "object"
8711    },
8712    "io.k8s.api.core.v1.NamespaceStatus": {
8713      "description": "NamespaceStatus is information about the current status of a Namespace.",
8714      "properties": {
8715        "phase": {
8716          "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
8717          "type": "string"
8718        }
8719      },
8720      "type": "object"
8721    },
8722    "io.k8s.api.core.v1.Node": {
8723      "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).",
8724      "properties": {
8725        "apiVersion": {
8726          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
8727          "type": "string"
8728        },
8729        "kind": {
8730          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
8731          "type": "string"
8732        },
8733        "metadata": {
8734          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
8735          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
8736        },
8737        "spec": {
8738          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSpec",
8739          "description": "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
8740        },
8741        "status": {
8742          "$ref": "#/definitions/io.k8s.api.core.v1.NodeStatus",
8743          "description": "Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
8744        }
8745      },
8746      "type": "object",
8747      "x-kubernetes-group-version-kind": [
8748        {
8749          "group": "",
8750          "kind": "Node",
8751          "version": "v1"
8752        }
8753      ]
8754    },
8755    "io.k8s.api.core.v1.NodeAddress": {
8756      "description": "NodeAddress contains information for the node's address.",
8757      "properties": {
8758        "address": {
8759          "description": "The node address.",
8760          "type": "string"
8761        },
8762        "type": {
8763          "description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
8764          "type": "string"
8765        }
8766      },
8767      "required": [
8768        "type",
8769        "address"
8770      ],
8771      "type": "object"
8772    },
8773    "io.k8s.api.core.v1.NodeAffinity": {
8774      "description": "Node affinity is a group of node affinity scheduling rules.",
8775      "properties": {
8776        "preferredDuringSchedulingIgnoredDuringExecution": {
8777          "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.",
8778          "items": {
8779            "$ref": "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm"
8780          },
8781          "type": "array"
8782        },
8783        "requiredDuringSchedulingIgnoredDuringExecution": {
8784          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
8785          "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."
8786        }
8787      },
8788      "type": "object"
8789    },
8790    "io.k8s.api.core.v1.NodeCondition": {
8791      "description": "NodeCondition contains condition information for a node.",
8792      "properties": {
8793        "lastHeartbeatTime": {
8794          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8795          "description": "Last time we got an update on a given condition."
8796        },
8797        "lastTransitionTime": {
8798          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
8799          "description": "Last time the condition transit from one status to another."
8800        },
8801        "message": {
8802          "description": "Human readable message indicating details about last transition.",
8803          "type": "string"
8804        },
8805        "reason": {
8806          "description": "(brief) reason for the condition's last transition.",
8807          "type": "string"
8808        },
8809        "status": {
8810          "description": "Status of the condition, one of True, False, Unknown.",
8811          "type": "string"
8812        },
8813        "type": {
8814          "description": "Type of node condition.",
8815          "type": "string"
8816        }
8817      },
8818      "required": [
8819        "type",
8820        "status"
8821      ],
8822      "type": "object"
8823    },
8824    "io.k8s.api.core.v1.NodeConfigSource": {
8825      "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.",
8826      "properties": {
8827        "configMap": {
8828          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapNodeConfigSource",
8829          "description": "ConfigMap is a reference to a Node's ConfigMap"
8830        }
8831      },
8832      "type": "object"
8833    },
8834    "io.k8s.api.core.v1.NodeConfigStatus": {
8835      "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.",
8836      "properties": {
8837        "active": {
8838          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
8839          "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."
8840        },
8841        "assigned": {
8842          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
8843          "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."
8844        },
8845        "error": {
8846          "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.",
8847          "type": "string"
8848        },
8849        "lastKnownGood": {
8850          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
8851          "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."
8852        }
8853      },
8854      "type": "object"
8855    },
8856    "io.k8s.api.core.v1.NodeDaemonEndpoints": {
8857      "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
8858      "properties": {
8859        "kubeletEndpoint": {
8860          "$ref": "#/definitions/io.k8s.api.core.v1.DaemonEndpoint",
8861          "description": "Endpoint on which Kubelet is listening."
8862        }
8863      },
8864      "type": "object"
8865    },
8866    "io.k8s.api.core.v1.NodeList": {
8867      "description": "NodeList is the whole list of all Nodes which have been registered with master.",
8868      "properties": {
8869        "apiVersion": {
8870          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
8871          "type": "string"
8872        },
8873        "items": {
8874          "description": "List of nodes",
8875          "items": {
8876            "$ref": "#/definitions/io.k8s.api.core.v1.Node"
8877          },
8878          "type": "array"
8879        },
8880        "kind": {
8881          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
8882          "type": "string"
8883        },
8884        "metadata": {
8885          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
8886          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
8887        }
8888      },
8889      "required": [
8890        "items"
8891      ],
8892      "type": "object",
8893      "x-kubernetes-group-version-kind": [
8894        {
8895          "group": "",
8896          "kind": "NodeList",
8897          "version": "v1"
8898        }
8899      ]
8900    },
8901    "io.k8s.api.core.v1.NodeSelector": {
8902      "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.",
8903      "properties": {
8904        "nodeSelectorTerms": {
8905          "description": "Required. A list of node selector terms. The terms are ORed.",
8906          "items": {
8907            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm"
8908          },
8909          "type": "array"
8910        }
8911      },
8912      "required": [
8913        "nodeSelectorTerms"
8914      ],
8915      "type": "object"
8916    },
8917    "io.k8s.api.core.v1.NodeSelectorRequirement": {
8918      "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
8919      "properties": {
8920        "key": {
8921          "description": "The label key that the selector applies to.",
8922          "type": "string"
8923        },
8924        "operator": {
8925          "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
8926          "type": "string"
8927        },
8928        "values": {
8929          "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.",
8930          "items": {
8931            "type": "string"
8932          },
8933          "type": "array"
8934        }
8935      },
8936      "required": [
8937        "key",
8938        "operator"
8939      ],
8940      "type": "object"
8941    },
8942    "io.k8s.api.core.v1.NodeSelectorTerm": {
8943      "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.",
8944      "properties": {
8945        "matchExpressions": {
8946          "description": "A list of node selector requirements by node's labels.",
8947          "items": {
8948            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
8949          },
8950          "type": "array"
8951        },
8952        "matchFields": {
8953          "description": "A list of node selector requirements by node's fields.",
8954          "items": {
8955            "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
8956          },
8957          "type": "array"
8958        }
8959      },
8960      "type": "object"
8961    },
8962    "io.k8s.api.core.v1.NodeSpec": {
8963      "description": "NodeSpec describes the attributes that a node is created with.",
8964      "properties": {
8965        "configSource": {
8966          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
8967          "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field"
8968        },
8969        "externalID": {
8970          "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966",
8971          "type": "string"
8972        },
8973        "podCIDR": {
8974          "description": "PodCIDR represents the pod IP range assigned to the node.",
8975          "type": "string"
8976        },
8977        "podCIDRs": {
8978          "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.",
8979          "items": {
8980            "type": "string"
8981          },
8982          "type": "array",
8983          "x-kubernetes-patch-strategy": "merge"
8984        },
8985        "providerID": {
8986          "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
8987          "type": "string"
8988        },
8989        "taints": {
8990          "description": "If specified, the node's taints.",
8991          "items": {
8992            "$ref": "#/definitions/io.k8s.api.core.v1.Taint"
8993          },
8994          "type": "array"
8995        },
8996        "unschedulable": {
8997          "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",
8998          "type": "boolean"
8999        }
9000      },
9001      "type": "object"
9002    },
9003    "io.k8s.api.core.v1.NodeStatus": {
9004      "description": "NodeStatus is information about the current status of a node.",
9005      "properties": {
9006        "addresses": {
9007          "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.",
9008          "items": {
9009            "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
9010          },
9011          "type": "array",
9012          "x-kubernetes-patch-merge-key": "type",
9013          "x-kubernetes-patch-strategy": "merge"
9014        },
9015        "allocatable": {
9016          "additionalProperties": {
9017            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9018          },
9019          "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
9020          "type": "object"
9021        },
9022        "capacity": {
9023          "additionalProperties": {
9024            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9025          },
9026          "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
9027          "type": "object"
9028        },
9029        "conditions": {
9030          "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition",
9031          "items": {
9032            "$ref": "#/definitions/io.k8s.api.core.v1.NodeCondition"
9033          },
9034          "type": "array",
9035          "x-kubernetes-patch-merge-key": "type",
9036          "x-kubernetes-patch-strategy": "merge"
9037        },
9038        "config": {
9039          "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigStatus",
9040          "description": "Status of the config assigned to the node via the dynamic Kubelet config feature."
9041        },
9042        "daemonEndpoints": {
9043          "$ref": "#/definitions/io.k8s.api.core.v1.NodeDaemonEndpoints",
9044          "description": "Endpoints of daemons running on the Node."
9045        },
9046        "images": {
9047          "description": "List of container images on this node",
9048          "items": {
9049            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerImage"
9050          },
9051          "type": "array"
9052        },
9053        "nodeInfo": {
9054          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSystemInfo",
9055          "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info"
9056        },
9057        "phase": {
9058          "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.",
9059          "type": "string"
9060        },
9061        "volumesAttached": {
9062          "description": "List of volumes that are attached to the node.",
9063          "items": {
9064            "$ref": "#/definitions/io.k8s.api.core.v1.AttachedVolume"
9065          },
9066          "type": "array"
9067        },
9068        "volumesInUse": {
9069          "description": "List of attachable volumes in use (mounted) by the node.",
9070          "items": {
9071            "type": "string"
9072          },
9073          "type": "array"
9074        }
9075      },
9076      "type": "object"
9077    },
9078    "io.k8s.api.core.v1.NodeSystemInfo": {
9079      "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
9080      "properties": {
9081        "architecture": {
9082          "description": "The Architecture reported by the node",
9083          "type": "string"
9084        },
9085        "bootID": {
9086          "description": "Boot ID reported by the node.",
9087          "type": "string"
9088        },
9089        "containerRuntimeVersion": {
9090          "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).",
9091          "type": "string"
9092        },
9093        "kernelVersion": {
9094          "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
9095          "type": "string"
9096        },
9097        "kubeProxyVersion": {
9098          "description": "KubeProxy Version reported by the node.",
9099          "type": "string"
9100        },
9101        "kubeletVersion": {
9102          "description": "Kubelet Version reported by the node.",
9103          "type": "string"
9104        },
9105        "machineID": {
9106          "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",
9107          "type": "string"
9108        },
9109        "operatingSystem": {
9110          "description": "The Operating System reported by the node",
9111          "type": "string"
9112        },
9113        "osImage": {
9114          "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
9115          "type": "string"
9116        },
9117        "systemUUID": {
9118          "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html",
9119          "type": "string"
9120        }
9121      },
9122      "required": [
9123        "machineID",
9124        "systemUUID",
9125        "bootID",
9126        "kernelVersion",
9127        "osImage",
9128        "containerRuntimeVersion",
9129        "kubeletVersion",
9130        "kubeProxyVersion",
9131        "operatingSystem",
9132        "architecture"
9133      ],
9134      "type": "object"
9135    },
9136    "io.k8s.api.core.v1.ObjectFieldSelector": {
9137      "description": "ObjectFieldSelector selects an APIVersioned field of an object.",
9138      "properties": {
9139        "apiVersion": {
9140          "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
9141          "type": "string"
9142        },
9143        "fieldPath": {
9144          "description": "Path of the field to select in the specified API version.",
9145          "type": "string"
9146        }
9147      },
9148      "required": [
9149        "fieldPath"
9150      ],
9151      "type": "object"
9152    },
9153    "io.k8s.api.core.v1.ObjectReference": {
9154      "description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
9155      "properties": {
9156        "apiVersion": {
9157          "description": "API version of the referent.",
9158          "type": "string"
9159        },
9160        "fieldPath": {
9161          "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.",
9162          "type": "string"
9163        },
9164        "kind": {
9165          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
9166          "type": "string"
9167        },
9168        "name": {
9169          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
9170          "type": "string"
9171        },
9172        "namespace": {
9173          "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
9174          "type": "string"
9175        },
9176        "resourceVersion": {
9177          "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency",
9178          "type": "string"
9179        },
9180        "uid": {
9181          "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
9182          "type": "string"
9183        }
9184      },
9185      "type": "object"
9186    },
9187    "io.k8s.api.core.v1.PersistentVolume": {
9188      "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",
9189      "properties": {
9190        "apiVersion": {
9191          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9192          "type": "string"
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/api-conventions.md#types-kinds",
9196          "type": "string"
9197        },
9198        "metadata": {
9199          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9200          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
9201        },
9202        "spec": {
9203          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
9204          "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"
9205        },
9206        "status": {
9207          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus",
9208          "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"
9209        }
9210      },
9211      "type": "object",
9212      "x-kubernetes-group-version-kind": [
9213        {
9214          "group": "",
9215          "kind": "PersistentVolume",
9216          "version": "v1"
9217        }
9218      ]
9219    },
9220    "io.k8s.api.core.v1.PersistentVolumeClaim": {
9221      "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume",
9222      "properties": {
9223        "apiVersion": {
9224          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9225          "type": "string"
9226        },
9227        "kind": {
9228          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
9229          "type": "string"
9230        },
9231        "metadata": {
9232          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9233          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
9234        },
9235        "spec": {
9236          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec",
9237          "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"
9238        },
9239        "status": {
9240          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus",
9241          "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"
9242        }
9243      },
9244      "type": "object",
9245      "x-kubernetes-group-version-kind": [
9246        {
9247          "group": "",
9248          "kind": "PersistentVolumeClaim",
9249          "version": "v1"
9250        }
9251      ]
9252    },
9253    "io.k8s.api.core.v1.PersistentVolumeClaimCondition": {
9254      "description": "PersistentVolumeClaimCondition contails details about state of pvc",
9255      "properties": {
9256        "lastProbeTime": {
9257          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9258          "description": "Last time we probed the condition."
9259        },
9260        "lastTransitionTime": {
9261          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9262          "description": "Last time the condition transitioned from one status to another."
9263        },
9264        "message": {
9265          "description": "Human-readable message indicating details about last transition.",
9266          "type": "string"
9267        },
9268        "reason": {
9269          "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.",
9270          "type": "string"
9271        },
9272        "status": {
9273          "type": "string"
9274        },
9275        "type": {
9276          "type": "string"
9277        }
9278      },
9279      "required": [
9280        "type",
9281        "status"
9282      ],
9283      "type": "object"
9284    },
9285    "io.k8s.api.core.v1.PersistentVolumeClaimList": {
9286      "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.",
9287      "properties": {
9288        "apiVersion": {
9289          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9290          "type": "string"
9291        },
9292        "items": {
9293          "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
9294          "items": {
9295            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
9296          },
9297          "type": "array"
9298        },
9299        "kind": {
9300          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
9301          "type": "string"
9302        },
9303        "metadata": {
9304          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9305          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
9306        }
9307      },
9308      "required": [
9309        "items"
9310      ],
9311      "type": "object",
9312      "x-kubernetes-group-version-kind": [
9313        {
9314          "group": "",
9315          "kind": "PersistentVolumeClaimList",
9316          "version": "v1"
9317        }
9318      ]
9319    },
9320    "io.k8s.api.core.v1.PersistentVolumeClaimSpec": {
9321      "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
9322      "properties": {
9323        "accessModes": {
9324          "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
9325          "items": {
9326            "type": "string"
9327          },
9328          "type": "array"
9329        },
9330        "dataSource": {
9331          "$ref": "#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference",
9332          "description": "This field requires the VolumeSnapshotDataSource alpha feature gate to be enabled and currently VolumeSnapshot is the only supported data source. If the provisioner can support VolumeSnapshot data source, it will create a new volume and data will be restored to the volume at the same time. If the provisioner does not support VolumeSnapshot data source, volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change."
9333        },
9334        "resources": {
9335          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements",
9336          "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources"
9337        },
9338        "selector": {
9339          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
9340          "description": "A label query over volumes to consider for binding."
9341        },
9342        "storageClassName": {
9343          "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
9344          "type": "string"
9345        },
9346        "volumeMode": {
9347          "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is a beta feature.",
9348          "type": "string"
9349        },
9350        "volumeName": {
9351          "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.",
9352          "type": "string"
9353        }
9354      },
9355      "type": "object"
9356    },
9357    "io.k8s.api.core.v1.PersistentVolumeClaimStatus": {
9358      "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
9359      "properties": {
9360        "accessModes": {
9361          "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",
9362          "items": {
9363            "type": "string"
9364          },
9365          "type": "array"
9366        },
9367        "capacity": {
9368          "additionalProperties": {
9369            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9370          },
9371          "description": "Represents the actual resources of the underlying volume.",
9372          "type": "object"
9373        },
9374        "conditions": {
9375          "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
9376          "items": {
9377            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition"
9378          },
9379          "type": "array",
9380          "x-kubernetes-patch-merge-key": "type",
9381          "x-kubernetes-patch-strategy": "merge"
9382        },
9383        "phase": {
9384          "description": "Phase represents the current phase of PersistentVolumeClaim.",
9385          "type": "string"
9386        }
9387      },
9388      "type": "object"
9389    },
9390    "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": {
9391      "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).",
9392      "properties": {
9393        "claimName": {
9394          "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",
9395          "type": "string"
9396        },
9397        "readOnly": {
9398          "description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
9399          "type": "boolean"
9400        }
9401      },
9402      "required": [
9403        "claimName"
9404      ],
9405      "type": "object"
9406    },
9407    "io.k8s.api.core.v1.PersistentVolumeList": {
9408      "description": "PersistentVolumeList is a list of PersistentVolume items.",
9409      "properties": {
9410        "apiVersion": {
9411          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9412          "type": "string"
9413        },
9414        "items": {
9415          "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes",
9416          "items": {
9417            "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
9418          },
9419          "type": "array"
9420        },
9421        "kind": {
9422          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
9423          "type": "string"
9424        },
9425        "metadata": {
9426          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9427          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
9428        }
9429      },
9430      "required": [
9431        "items"
9432      ],
9433      "type": "object",
9434      "x-kubernetes-group-version-kind": [
9435        {
9436          "group": "",
9437          "kind": "PersistentVolumeList",
9438          "version": "v1"
9439        }
9440      ]
9441    },
9442    "io.k8s.api.core.v1.PersistentVolumeSpec": {
9443      "description": "PersistentVolumeSpec is the specification of a persistent volume.",
9444      "properties": {
9445        "accessModes": {
9446          "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
9447          "items": {
9448            "type": "string"
9449          },
9450          "type": "array"
9451        },
9452        "awsElasticBlockStore": {
9453          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
9454          "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"
9455        },
9456        "azureDisk": {
9457          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
9458          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
9459        },
9460        "azureFile": {
9461          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
9462          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
9463        },
9464        "capacity": {
9465          "additionalProperties": {
9466            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9467          },
9468          "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
9469          "type": "object"
9470        },
9471        "cephfs": {
9472          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
9473          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
9474        },
9475        "cinder": {
9476          "$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
9477          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md"
9478        },
9479        "claimRef": {
9480          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
9481          "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"
9482        },
9483        "csi": {
9484          "$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource",
9485          "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
9486        },
9487        "fc": {
9488          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
9489          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
9490        },
9491        "flexVolume": {
9492          "$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource",
9493          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
9494        },
9495        "flocker": {
9496          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
9497          "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"
9498        },
9499        "gcePersistentDisk": {
9500          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
9501          "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"
9502        },
9503        "glusterfs": {
9504          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
9505          "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md"
9506        },
9507        "hostPath": {
9508          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
9509          "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"
9510        },
9511        "iscsi": {
9512          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
9513          "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."
9514        },
9515        "local": {
9516          "$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource",
9517          "description": "Local represents directly-attached storage with node affinity"
9518        },
9519        "mountOptions": {
9520          "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",
9521          "items": {
9522            "type": "string"
9523          },
9524          "type": "array"
9525        },
9526        "nfs": {
9527          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
9528          "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
9529        },
9530        "nodeAffinity": {
9531          "$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity",
9532          "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."
9533        },
9534        "persistentVolumeReclaimPolicy": {
9535          "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",
9536          "type": "string"
9537        },
9538        "photonPersistentDisk": {
9539          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
9540          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
9541        },
9542        "portworxVolume": {
9543          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
9544          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
9545        },
9546        "quobyte": {
9547          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
9548          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
9549        },
9550        "rbd": {
9551          "$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource",
9552          "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md"
9553        },
9554        "scaleIO": {
9555          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
9556          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
9557        },
9558        "storageClassName": {
9559          "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
9560          "type": "string"
9561        },
9562        "storageos": {
9563          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
9564          "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md"
9565        },
9566        "volumeMode": {
9567          "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is a beta feature.",
9568          "type": "string"
9569        },
9570        "vsphereVolume": {
9571          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
9572          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
9573        }
9574      },
9575      "type": "object"
9576    },
9577    "io.k8s.api.core.v1.PersistentVolumeStatus": {
9578      "description": "PersistentVolumeStatus is the current status of a persistent volume.",
9579      "properties": {
9580        "message": {
9581          "description": "A human-readable message indicating details about why the volume is in this state.",
9582          "type": "string"
9583        },
9584        "phase": {
9585          "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",
9586          "type": "string"
9587        },
9588        "reason": {
9589          "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
9590          "type": "string"
9591        }
9592      },
9593      "type": "object"
9594    },
9595    "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": {
9596      "description": "Represents a Photon Controller persistent disk resource.",
9597      "properties": {
9598        "fsType": {
9599          "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.",
9600          "type": "string"
9601        },
9602        "pdID": {
9603          "description": "ID that identifies Photon Controller persistent disk",
9604          "type": "string"
9605        }
9606      },
9607      "required": [
9608        "pdID"
9609      ],
9610      "type": "object"
9611    },
9612    "io.k8s.api.core.v1.Pod": {
9613      "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.",
9614      "properties": {
9615        "apiVersion": {
9616          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9617          "type": "string"
9618        },
9619        "kind": {
9620          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
9621          "type": "string"
9622        },
9623        "metadata": {
9624          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
9625          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
9626        },
9627        "spec": {
9628          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
9629          "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
9630        },
9631        "status": {
9632          "$ref": "#/definitions/io.k8s.api.core.v1.PodStatus",
9633          "description": "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
9634        }
9635      },
9636      "type": "object",
9637      "x-kubernetes-group-version-kind": [
9638        {
9639          "group": "",
9640          "kind": "Pod",
9641          "version": "v1"
9642        }
9643      ]
9644    },
9645    "io.k8s.api.core.v1.PodAffinity": {
9646      "description": "Pod affinity is a group of inter pod affinity scheduling rules.",
9647      "properties": {
9648        "preferredDuringSchedulingIgnoredDuringExecution": {
9649          "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.",
9650          "items": {
9651            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
9652          },
9653          "type": "array"
9654        },
9655        "requiredDuringSchedulingIgnoredDuringExecution": {
9656          "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.",
9657          "items": {
9658            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
9659          },
9660          "type": "array"
9661        }
9662      },
9663      "type": "object"
9664    },
9665    "io.k8s.api.core.v1.PodAffinityTerm": {
9666      "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",
9667      "properties": {
9668        "labelSelector": {
9669          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
9670          "description": "A label query over a set of resources, in this case pods."
9671        },
9672        "namespaces": {
9673          "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
9674          "items": {
9675            "type": "string"
9676          },
9677          "type": "array"
9678        },
9679        "topologyKey": {
9680          "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.",
9681          "type": "string"
9682        }
9683      },
9684      "required": [
9685        "topologyKey"
9686      ],
9687      "type": "object"
9688    },
9689    "io.k8s.api.core.v1.PodAntiAffinity": {
9690      "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
9691      "properties": {
9692        "preferredDuringSchedulingIgnoredDuringExecution": {
9693          "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.",
9694          "items": {
9695            "$ref": "#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm"
9696          },
9697          "type": "array"
9698        },
9699        "requiredDuringSchedulingIgnoredDuringExecution": {
9700          "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.",
9701          "items": {
9702            "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
9703          },
9704          "type": "array"
9705        }
9706      },
9707      "type": "object"
9708    },
9709    "io.k8s.api.core.v1.PodCondition": {
9710      "description": "PodCondition contains details for the current condition of this pod.",
9711      "properties": {
9712        "lastProbeTime": {
9713          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9714          "description": "Last time we probed the condition."
9715        },
9716        "lastTransitionTime": {
9717          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
9718          "description": "Last time the condition transitioned from one status to another."
9719        },
9720        "message": {
9721          "description": "Human-readable message indicating details about last transition.",
9722          "type": "string"
9723        },
9724        "reason": {
9725          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
9726          "type": "string"
9727        },
9728        "status": {
9729          "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",
9730          "type": "string"
9731        },
9732        "type": {
9733          "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
9734          "type": "string"
9735        }
9736      },
9737      "required": [
9738        "type",
9739        "status"
9740      ],
9741      "type": "object"
9742    },
9743    "io.k8s.api.core.v1.PodDNSConfig": {
9744      "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
9745      "properties": {
9746        "nameservers": {
9747          "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.",
9748          "items": {
9749            "type": "string"
9750          },
9751          "type": "array"
9752        },
9753        "options": {
9754          "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.",
9755          "items": {
9756            "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfigOption"
9757          },
9758          "type": "array"
9759        },
9760        "searches": {
9761          "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.",
9762          "items": {
9763            "type": "string"
9764          },
9765          "type": "array"
9766        }
9767      },
9768      "type": "object"
9769    },
9770    "io.k8s.api.core.v1.PodDNSConfigOption": {
9771      "description": "PodDNSConfigOption defines DNS resolver options of a pod.",
9772      "properties": {
9773        "name": {
9774          "description": "Required.",
9775          "type": "string"
9776        },
9777        "value": {
9778          "type": "string"
9779        }
9780      },
9781      "type": "object"
9782    },
9783    "io.k8s.api.core.v1.PodIP": {
9784      "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.",
9785      "properties": {
9786        "ip": {
9787          "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod",
9788          "type": "string"
9789        }
9790      },
9791      "type": "object"
9792    },
9793    "io.k8s.api.core.v1.PodList": {
9794      "description": "PodList is a list of Pods.",
9795      "properties": {
9796        "apiVersion": {
9797          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9798          "type": "string"
9799        },
9800        "items": {
9801          "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md",
9802          "items": {
9803            "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
9804          },
9805          "type": "array"
9806        },
9807        "kind": {
9808          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
9809          "type": "string"
9810        },
9811        "metadata": {
9812          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
9813          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
9814        }
9815      },
9816      "required": [
9817        "items"
9818      ],
9819      "type": "object",
9820      "x-kubernetes-group-version-kind": [
9821        {
9822          "group": "",
9823          "kind": "PodList",
9824          "version": "v1"
9825        }
9826      ]
9827    },
9828    "io.k8s.api.core.v1.PodReadinessGate": {
9829      "description": "PodReadinessGate contains the reference to a pod condition",
9830      "properties": {
9831        "conditionType": {
9832          "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
9833          "type": "string"
9834        }
9835      },
9836      "required": [
9837        "conditionType"
9838      ],
9839      "type": "object"
9840    },
9841    "io.k8s.api.core.v1.PodSecurityContext": {
9842      "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.",
9843      "properties": {
9844        "fsGroup": {
9845          "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.",
9846          "format": "int64",
9847          "type": "integer"
9848        },
9849        "runAsGroup": {
9850          "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.",
9851          "format": "int64",
9852          "type": "integer"
9853        },
9854        "runAsNonRoot": {
9855          "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.",
9856          "type": "boolean"
9857        },
9858        "runAsUser": {
9859          "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.",
9860          "format": "int64",
9861          "type": "integer"
9862        },
9863        "seLinuxOptions": {
9864          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
9865          "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."
9866        },
9867        "supplementalGroups": {
9868          "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.",
9869          "items": {
9870            "format": "int64",
9871            "type": "integer"
9872          },
9873          "type": "array"
9874        },
9875        "sysctls": {
9876          "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
9877          "items": {
9878            "$ref": "#/definitions/io.k8s.api.core.v1.Sysctl"
9879          },
9880          "type": "array"
9881        },
9882        "windowsOptions": {
9883          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
9884          "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."
9885        }
9886      },
9887      "type": "object"
9888    },
9889    "io.k8s.api.core.v1.PodSpec": {
9890      "description": "PodSpec is a description of a pod.",
9891      "properties": {
9892        "activeDeadlineSeconds": {
9893          "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.",
9894          "format": "int64",
9895          "type": "integer"
9896        },
9897        "affinity": {
9898          "$ref": "#/definitions/io.k8s.api.core.v1.Affinity",
9899          "description": "If specified, the pod's scheduling constraints"
9900        },
9901        "automountServiceAccountToken": {
9902          "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
9903          "type": "boolean"
9904        },
9905        "containers": {
9906          "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.",
9907          "items": {
9908            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
9909          },
9910          "type": "array",
9911          "x-kubernetes-patch-merge-key": "name",
9912          "x-kubernetes-patch-strategy": "merge"
9913        },
9914        "dnsConfig": {
9915          "$ref": "#/definitions/io.k8s.api.core.v1.PodDNSConfig",
9916          "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
9917        },
9918        "dnsPolicy": {
9919          "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'.",
9920          "type": "string"
9921        },
9922        "enableServiceLinks": {
9923          "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.",
9924          "type": "boolean"
9925        },
9926        "ephemeralContainers": {
9927          "description": "EphemeralContainers is the list of ephemeral containers that run in this pod. Ephemeral containers are added to an existing pod as a result of a user-initiated action such as troubleshooting. This list is read-only in the pod spec. It may not be specified in a create or modified in an update of a pod or pod template. To add an ephemeral container use the pod's ephemeralcontainers subresource, which allows update using the EphemeralContainers kind. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
9928          "items": {
9929            "$ref": "#/definitions/io.k8s.api.core.v1.EphemeralContainer"
9930          },
9931          "type": "array",
9932          "x-kubernetes-patch-merge-key": "name",
9933          "x-kubernetes-patch-strategy": "merge"
9934        },
9935        "hostAliases": {
9936          "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.",
9937          "items": {
9938            "$ref": "#/definitions/io.k8s.api.core.v1.HostAlias"
9939          },
9940          "type": "array",
9941          "x-kubernetes-patch-merge-key": "ip",
9942          "x-kubernetes-patch-strategy": "merge"
9943        },
9944        "hostIPC": {
9945          "description": "Use the host's ipc namespace. Optional: Default to false.",
9946          "type": "boolean"
9947        },
9948        "hostNetwork": {
9949          "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.",
9950          "type": "boolean"
9951        },
9952        "hostPID": {
9953          "description": "Use the host's pid namespace. Optional: Default to false.",
9954          "type": "boolean"
9955        },
9956        "hostname": {
9957          "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
9958          "type": "string"
9959        },
9960        "imagePullSecrets": {
9961          "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",
9962          "items": {
9963            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
9964          },
9965          "type": "array",
9966          "x-kubernetes-patch-merge-key": "name",
9967          "x-kubernetes-patch-strategy": "merge"
9968        },
9969        "initContainers": {
9970          "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
9971          "items": {
9972            "$ref": "#/definitions/io.k8s.api.core.v1.Container"
9973          },
9974          "type": "array",
9975          "x-kubernetes-patch-merge-key": "name",
9976          "x-kubernetes-patch-strategy": "merge"
9977        },
9978        "nodeName": {
9979          "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.",
9980          "type": "string"
9981        },
9982        "nodeSelector": {
9983          "additionalProperties": {
9984            "type": "string"
9985          },
9986          "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/",
9987          "type": "object"
9988        },
9989        "overhead": {
9990          "additionalProperties": {
9991            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
9992          },
9993          "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/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
9994          "type": "object"
9995        },
9996        "preemptionPolicy": {
9997          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
9998          "type": "string"
9999        },
10000        "priority": {
10001          "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.",
10002          "format": "int32",
10003          "type": "integer"
10004        },
10005        "priorityClassName": {
10006          "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.",
10007          "type": "string"
10008        },
10009        "readinessGates": {
10010          "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/0007-pod-ready%2B%2B.md",
10011          "items": {
10012            "$ref": "#/definitions/io.k8s.api.core.v1.PodReadinessGate"
10013          },
10014          "type": "array"
10015        },
10016        "restartPolicy": {
10017          "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",
10018          "type": "string"
10019        },
10020        "runtimeClassName": {
10021          "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/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
10022          "type": "string"
10023        },
10024        "schedulerName": {
10025          "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
10026          "type": "string"
10027        },
10028        "securityContext": {
10029          "$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext",
10030          "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty.  See type description for default values of each field."
10031        },
10032        "serviceAccount": {
10033          "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
10034          "type": "string"
10035        },
10036        "serviceAccountName": {
10037          "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/",
10038          "type": "string"
10039        },
10040        "shareProcessNamespace": {
10041          "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. This field is beta-level and may be disabled with the PodShareProcessNamespace feature.",
10042          "type": "boolean"
10043        },
10044        "subdomain": {
10045          "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.",
10046          "type": "string"
10047        },
10048        "terminationGracePeriodSeconds": {
10049          "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
10050          "format": "int64",
10051          "type": "integer"
10052        },
10053        "tolerations": {
10054          "description": "If specified, the pod's tolerations.",
10055          "items": {
10056            "$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
10057          },
10058          "type": "array"
10059        },
10060        "topologySpreadConstraints": {
10061          "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.",
10062          "items": {
10063            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
10064          },
10065          "type": "array",
10066          "x-kubernetes-list-map-keys": [
10067            "topologyKey",
10068            "whenUnsatisfiable"
10069          ],
10070          "x-kubernetes-list-type": "map",
10071          "x-kubernetes-patch-merge-key": "topologyKey",
10072          "x-kubernetes-patch-strategy": "merge"
10073        },
10074        "volumes": {
10075          "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
10076          "items": {
10077            "$ref": "#/definitions/io.k8s.api.core.v1.Volume"
10078          },
10079          "type": "array",
10080          "x-kubernetes-patch-merge-key": "name",
10081          "x-kubernetes-patch-strategy": "merge,retainKeys"
10082        }
10083      },
10084      "required": [
10085        "containers"
10086      ],
10087      "type": "object"
10088    },
10089    "io.k8s.api.core.v1.PodStatus": {
10090      "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.",
10091      "properties": {
10092        "conditions": {
10093          "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
10094          "items": {
10095            "$ref": "#/definitions/io.k8s.api.core.v1.PodCondition"
10096          },
10097          "type": "array",
10098          "x-kubernetes-patch-merge-key": "type",
10099          "x-kubernetes-patch-strategy": "merge"
10100        },
10101        "containerStatuses": {
10102          "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",
10103          "items": {
10104            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
10105          },
10106          "type": "array"
10107        },
10108        "ephemeralContainerStatuses": {
10109          "description": "Status for any ephemeral containers that running in this pod. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
10110          "items": {
10111            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
10112          },
10113          "type": "array"
10114        },
10115        "hostIP": {
10116          "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.",
10117          "type": "string"
10118        },
10119        "initContainerStatuses": {
10120          "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",
10121          "items": {
10122            "$ref": "#/definitions/io.k8s.api.core.v1.ContainerStatus"
10123          },
10124          "type": "array"
10125        },
10126        "message": {
10127          "description": "A human readable message indicating details about why the pod is in this condition.",
10128          "type": "string"
10129        },
10130        "nominatedNodeName": {
10131          "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.",
10132          "type": "string"
10133        },
10134        "phase": {
10135          "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",
10136          "type": "string"
10137        },
10138        "podIP": {
10139          "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
10140          "type": "string"
10141        },
10142        "podIPs": {
10143          "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.",
10144          "items": {
10145            "$ref": "#/definitions/io.k8s.api.core.v1.PodIP"
10146          },
10147          "type": "array",
10148          "x-kubernetes-patch-merge-key": "ip",
10149          "x-kubernetes-patch-strategy": "merge"
10150        },
10151        "qosClass": {
10152          "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",
10153          "type": "string"
10154        },
10155        "reason": {
10156          "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'",
10157          "type": "string"
10158        },
10159        "startTime": {
10160          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10161          "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."
10162        }
10163      },
10164      "type": "object"
10165    },
10166    "io.k8s.api.core.v1.PodTemplate": {
10167      "description": "PodTemplate describes a template for creating copies of a predefined pod.",
10168      "properties": {
10169        "apiVersion": {
10170          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10171          "type": "string"
10172        },
10173        "kind": {
10174          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
10175          "type": "string"
10176        },
10177        "metadata": {
10178          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10179          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
10180        },
10181        "template": {
10182          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
10183          "description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
10184        }
10185      },
10186      "type": "object",
10187      "x-kubernetes-group-version-kind": [
10188        {
10189          "group": "",
10190          "kind": "PodTemplate",
10191          "version": "v1"
10192        }
10193      ]
10194    },
10195    "io.k8s.api.core.v1.PodTemplateList": {
10196      "description": "PodTemplateList is a list of PodTemplates.",
10197      "properties": {
10198        "apiVersion": {
10199          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10200          "type": "string"
10201        },
10202        "items": {
10203          "description": "List of pod templates",
10204          "items": {
10205            "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
10206          },
10207          "type": "array"
10208        },
10209        "kind": {
10210          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
10211          "type": "string"
10212        },
10213        "metadata": {
10214          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10215          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
10216        }
10217      },
10218      "required": [
10219        "items"
10220      ],
10221      "type": "object",
10222      "x-kubernetes-group-version-kind": [
10223        {
10224          "group": "",
10225          "kind": "PodTemplateList",
10226          "version": "v1"
10227        }
10228      ]
10229    },
10230    "io.k8s.api.core.v1.PodTemplateSpec": {
10231      "description": "PodTemplateSpec describes the data a pod should have when created from a template",
10232      "properties": {
10233        "metadata": {
10234          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10235          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
10236        },
10237        "spec": {
10238          "$ref": "#/definitions/io.k8s.api.core.v1.PodSpec",
10239          "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
10240        }
10241      },
10242      "type": "object"
10243    },
10244    "io.k8s.api.core.v1.PortworxVolumeSource": {
10245      "description": "PortworxVolumeSource represents a Portworx volume resource.",
10246      "properties": {
10247        "fsType": {
10248          "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.",
10249          "type": "string"
10250        },
10251        "readOnly": {
10252          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10253          "type": "boolean"
10254        },
10255        "volumeID": {
10256          "description": "VolumeID uniquely identifies a Portworx volume",
10257          "type": "string"
10258        }
10259      },
10260      "required": [
10261        "volumeID"
10262      ],
10263      "type": "object"
10264    },
10265    "io.k8s.api.core.v1.PreferredSchedulingTerm": {
10266      "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).",
10267      "properties": {
10268        "preference": {
10269          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
10270          "description": "A node selector term, associated with the corresponding weight."
10271        },
10272        "weight": {
10273          "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
10274          "format": "int32",
10275          "type": "integer"
10276        }
10277      },
10278      "required": [
10279        "weight",
10280        "preference"
10281      ],
10282      "type": "object"
10283    },
10284    "io.k8s.api.core.v1.Probe": {
10285      "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
10286      "properties": {
10287        "exec": {
10288          "$ref": "#/definitions/io.k8s.api.core.v1.ExecAction",
10289          "description": "One and only one of the following should be specified. Exec specifies the action to take."
10290        },
10291        "failureThreshold": {
10292          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
10293          "format": "int32",
10294          "type": "integer"
10295        },
10296        "httpGet": {
10297          "$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
10298          "description": "HTTPGet specifies the http request to perform."
10299        },
10300        "initialDelaySeconds": {
10301          "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",
10302          "format": "int32",
10303          "type": "integer"
10304        },
10305        "periodSeconds": {
10306          "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
10307          "format": "int32",
10308          "type": "integer"
10309        },
10310        "successThreshold": {
10311          "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.",
10312          "format": "int32",
10313          "type": "integer"
10314        },
10315        "tcpSocket": {
10316          "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction",
10317          "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
10318        },
10319        "timeoutSeconds": {
10320          "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",
10321          "format": "int32",
10322          "type": "integer"
10323        }
10324      },
10325      "type": "object"
10326    },
10327    "io.k8s.api.core.v1.ProjectedVolumeSource": {
10328      "description": "Represents a projected volume source",
10329      "properties": {
10330        "defaultMode": {
10331          "description": "Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
10332          "format": "int32",
10333          "type": "integer"
10334        },
10335        "sources": {
10336          "description": "list of volume projections",
10337          "items": {
10338            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection"
10339          },
10340          "type": "array"
10341        }
10342      },
10343      "required": [
10344        "sources"
10345      ],
10346      "type": "object"
10347    },
10348    "io.k8s.api.core.v1.QuobyteVolumeSource": {
10349      "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
10350      "properties": {
10351        "group": {
10352          "description": "Group to map volume access to Default is no group",
10353          "type": "string"
10354        },
10355        "readOnly": {
10356          "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
10357          "type": "boolean"
10358        },
10359        "registry": {
10360          "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",
10361          "type": "string"
10362        },
10363        "tenant": {
10364          "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
10365          "type": "string"
10366        },
10367        "user": {
10368          "description": "User to map volume access to Defaults to serivceaccount user",
10369          "type": "string"
10370        },
10371        "volume": {
10372          "description": "Volume is a string that references an already created Quobyte volume by name.",
10373          "type": "string"
10374        }
10375      },
10376      "required": [
10377        "registry",
10378        "volume"
10379      ],
10380      "type": "object"
10381    },
10382    "io.k8s.api.core.v1.RBDPersistentVolumeSource": {
10383      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
10384      "properties": {
10385        "fsType": {
10386          "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",
10387          "type": "string"
10388        },
10389        "image": {
10390          "description": "The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10391          "type": "string"
10392        },
10393        "keyring": {
10394          "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10395          "type": "string"
10396        },
10397        "monitors": {
10398          "description": "A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10399          "items": {
10400            "type": "string"
10401          },
10402          "type": "array"
10403        },
10404        "pool": {
10405          "description": "The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10406          "type": "string"
10407        },
10408        "readOnly": {
10409          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10410          "type": "boolean"
10411        },
10412        "secretRef": {
10413          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
10414          "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it"
10415        },
10416        "user": {
10417          "description": "The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10418          "type": "string"
10419        }
10420      },
10421      "required": [
10422        "monitors",
10423        "image"
10424      ],
10425      "type": "object"
10426    },
10427    "io.k8s.api.core.v1.RBDVolumeSource": {
10428      "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
10429      "properties": {
10430        "fsType": {
10431          "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",
10432          "type": "string"
10433        },
10434        "image": {
10435          "description": "The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10436          "type": "string"
10437        },
10438        "keyring": {
10439          "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10440          "type": "string"
10441        },
10442        "monitors": {
10443          "description": "A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10444          "items": {
10445            "type": "string"
10446          },
10447          "type": "array"
10448        },
10449        "pool": {
10450          "description": "The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10451          "type": "string"
10452        },
10453        "readOnly": {
10454          "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10455          "type": "boolean"
10456        },
10457        "secretRef": {
10458          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
10459          "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it"
10460        },
10461        "user": {
10462          "description": "The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it",
10463          "type": "string"
10464        }
10465      },
10466      "required": [
10467        "monitors",
10468        "image"
10469      ],
10470      "type": "object"
10471    },
10472    "io.k8s.api.core.v1.ReplicationController": {
10473      "description": "ReplicationController represents the configuration of a replication controller.",
10474      "properties": {
10475        "apiVersion": {
10476          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10477          "type": "string"
10478        },
10479        "kind": {
10480          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
10481          "type": "string"
10482        },
10483        "metadata": {
10484          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10485          "description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
10486        },
10487        "spec": {
10488          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerSpec",
10489          "description": "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
10490        },
10491        "status": {
10492          "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerStatus",
10493          "description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
10494        }
10495      },
10496      "type": "object",
10497      "x-kubernetes-group-version-kind": [
10498        {
10499          "group": "",
10500          "kind": "ReplicationController",
10501          "version": "v1"
10502        }
10503      ]
10504    },
10505    "io.k8s.api.core.v1.ReplicationControllerCondition": {
10506      "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
10507      "properties": {
10508        "lastTransitionTime": {
10509          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
10510          "description": "The last time the condition transitioned from one status to another."
10511        },
10512        "message": {
10513          "description": "A human readable message indicating details about the transition.",
10514          "type": "string"
10515        },
10516        "reason": {
10517          "description": "The reason for the condition's last transition.",
10518          "type": "string"
10519        },
10520        "status": {
10521          "description": "Status of the condition, one of True, False, Unknown.",
10522          "type": "string"
10523        },
10524        "type": {
10525          "description": "Type of replication controller condition.",
10526          "type": "string"
10527        }
10528      },
10529      "required": [
10530        "type",
10531        "status"
10532      ],
10533      "type": "object"
10534    },
10535    "io.k8s.api.core.v1.ReplicationControllerList": {
10536      "description": "ReplicationControllerList is a collection of replication controllers.",
10537      "properties": {
10538        "apiVersion": {
10539          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10540          "type": "string"
10541        },
10542        "items": {
10543          "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
10544          "items": {
10545            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
10546          },
10547          "type": "array"
10548        },
10549        "kind": {
10550          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
10551          "type": "string"
10552        },
10553        "metadata": {
10554          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10555          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
10556        }
10557      },
10558      "required": [
10559        "items"
10560      ],
10561      "type": "object",
10562      "x-kubernetes-group-version-kind": [
10563        {
10564          "group": "",
10565          "kind": "ReplicationControllerList",
10566          "version": "v1"
10567        }
10568      ]
10569    },
10570    "io.k8s.api.core.v1.ReplicationControllerSpec": {
10571      "description": "ReplicationControllerSpec is the specification of a replication controller.",
10572      "properties": {
10573        "minReadySeconds": {
10574          "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)",
10575          "format": "int32",
10576          "type": "integer"
10577        },
10578        "replicas": {
10579          "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",
10580          "format": "int32",
10581          "type": "integer"
10582        },
10583        "selector": {
10584          "additionalProperties": {
10585            "type": "string"
10586          },
10587          "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",
10588          "type": "object"
10589        },
10590        "template": {
10591          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
10592          "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"
10593        }
10594      },
10595      "type": "object"
10596    },
10597    "io.k8s.api.core.v1.ReplicationControllerStatus": {
10598      "description": "ReplicationControllerStatus represents the current status of a replication controller.",
10599      "properties": {
10600        "availableReplicas": {
10601          "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
10602          "format": "int32",
10603          "type": "integer"
10604        },
10605        "conditions": {
10606          "description": "Represents the latest available observations of a replication controller's current state.",
10607          "items": {
10608            "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition"
10609          },
10610          "type": "array",
10611          "x-kubernetes-patch-merge-key": "type",
10612          "x-kubernetes-patch-strategy": "merge"
10613        },
10614        "fullyLabeledReplicas": {
10615          "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
10616          "format": "int32",
10617          "type": "integer"
10618        },
10619        "observedGeneration": {
10620          "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
10621          "format": "int64",
10622          "type": "integer"
10623        },
10624        "readyReplicas": {
10625          "description": "The number of ready replicas for this replication controller.",
10626          "format": "int32",
10627          "type": "integer"
10628        },
10629        "replicas": {
10630          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
10631          "format": "int32",
10632          "type": "integer"
10633        }
10634      },
10635      "required": [
10636        "replicas"
10637      ],
10638      "type": "object"
10639    },
10640    "io.k8s.api.core.v1.ResourceFieldSelector": {
10641      "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
10642      "properties": {
10643        "containerName": {
10644          "description": "Container name: required for volumes, optional for env vars",
10645          "type": "string"
10646        },
10647        "divisor": {
10648          "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
10649          "description": "Specifies the output format of the exposed resources, defaults to \"1\""
10650        },
10651        "resource": {
10652          "description": "Required: resource to select",
10653          "type": "string"
10654        }
10655      },
10656      "required": [
10657        "resource"
10658      ],
10659      "type": "object"
10660    },
10661    "io.k8s.api.core.v1.ResourceQuota": {
10662      "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
10663      "properties": {
10664        "apiVersion": {
10665          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10666          "type": "string"
10667        },
10668        "kind": {
10669          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
10670          "type": "string"
10671        },
10672        "metadata": {
10673          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10674          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
10675        },
10676        "spec": {
10677          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaSpec",
10678          "description": "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
10679        },
10680        "status": {
10681          "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaStatus",
10682          "description": "Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
10683        }
10684      },
10685      "type": "object",
10686      "x-kubernetes-group-version-kind": [
10687        {
10688          "group": "",
10689          "kind": "ResourceQuota",
10690          "version": "v1"
10691        }
10692      ]
10693    },
10694    "io.k8s.api.core.v1.ResourceQuotaList": {
10695      "description": "ResourceQuotaList is a list of ResourceQuota items.",
10696      "properties": {
10697        "apiVersion": {
10698          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10699          "type": "string"
10700        },
10701        "items": {
10702          "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
10703          "items": {
10704            "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
10705          },
10706          "type": "array"
10707        },
10708        "kind": {
10709          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
10710          "type": "string"
10711        },
10712        "metadata": {
10713          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
10714          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
10715        }
10716      },
10717      "required": [
10718        "items"
10719      ],
10720      "type": "object",
10721      "x-kubernetes-group-version-kind": [
10722        {
10723          "group": "",
10724          "kind": "ResourceQuotaList",
10725          "version": "v1"
10726        }
10727      ]
10728    },
10729    "io.k8s.api.core.v1.ResourceQuotaSpec": {
10730      "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
10731      "properties": {
10732        "hard": {
10733          "additionalProperties": {
10734            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
10735          },
10736          "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
10737          "type": "object"
10738        },
10739        "scopeSelector": {
10740          "$ref": "#/definitions/io.k8s.api.core.v1.ScopeSelector",
10741          "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."
10742        },
10743        "scopes": {
10744          "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
10745          "items": {
10746            "type": "string"
10747          },
10748          "type": "array"
10749        }
10750      },
10751      "type": "object"
10752    },
10753    "io.k8s.api.core.v1.ResourceQuotaStatus": {
10754      "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
10755      "properties": {
10756        "hard": {
10757          "additionalProperties": {
10758            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
10759          },
10760          "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
10761          "type": "object"
10762        },
10763        "used": {
10764          "additionalProperties": {
10765            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
10766          },
10767          "description": "Used is the current observed total usage of the resource in the namespace.",
10768          "type": "object"
10769        }
10770      },
10771      "type": "object"
10772    },
10773    "io.k8s.api.core.v1.ResourceRequirements": {
10774      "description": "ResourceRequirements describes the compute resource requirements.",
10775      "properties": {
10776        "limits": {
10777          "additionalProperties": {
10778            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
10779          },
10780          "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
10781          "type": "object"
10782        },
10783        "requests": {
10784          "additionalProperties": {
10785            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
10786          },
10787          "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
10788          "type": "object"
10789        }
10790      },
10791      "type": "object"
10792    },
10793    "io.k8s.api.core.v1.SELinuxOptions": {
10794      "description": "SELinuxOptions are the labels to be applied to the container",
10795      "properties": {
10796        "level": {
10797          "description": "Level is SELinux level label that applies to the container.",
10798          "type": "string"
10799        },
10800        "role": {
10801          "description": "Role is a SELinux role label that applies to the container.",
10802          "type": "string"
10803        },
10804        "type": {
10805          "description": "Type is a SELinux type label that applies to the container.",
10806          "type": "string"
10807        },
10808        "user": {
10809          "description": "User is a SELinux user label that applies to the container.",
10810          "type": "string"
10811        }
10812      },
10813      "type": "object"
10814    },
10815    "io.k8s.api.core.v1.ScaleIOPersistentVolumeSource": {
10816      "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
10817      "properties": {
10818        "fsType": {
10819          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"",
10820          "type": "string"
10821        },
10822        "gateway": {
10823          "description": "The host address of the ScaleIO API Gateway.",
10824          "type": "string"
10825        },
10826        "protectionDomain": {
10827          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
10828          "type": "string"
10829        },
10830        "readOnly": {
10831          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10832          "type": "boolean"
10833        },
10834        "secretRef": {
10835          "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference",
10836          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
10837        },
10838        "sslEnabled": {
10839          "description": "Flag to enable/disable SSL communication with Gateway, default false",
10840          "type": "boolean"
10841        },
10842        "storageMode": {
10843          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
10844          "type": "string"
10845        },
10846        "storagePool": {
10847          "description": "The ScaleIO Storage Pool associated with the protection domain.",
10848          "type": "string"
10849        },
10850        "system": {
10851          "description": "The name of the storage system as configured in ScaleIO.",
10852          "type": "string"
10853        },
10854        "volumeName": {
10855          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
10856          "type": "string"
10857        }
10858      },
10859      "required": [
10860        "gateway",
10861        "system",
10862        "secretRef"
10863      ],
10864      "type": "object"
10865    },
10866    "io.k8s.api.core.v1.ScaleIOVolumeSource": {
10867      "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
10868      "properties": {
10869        "fsType": {
10870          "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
10871          "type": "string"
10872        },
10873        "gateway": {
10874          "description": "The host address of the ScaleIO API Gateway.",
10875          "type": "string"
10876        },
10877        "protectionDomain": {
10878          "description": "The name of the ScaleIO Protection Domain for the configured storage.",
10879          "type": "string"
10880        },
10881        "readOnly": {
10882          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10883          "type": "boolean"
10884        },
10885        "secretRef": {
10886          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
10887          "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
10888        },
10889        "sslEnabled": {
10890          "description": "Flag to enable/disable SSL communication with Gateway, default false",
10891          "type": "boolean"
10892        },
10893        "storageMode": {
10894          "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
10895          "type": "string"
10896        },
10897        "storagePool": {
10898          "description": "The ScaleIO Storage Pool associated with the protection domain.",
10899          "type": "string"
10900        },
10901        "system": {
10902          "description": "The name of the storage system as configured in ScaleIO.",
10903          "type": "string"
10904        },
10905        "volumeName": {
10906          "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
10907          "type": "string"
10908        }
10909      },
10910      "required": [
10911        "gateway",
10912        "system",
10913        "secretRef"
10914      ],
10915      "type": "object"
10916    },
10917    "io.k8s.api.core.v1.ScopeSelector": {
10918      "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
10919      "properties": {
10920        "matchExpressions": {
10921          "description": "A list of scope selector requirements by scope of the resources.",
10922          "items": {
10923            "$ref": "#/definitions/io.k8s.api.core.v1.ScopedResourceSelectorRequirement"
10924          },
10925          "type": "array"
10926        }
10927      },
10928      "type": "object"
10929    },
10930    "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": {
10931      "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.",
10932      "properties": {
10933        "operator": {
10934          "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
10935          "type": "string"
10936        },
10937        "scopeName": {
10938          "description": "The name of the scope that the selector applies to.",
10939          "type": "string"
10940        },
10941        "values": {
10942          "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.",
10943          "items": {
10944            "type": "string"
10945          },
10946          "type": "array"
10947        }
10948      },
10949      "required": [
10950        "scopeName",
10951        "operator"
10952      ],
10953      "type": "object"
10954    },
10955    "io.k8s.api.core.v1.Secret": {
10956      "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.",
10957      "properties": {
10958        "apiVersion": {
10959          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
10960          "type": "string"
10961        },
10962        "data": {
10963          "additionalProperties": {
10964            "format": "byte",
10965            "type": "string"
10966          },
10967          "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",
10968          "type": "object"
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/api-conventions.md#types-kinds",
10972          "type": "string"
10973        },
10974        "metadata": {
10975          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
10976          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
10977        },
10978        "stringData": {
10979          "additionalProperties": {
10980            "type": "string"
10981          },
10982          "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.",
10983          "type": "object"
10984        },
10985        "type": {
10986          "description": "Used to facilitate programmatic handling of secret data.",
10987          "type": "string"
10988        }
10989      },
10990      "type": "object",
10991      "x-kubernetes-group-version-kind": [
10992        {
10993          "group": "",
10994          "kind": "Secret",
10995          "version": "v1"
10996        }
10997      ]
10998    },
10999    "io.k8s.api.core.v1.SecretEnvSource": {
11000      "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.",
11001      "properties": {
11002        "name": {
11003          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
11004          "type": "string"
11005        },
11006        "optional": {
11007          "description": "Specify whether the Secret must be defined",
11008          "type": "boolean"
11009        }
11010      },
11011      "type": "object"
11012    },
11013    "io.k8s.api.core.v1.SecretKeySelector": {
11014      "description": "SecretKeySelector selects a key of a Secret.",
11015      "properties": {
11016        "key": {
11017          "description": "The key of the secret to select from.  Must be a valid secret key.",
11018          "type": "string"
11019        },
11020        "name": {
11021          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
11022          "type": "string"
11023        },
11024        "optional": {
11025          "description": "Specify whether the Secret or its key must be defined",
11026          "type": "boolean"
11027        }
11028      },
11029      "required": [
11030        "key"
11031      ],
11032      "type": "object"
11033    },
11034    "io.k8s.api.core.v1.SecretList": {
11035      "description": "SecretList is a list of Secret.",
11036      "properties": {
11037        "apiVersion": {
11038          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
11039          "type": "string"
11040        },
11041        "items": {
11042          "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret",
11043          "items": {
11044            "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
11045          },
11046          "type": "array"
11047        },
11048        "kind": {
11049          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
11050          "type": "string"
11051        },
11052        "metadata": {
11053          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11054          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
11055        }
11056      },
11057      "required": [
11058        "items"
11059      ],
11060      "type": "object",
11061      "x-kubernetes-group-version-kind": [
11062        {
11063          "group": "",
11064          "kind": "SecretList",
11065          "version": "v1"
11066        }
11067      ]
11068    },
11069    "io.k8s.api.core.v1.SecretProjection": {
11070      "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.",
11071      "properties": {
11072        "items": {
11073          "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 '..'.",
11074          "items": {
11075            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
11076          },
11077          "type": "array"
11078        },
11079        "name": {
11080          "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
11081          "type": "string"
11082        },
11083        "optional": {
11084          "description": "Specify whether the Secret or its key must be defined",
11085          "type": "boolean"
11086        }
11087      },
11088      "type": "object"
11089    },
11090    "io.k8s.api.core.v1.SecretReference": {
11091      "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
11092      "properties": {
11093        "name": {
11094          "description": "Name is unique within a namespace to reference a secret resource.",
11095          "type": "string"
11096        },
11097        "namespace": {
11098          "description": "Namespace defines the space within which the secret name must be unique.",
11099          "type": "string"
11100        }
11101      },
11102      "type": "object"
11103    },
11104    "io.k8s.api.core.v1.SecretVolumeSource": {
11105      "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.",
11106      "properties": {
11107        "defaultMode": {
11108          "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
11109          "format": "int32",
11110          "type": "integer"
11111        },
11112        "items": {
11113          "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 '..'.",
11114          "items": {
11115            "$ref": "#/definitions/io.k8s.api.core.v1.KeyToPath"
11116          },
11117          "type": "array"
11118        },
11119        "optional": {
11120          "description": "Specify whether the Secret or its keys must be defined",
11121          "type": "boolean"
11122        },
11123        "secretName": {
11124          "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
11125          "type": "string"
11126        }
11127      },
11128      "type": "object"
11129    },
11130    "io.k8s.api.core.v1.SecurityContext": {
11131      "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.",
11132      "properties": {
11133        "allowPrivilegeEscalation": {
11134          "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",
11135          "type": "boolean"
11136        },
11137        "capabilities": {
11138          "$ref": "#/definitions/io.k8s.api.core.v1.Capabilities",
11139          "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
11140        },
11141        "privileged": {
11142          "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
11143          "type": "boolean"
11144        },
11145        "procMount": {
11146          "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.",
11147          "type": "string"
11148        },
11149        "readOnlyRootFilesystem": {
11150          "description": "Whether this container has a read-only root filesystem. Default is false.",
11151          "type": "boolean"
11152        },
11153        "runAsGroup": {
11154          "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.",
11155          "format": "int64",
11156          "type": "integer"
11157        },
11158        "runAsNonRoot": {
11159          "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.",
11160          "type": "boolean"
11161        },
11162        "runAsUser": {
11163          "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.",
11164          "format": "int64",
11165          "type": "integer"
11166        },
11167        "seLinuxOptions": {
11168          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
11169          "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."
11170        },
11171        "windowsOptions": {
11172          "$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
11173          "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."
11174        }
11175      },
11176      "type": "object"
11177    },
11178    "io.k8s.api.core.v1.Service": {
11179      "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.",
11180      "properties": {
11181        "apiVersion": {
11182          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
11183          "type": "string"
11184        },
11185        "kind": {
11186          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
11187          "type": "string"
11188        },
11189        "metadata": {
11190          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11191          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
11192        },
11193        "spec": {
11194          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceSpec",
11195          "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
11196        },
11197        "status": {
11198          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceStatus",
11199          "description": "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
11200        }
11201      },
11202      "type": "object",
11203      "x-kubernetes-group-version-kind": [
11204        {
11205          "group": "",
11206          "kind": "Service",
11207          "version": "v1"
11208        }
11209      ]
11210    },
11211    "io.k8s.api.core.v1.ServiceAccount": {
11212      "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",
11213      "properties": {
11214        "apiVersion": {
11215          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
11216          "type": "string"
11217        },
11218        "automountServiceAccountToken": {
11219          "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.",
11220          "type": "boolean"
11221        },
11222        "imagePullSecrets": {
11223          "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",
11224          "items": {
11225            "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference"
11226          },
11227          "type": "array"
11228        },
11229        "kind": {
11230          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
11231          "type": "string"
11232        },
11233        "metadata": {
11234          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
11235          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
11236        },
11237        "secrets": {
11238          "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",
11239          "items": {
11240            "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference"
11241          },
11242          "type": "array",
11243          "x-kubernetes-patch-merge-key": "name",
11244          "x-kubernetes-patch-strategy": "merge"
11245        }
11246      },
11247      "type": "object",
11248      "x-kubernetes-group-version-kind": [
11249        {
11250          "group": "",
11251          "kind": "ServiceAccount",
11252          "version": "v1"
11253        }
11254      ]
11255    },
11256    "io.k8s.api.core.v1.ServiceAccountList": {
11257      "description": "ServiceAccountList is a list of ServiceAccount objects",
11258      "properties": {
11259        "apiVersion": {
11260          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
11261          "type": "string"
11262        },
11263        "items": {
11264          "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
11265          "items": {
11266            "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
11267          },
11268          "type": "array"
11269        },
11270        "kind": {
11271          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
11272          "type": "string"
11273        },
11274        "metadata": {
11275          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11276          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
11277        }
11278      },
11279      "required": [
11280        "items"
11281      ],
11282      "type": "object",
11283      "x-kubernetes-group-version-kind": [
11284        {
11285          "group": "",
11286          "kind": "ServiceAccountList",
11287          "version": "v1"
11288        }
11289      ]
11290    },
11291    "io.k8s.api.core.v1.ServiceAccountTokenProjection": {
11292      "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).",
11293      "properties": {
11294        "audience": {
11295          "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.",
11296          "type": "string"
11297        },
11298        "expirationSeconds": {
11299          "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.",
11300          "format": "int64",
11301          "type": "integer"
11302        },
11303        "path": {
11304          "description": "Path is the path relative to the mount point of the file to project the token into.",
11305          "type": "string"
11306        }
11307      },
11308      "required": [
11309        "path"
11310      ],
11311      "type": "object"
11312    },
11313    "io.k8s.api.core.v1.ServiceList": {
11314      "description": "ServiceList holds a list of services.",
11315      "properties": {
11316        "apiVersion": {
11317          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
11318          "type": "string"
11319        },
11320        "items": {
11321          "description": "List of services",
11322          "items": {
11323            "$ref": "#/definitions/io.k8s.api.core.v1.Service"
11324          },
11325          "type": "array"
11326        },
11327        "kind": {
11328          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
11329          "type": "string"
11330        },
11331        "metadata": {
11332          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
11333          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
11334        }
11335      },
11336      "required": [
11337        "items"
11338      ],
11339      "type": "object",
11340      "x-kubernetes-group-version-kind": [
11341        {
11342          "group": "",
11343          "kind": "ServiceList",
11344          "version": "v1"
11345        }
11346      ]
11347    },
11348    "io.k8s.api.core.v1.ServicePort": {
11349      "description": "ServicePort contains information on service's port.",
11350      "properties": {
11351        "name": {
11352          "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service.",
11353          "type": "string"
11354        },
11355        "nodePort": {
11356          "description": "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport",
11357          "format": "int32",
11358          "type": "integer"
11359        },
11360        "port": {
11361          "description": "The port that will be exposed by this service.",
11362          "format": "int32",
11363          "type": "integer"
11364        },
11365        "protocol": {
11366          "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.",
11367          "type": "string"
11368        },
11369        "targetPort": {
11370          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
11371          "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"
11372        }
11373      },
11374      "required": [
11375        "port"
11376      ],
11377      "type": "object"
11378    },
11379    "io.k8s.api.core.v1.ServiceSpec": {
11380      "description": "ServiceSpec describes the attributes that a user creates on a service.",
11381      "properties": {
11382        "clusterIP": {
11383          "description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
11384          "type": "string"
11385        },
11386        "externalIPs": {
11387          "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.",
11388          "items": {
11389            "type": "string"
11390          },
11391          "type": "array"
11392        },
11393        "externalName": {
11394          "description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.",
11395          "type": "string"
11396        },
11397        "externalTrafficPolicy": {
11398          "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.",
11399          "type": "string"
11400        },
11401        "healthCheckNodePort": {
11402          "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.",
11403          "format": "int32",
11404          "type": "integer"
11405        },
11406        "loadBalancerIP": {
11407          "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.",
11408          "type": "string"
11409        },
11410        "loadBalancerSourceRanges": {
11411          "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/",
11412          "items": {
11413            "type": "string"
11414          },
11415          "type": "array"
11416        },
11417        "ports": {
11418          "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",
11419          "items": {
11420            "$ref": "#/definitions/io.k8s.api.core.v1.ServicePort"
11421          },
11422          "type": "array",
11423          "x-kubernetes-list-map-keys": [
11424            "port",
11425            "protocol"
11426          ],
11427          "x-kubernetes-list-type": "map",
11428          "x-kubernetes-patch-merge-key": "port",
11429          "x-kubernetes-patch-strategy": "merge"
11430        },
11431        "publishNotReadyAddresses": {
11432          "description": "publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery.",
11433          "type": "boolean"
11434        },
11435        "selector": {
11436          "additionalProperties": {
11437            "type": "string"
11438          },
11439          "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/",
11440          "type": "object"
11441        },
11442        "sessionAffinity": {
11443          "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",
11444          "type": "string"
11445        },
11446        "sessionAffinityConfig": {
11447          "$ref": "#/definitions/io.k8s.api.core.v1.SessionAffinityConfig",
11448          "description": "sessionAffinityConfig contains the configurations of session affinity."
11449        },
11450        "type": {
11451          "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types",
11452          "type": "string"
11453        }
11454      },
11455      "type": "object"
11456    },
11457    "io.k8s.api.core.v1.ServiceStatus": {
11458      "description": "ServiceStatus represents the current status of a service.",
11459      "properties": {
11460        "loadBalancer": {
11461          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
11462          "description": "LoadBalancer contains the current status of the load-balancer, if one is present."
11463        }
11464      },
11465      "type": "object"
11466    },
11467    "io.k8s.api.core.v1.SessionAffinityConfig": {
11468      "description": "SessionAffinityConfig represents the configurations of session affinity.",
11469      "properties": {
11470        "clientIP": {
11471          "$ref": "#/definitions/io.k8s.api.core.v1.ClientIPConfig",
11472          "description": "clientIP contains the configurations of Client IP based session affinity."
11473        }
11474      },
11475      "type": "object"
11476    },
11477    "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": {
11478      "description": "Represents a StorageOS persistent volume resource.",
11479      "properties": {
11480        "fsType": {
11481          "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.",
11482          "type": "string"
11483        },
11484        "readOnly": {
11485          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
11486          "type": "boolean"
11487        },
11488        "secretRef": {
11489          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
11490          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
11491        },
11492        "volumeName": {
11493          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
11494          "type": "string"
11495        },
11496        "volumeNamespace": {
11497          "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.",
11498          "type": "string"
11499        }
11500      },
11501      "type": "object"
11502    },
11503    "io.k8s.api.core.v1.StorageOSVolumeSource": {
11504      "description": "Represents a StorageOS persistent volume resource.",
11505      "properties": {
11506        "fsType": {
11507          "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.",
11508          "type": "string"
11509        },
11510        "readOnly": {
11511          "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
11512          "type": "boolean"
11513        },
11514        "secretRef": {
11515          "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
11516          "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
11517        },
11518        "volumeName": {
11519          "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
11520          "type": "string"
11521        },
11522        "volumeNamespace": {
11523          "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.",
11524          "type": "string"
11525        }
11526      },
11527      "type": "object"
11528    },
11529    "io.k8s.api.core.v1.Sysctl": {
11530      "description": "Sysctl defines a kernel parameter to be set",
11531      "properties": {
11532        "name": {
11533          "description": "Name of a property to set",
11534          "type": "string"
11535        },
11536        "value": {
11537          "description": "Value of a property to set",
11538          "type": "string"
11539        }
11540      },
11541      "required": [
11542        "name",
11543        "value"
11544      ],
11545      "type": "object"
11546    },
11547    "io.k8s.api.core.v1.TCPSocketAction": {
11548      "description": "TCPSocketAction describes an action based on opening a socket",
11549      "properties": {
11550        "host": {
11551          "description": "Optional: Host name to connect to, defaults to the pod IP.",
11552          "type": "string"
11553        },
11554        "port": {
11555          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
11556          "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."
11557        }
11558      },
11559      "required": [
11560        "port"
11561      ],
11562      "type": "object"
11563    },
11564    "io.k8s.api.core.v1.Taint": {
11565      "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
11566      "properties": {
11567        "effect": {
11568          "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
11569          "type": "string"
11570        },
11571        "key": {
11572          "description": "Required. The taint key to be applied to a node.",
11573          "type": "string"
11574        },
11575        "timeAdded": {
11576          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11577          "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints."
11578        },
11579        "value": {
11580          "description": "Required. The taint value corresponding to the taint key.",
11581          "type": "string"
11582        }
11583      },
11584      "required": [
11585        "key",
11586        "effect"
11587      ],
11588      "type": "object"
11589    },
11590    "io.k8s.api.core.v1.Toleration": {
11591      "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
11592      "properties": {
11593        "effect": {
11594          "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
11595          "type": "string"
11596        },
11597        "key": {
11598          "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.",
11599          "type": "string"
11600        },
11601        "operator": {
11602          "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.",
11603          "type": "string"
11604        },
11605        "tolerationSeconds": {
11606          "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.",
11607          "format": "int64",
11608          "type": "integer"
11609        },
11610        "value": {
11611          "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.",
11612          "type": "string"
11613        }
11614      },
11615      "type": "object"
11616    },
11617    "io.k8s.api.core.v1.TopologySelectorLabelRequirement": {
11618      "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.",
11619      "properties": {
11620        "key": {
11621          "description": "The label key that the selector applies to.",
11622          "type": "string"
11623        },
11624        "values": {
11625          "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
11626          "items": {
11627            "type": "string"
11628          },
11629          "type": "array"
11630        }
11631      },
11632      "required": [
11633        "key",
11634        "values"
11635      ],
11636      "type": "object"
11637    },
11638    "io.k8s.api.core.v1.TopologySelectorTerm": {
11639      "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.",
11640      "properties": {
11641        "matchLabelExpressions": {
11642          "description": "A list of topology selector requirements by labels.",
11643          "items": {
11644            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorLabelRequirement"
11645          },
11646          "type": "array"
11647        }
11648      },
11649      "type": "object"
11650    },
11651    "io.k8s.api.core.v1.TopologySpreadConstraint": {
11652      "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
11653      "properties": {
11654        "labelSelector": {
11655          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
11656          "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."
11657        },
11658        "maxSkew": {
11659          "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. 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. It's a required field. Default value is 1 and 0 is not allowed.",
11660          "format": "int32",
11661          "type": "integer"
11662        },
11663        "topologyKey": {
11664          "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.",
11665          "type": "string"
11666        },
11667        "whenUnsatisfiable": {
11668          "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 still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". 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.",
11669          "type": "string"
11670        }
11671      },
11672      "required": [
11673        "maxSkew",
11674        "topologyKey",
11675        "whenUnsatisfiable"
11676      ],
11677      "type": "object"
11678    },
11679    "io.k8s.api.core.v1.TypedLocalObjectReference": {
11680      "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
11681      "properties": {
11682        "apiGroup": {
11683          "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.",
11684          "type": "string"
11685        },
11686        "kind": {
11687          "description": "Kind is the type of resource being referenced",
11688          "type": "string"
11689        },
11690        "name": {
11691          "description": "Name is the name of resource being referenced",
11692          "type": "string"
11693        }
11694      },
11695      "required": [
11696        "kind",
11697        "name"
11698      ],
11699      "type": "object"
11700    },
11701    "io.k8s.api.core.v1.Volume": {
11702      "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
11703      "properties": {
11704        "awsElasticBlockStore": {
11705          "$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
11706          "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"
11707        },
11708        "azureDisk": {
11709          "$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
11710          "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
11711        },
11712        "azureFile": {
11713          "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
11714          "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
11715        },
11716        "cephfs": {
11717          "$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource",
11718          "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
11719        },
11720        "cinder": {
11721          "$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
11722          "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md"
11723        },
11724        "configMap": {
11725          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
11726          "description": "ConfigMap represents a configMap that should populate this volume"
11727        },
11728        "csi": {
11729          "$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource",
11730          "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
11731        },
11732        "downwardAPI": {
11733          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource",
11734          "description": "DownwardAPI represents downward API about the pod that should populate this volume"
11735        },
11736        "emptyDir": {
11737          "$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource",
11738          "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
11739        },
11740        "fc": {
11741          "$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
11742          "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
11743        },
11744        "flexVolume": {
11745          "$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource",
11746          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
11747        },
11748        "flocker": {
11749          "$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
11750          "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
11751        },
11752        "gcePersistentDisk": {
11753          "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
11754          "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"
11755        },
11756        "gitRepo": {
11757          "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
11758          "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."
11759        },
11760        "glusterfs": {
11761          "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource",
11762          "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md"
11763        },
11764        "hostPath": {
11765          "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
11766          "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"
11767        },
11768        "iscsi": {
11769          "$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource",
11770          "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md"
11771        },
11772        "name": {
11773          "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",
11774          "type": "string"
11775        },
11776        "nfs": {
11777          "$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
11778          "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"
11779        },
11780        "persistentVolumeClaim": {
11781          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
11782          "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
11783        },
11784        "photonPersistentDisk": {
11785          "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
11786          "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
11787        },
11788        "portworxVolume": {
11789          "$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
11790          "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
11791        },
11792        "projected": {
11793          "$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource",
11794          "description": "Items for all in one resources secrets, configmaps, and downward API"
11795        },
11796        "quobyte": {
11797          "$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
11798          "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
11799        },
11800        "rbd": {
11801          "$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource",
11802          "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md"
11803        },
11804        "scaleIO": {
11805          "$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource",
11806          "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
11807        },
11808        "secret": {
11809          "$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource",
11810          "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
11811        },
11812        "storageos": {
11813          "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource",
11814          "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
11815        },
11816        "vsphereVolume": {
11817          "$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
11818          "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
11819        }
11820      },
11821      "required": [
11822        "name"
11823      ],
11824      "type": "object"
11825    },
11826    "io.k8s.api.core.v1.VolumeDevice": {
11827      "description": "volumeDevice describes a mapping of a raw block device within a container.",
11828      "properties": {
11829        "devicePath": {
11830          "description": "devicePath is the path inside of the container that the device will be mapped to.",
11831          "type": "string"
11832        },
11833        "name": {
11834          "description": "name must match the name of a persistentVolumeClaim in the pod",
11835          "type": "string"
11836        }
11837      },
11838      "required": [
11839        "name",
11840        "devicePath"
11841      ],
11842      "type": "object"
11843    },
11844    "io.k8s.api.core.v1.VolumeMount": {
11845      "description": "VolumeMount describes a mounting of a Volume within a container.",
11846      "properties": {
11847        "mountPath": {
11848          "description": "Path within the container at which the volume should be mounted.  Must not contain ':'.",
11849          "type": "string"
11850        },
11851        "mountPropagation": {
11852          "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.",
11853          "type": "string"
11854        },
11855        "name": {
11856          "description": "This must match the Name of a Volume.",
11857          "type": "string"
11858        },
11859        "readOnly": {
11860          "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
11861          "type": "boolean"
11862        },
11863        "subPath": {
11864          "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
11865          "type": "string"
11866        },
11867        "subPathExpr": {
11868          "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. This field is beta in 1.15.",
11869          "type": "string"
11870        }
11871      },
11872      "required": [
11873        "name",
11874        "mountPath"
11875      ],
11876      "type": "object"
11877    },
11878    "io.k8s.api.core.v1.VolumeNodeAffinity": {
11879      "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
11880      "properties": {
11881        "required": {
11882          "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
11883          "description": "Required specifies hard node constraints that must be met."
11884        }
11885      },
11886      "type": "object"
11887    },
11888    "io.k8s.api.core.v1.VolumeProjection": {
11889      "description": "Projection that may be projected along with other supported volume types",
11890      "properties": {
11891        "configMap": {
11892          "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapProjection",
11893          "description": "information about the configMap data to project"
11894        },
11895        "downwardAPI": {
11896          "$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIProjection",
11897          "description": "information about the downwardAPI data to project"
11898        },
11899        "secret": {
11900          "$ref": "#/definitions/io.k8s.api.core.v1.SecretProjection",
11901          "description": "information about the secret data to project"
11902        },
11903        "serviceAccountToken": {
11904          "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection",
11905          "description": "information about the serviceAccountToken data to project"
11906        }
11907      },
11908      "type": "object"
11909    },
11910    "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
11911      "description": "Represents a vSphere volume resource.",
11912      "properties": {
11913        "fsType": {
11914          "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.",
11915          "type": "string"
11916        },
11917        "storagePolicyID": {
11918          "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
11919          "type": "string"
11920        },
11921        "storagePolicyName": {
11922          "description": "Storage Policy Based Management (SPBM) profile name.",
11923          "type": "string"
11924        },
11925        "volumePath": {
11926          "description": "Path that identifies vSphere volume vmdk",
11927          "type": "string"
11928        }
11929      },
11930      "required": [
11931        "volumePath"
11932      ],
11933      "type": "object"
11934    },
11935    "io.k8s.api.core.v1.WeightedPodAffinityTerm": {
11936      "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
11937      "properties": {
11938        "podAffinityTerm": {
11939          "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm",
11940          "description": "Required. A pod affinity term, associated with the corresponding weight."
11941        },
11942        "weight": {
11943          "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
11944          "format": "int32",
11945          "type": "integer"
11946        }
11947      },
11948      "required": [
11949        "weight",
11950        "podAffinityTerm"
11951      ],
11952      "type": "object"
11953    },
11954    "io.k8s.api.core.v1.WindowsSecurityContextOptions": {
11955      "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
11956      "properties": {
11957        "gmsaCredentialSpec": {
11958          "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. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
11959          "type": "string"
11960        },
11961        "gmsaCredentialSpecName": {
11962          "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
11963          "type": "string"
11964        },
11965        "runAsUserName": {
11966          "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. This field is alpha-level and it is only honored by servers that enable the WindowsRunAsUserName feature flag.",
11967          "type": "string"
11968        }
11969      },
11970      "type": "object"
11971    },
11972    "io.k8s.api.events.v1beta1.Event": {
11973      "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.",
11974      "properties": {
11975        "action": {
11976          "description": "What action was taken/failed regarding to the regarding object.",
11977          "type": "string"
11978        },
11979        "apiVersion": {
11980          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
11981          "type": "string"
11982        },
11983        "deprecatedCount": {
11984          "description": "Deprecated field assuring backward compatibility with core.v1 Event type",
11985          "format": "int32",
11986          "type": "integer"
11987        },
11988        "deprecatedFirstTimestamp": {
11989          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11990          "description": "Deprecated field assuring backward compatibility with core.v1 Event type"
11991        },
11992        "deprecatedLastTimestamp": {
11993          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
11994          "description": "Deprecated field assuring backward compatibility with core.v1 Event type"
11995        },
11996        "deprecatedSource": {
11997          "$ref": "#/definitions/io.k8s.api.core.v1.EventSource",
11998          "description": "Deprecated field assuring backward compatibility with core.v1 Event type"
11999        },
12000        "eventTime": {
12001          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
12002          "description": "Required. Time when this Event was first observed."
12003        },
12004        "kind": {
12005          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12006          "type": "string"
12007        },
12008        "metadata": {
12009          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
12010        },
12011        "note": {
12012          "description": "Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
12013          "type": "string"
12014        },
12015        "reason": {
12016          "description": "Why the action was taken.",
12017          "type": "string"
12018        },
12019        "regarding": {
12020          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
12021          "description": "The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
12022        },
12023        "related": {
12024          "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
12025          "description": "Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
12026        },
12027        "reportingController": {
12028          "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
12029          "type": "string"
12030        },
12031        "reportingInstance": {
12032          "description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
12033          "type": "string"
12034        },
12035        "series": {
12036          "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventSeries",
12037          "description": "Data about the Event series this event represents or nil if it's a singleton Event."
12038        },
12039        "type": {
12040          "description": "Type of this event (Normal, Warning), new types could be added in the future.",
12041          "type": "string"
12042        }
12043      },
12044      "required": [
12045        "eventTime"
12046      ],
12047      "type": "object",
12048      "x-kubernetes-group-version-kind": [
12049        {
12050          "group": "events.k8s.io",
12051          "kind": "Event",
12052          "version": "v1beta1"
12053        }
12054      ]
12055    },
12056    "io.k8s.api.events.v1beta1.EventList": {
12057      "description": "EventList is a list of Event objects.",
12058      "properties": {
12059        "apiVersion": {
12060          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12061          "type": "string"
12062        },
12063        "items": {
12064          "description": "Items is a list of schema objects.",
12065          "items": {
12066            "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
12067          },
12068          "type": "array"
12069        },
12070        "kind": {
12071          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12072          "type": "string"
12073        },
12074        "metadata": {
12075          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12076          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
12077        }
12078      },
12079      "required": [
12080        "items"
12081      ],
12082      "type": "object",
12083      "x-kubernetes-group-version-kind": [
12084        {
12085          "group": "events.k8s.io",
12086          "kind": "EventList",
12087          "version": "v1beta1"
12088        }
12089      ]
12090    },
12091    "io.k8s.api.events.v1beta1.EventSeries": {
12092      "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
12093      "properties": {
12094        "count": {
12095          "description": "Number of occurrences in this series up to the last heartbeat time",
12096          "format": "int32",
12097          "type": "integer"
12098        },
12099        "lastObservedTime": {
12100          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
12101          "description": "Time when last Event from the series was seen before last heartbeat."
12102        },
12103        "state": {
12104          "description": "Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18",
12105          "type": "string"
12106        }
12107      },
12108      "required": [
12109        "count",
12110        "lastObservedTime",
12111        "state"
12112      ],
12113      "type": "object"
12114    },
12115    "io.k8s.api.extensions.v1beta1.AllowedCSIDriver": {
12116      "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
12117      "properties": {
12118        "name": {
12119          "description": "Name is the registered name of the CSI driver",
12120          "type": "string"
12121        }
12122      },
12123      "required": [
12124        "name"
12125      ],
12126      "type": "object"
12127    },
12128    "io.k8s.api.extensions.v1beta1.AllowedFlexVolume": {
12129      "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used. Deprecated: use AllowedFlexVolume from policy API Group instead.",
12130      "properties": {
12131        "driver": {
12132          "description": "driver is the name of the Flexvolume driver.",
12133          "type": "string"
12134        }
12135      },
12136      "required": [
12137        "driver"
12138      ],
12139      "type": "object"
12140    },
12141    "io.k8s.api.extensions.v1beta1.AllowedHostPath": {
12142      "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. Deprecated: use AllowedHostPath from policy API Group instead.",
12143      "properties": {
12144        "pathPrefix": {
12145          "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`",
12146          "type": "string"
12147        },
12148        "readOnly": {
12149          "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
12150          "type": "boolean"
12151        }
12152      },
12153      "type": "object"
12154    },
12155    "io.k8s.api.extensions.v1beta1.DaemonSet": {
12156      "description": "DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.",
12157      "properties": {
12158        "apiVersion": {
12159          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12160          "type": "string"
12161        },
12162        "kind": {
12163          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12164          "type": "string"
12165        },
12166        "metadata": {
12167          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12168          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12169        },
12170        "spec": {
12171          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetSpec",
12172          "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"
12173        },
12174        "status": {
12175          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetStatus",
12176          "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"
12177        }
12178      },
12179      "type": "object",
12180      "x-kubernetes-group-version-kind": [
12181        {
12182          "group": "extensions",
12183          "kind": "DaemonSet",
12184          "version": "v1beta1"
12185        }
12186      ]
12187    },
12188    "io.k8s.api.extensions.v1beta1.DaemonSetCondition": {
12189      "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
12190      "properties": {
12191        "lastTransitionTime": {
12192          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12193          "description": "Last time the condition transitioned from one status to another."
12194        },
12195        "message": {
12196          "description": "A human readable message indicating details about the transition.",
12197          "type": "string"
12198        },
12199        "reason": {
12200          "description": "The reason for the condition's last transition.",
12201          "type": "string"
12202        },
12203        "status": {
12204          "description": "Status of the condition, one of True, False, Unknown.",
12205          "type": "string"
12206        },
12207        "type": {
12208          "description": "Type of DaemonSet condition.",
12209          "type": "string"
12210        }
12211      },
12212      "required": [
12213        "type",
12214        "status"
12215      ],
12216      "type": "object"
12217    },
12218    "io.k8s.api.extensions.v1beta1.DaemonSetList": {
12219      "description": "DaemonSetList is a collection of daemon sets.",
12220      "properties": {
12221        "apiVersion": {
12222          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12223          "type": "string"
12224        },
12225        "items": {
12226          "description": "A list of daemon sets.",
12227          "items": {
12228            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
12229          },
12230          "type": "array"
12231        },
12232        "kind": {
12233          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12234          "type": "string"
12235        },
12236        "metadata": {
12237          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12238          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12239        }
12240      },
12241      "required": [
12242        "items"
12243      ],
12244      "type": "object",
12245      "x-kubernetes-group-version-kind": [
12246        {
12247          "group": "extensions",
12248          "kind": "DaemonSetList",
12249          "version": "v1beta1"
12250        }
12251      ]
12252    },
12253    "io.k8s.api.extensions.v1beta1.DaemonSetSpec": {
12254      "description": "DaemonSetSpec is the specification of a daemon set.",
12255      "properties": {
12256        "minReadySeconds": {
12257          "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).",
12258          "format": "int32",
12259          "type": "integer"
12260        },
12261        "revisionHistoryLimit": {
12262          "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.",
12263          "format": "int32",
12264          "type": "integer"
12265        },
12266        "selector": {
12267          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
12268          "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
12269        },
12270        "template": {
12271          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
12272          "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"
12273        },
12274        "templateGeneration": {
12275          "description": "DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.",
12276          "format": "int64",
12277          "type": "integer"
12278        },
12279        "updateStrategy": {
12280          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy",
12281          "description": "An update strategy to replace existing DaemonSet pods with new pods."
12282        }
12283      },
12284      "required": [
12285        "template"
12286      ],
12287      "type": "object"
12288    },
12289    "io.k8s.api.extensions.v1beta1.DaemonSetStatus": {
12290      "description": "DaemonSetStatus represents the current status of a daemon set.",
12291      "properties": {
12292        "collisionCount": {
12293          "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.",
12294          "format": "int32",
12295          "type": "integer"
12296        },
12297        "conditions": {
12298          "description": "Represents the latest available observations of a DaemonSet's current state.",
12299          "items": {
12300            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetCondition"
12301          },
12302          "type": "array",
12303          "x-kubernetes-patch-merge-key": "type",
12304          "x-kubernetes-patch-strategy": "merge"
12305        },
12306        "currentNumberScheduled": {
12307          "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/",
12308          "format": "int32",
12309          "type": "integer"
12310        },
12311        "desiredNumberScheduled": {
12312          "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/",
12313          "format": "int32",
12314          "type": "integer"
12315        },
12316        "numberAvailable": {
12317          "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)",
12318          "format": "int32",
12319          "type": "integer"
12320        },
12321        "numberMisscheduled": {
12322          "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/",
12323          "format": "int32",
12324          "type": "integer"
12325        },
12326        "numberReady": {
12327          "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
12328          "format": "int32",
12329          "type": "integer"
12330        },
12331        "numberUnavailable": {
12332          "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)",
12333          "format": "int32",
12334          "type": "integer"
12335        },
12336        "observedGeneration": {
12337          "description": "The most recent generation observed by the daemon set controller.",
12338          "format": "int64",
12339          "type": "integer"
12340        },
12341        "updatedNumberScheduled": {
12342          "description": "The total number of nodes that are running updated daemon pod",
12343          "format": "int32",
12344          "type": "integer"
12345        }
12346      },
12347      "required": [
12348        "currentNumberScheduled",
12349        "numberMisscheduled",
12350        "desiredNumberScheduled",
12351        "numberReady"
12352      ],
12353      "type": "object"
12354    },
12355    "io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy": {
12356      "properties": {
12357        "rollingUpdate": {
12358          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet",
12359          "description": "Rolling update config params. Present only if type = \"RollingUpdate\"."
12360        },
12361        "type": {
12362          "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is OnDelete.",
12363          "type": "string"
12364        }
12365      },
12366      "type": "object"
12367    },
12368    "io.k8s.api.extensions.v1beta1.Deployment": {
12369      "description": "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
12370      "properties": {
12371        "apiVersion": {
12372          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12373          "type": "string"
12374        },
12375        "kind": {
12376          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12377          "type": "string"
12378        },
12379        "metadata": {
12380          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12381          "description": "Standard object metadata."
12382        },
12383        "spec": {
12384          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentSpec",
12385          "description": "Specification of the desired behavior of the Deployment."
12386        },
12387        "status": {
12388          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus",
12389          "description": "Most recently observed status of the Deployment."
12390        }
12391      },
12392      "type": "object",
12393      "x-kubernetes-group-version-kind": [
12394        {
12395          "group": "extensions",
12396          "kind": "Deployment",
12397          "version": "v1beta1"
12398        }
12399      ]
12400    },
12401    "io.k8s.api.extensions.v1beta1.DeploymentCondition": {
12402      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
12403      "properties": {
12404        "lastTransitionTime": {
12405          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12406          "description": "Last time the condition transitioned from one status to another."
12407        },
12408        "lastUpdateTime": {
12409          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
12410          "description": "The last time this condition was updated."
12411        },
12412        "message": {
12413          "description": "A human readable message indicating details about the transition.",
12414          "type": "string"
12415        },
12416        "reason": {
12417          "description": "The reason for the condition's last transition.",
12418          "type": "string"
12419        },
12420        "status": {
12421          "description": "Status of the condition, one of True, False, Unknown.",
12422          "type": "string"
12423        },
12424        "type": {
12425          "description": "Type of deployment condition.",
12426          "type": "string"
12427        }
12428      },
12429      "required": [
12430        "type",
12431        "status"
12432      ],
12433      "type": "object"
12434    },
12435    "io.k8s.api.extensions.v1beta1.DeploymentList": {
12436      "description": "DeploymentList is a list of Deployments.",
12437      "properties": {
12438        "apiVersion": {
12439          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12440          "type": "string"
12441        },
12442        "items": {
12443          "description": "Items is the list of Deployments.",
12444          "items": {
12445            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
12446          },
12447          "type": "array"
12448        },
12449        "kind": {
12450          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12451          "type": "string"
12452        },
12453        "metadata": {
12454          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12455          "description": "Standard list metadata."
12456        }
12457      },
12458      "required": [
12459        "items"
12460      ],
12461      "type": "object",
12462      "x-kubernetes-group-version-kind": [
12463        {
12464          "group": "extensions",
12465          "kind": "DeploymentList",
12466          "version": "v1beta1"
12467        }
12468      ]
12469    },
12470    "io.k8s.api.extensions.v1beta1.DeploymentRollback": {
12471      "description": "DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.",
12472      "properties": {
12473        "apiVersion": {
12474          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12475          "type": "string"
12476        },
12477        "kind": {
12478          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12479          "type": "string"
12480        },
12481        "name": {
12482          "description": "Required: This must match the Name of a deployment.",
12483          "type": "string"
12484        },
12485        "rollbackTo": {
12486          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RollbackConfig",
12487          "description": "The config of this deployment rollback."
12488        },
12489        "updatedAnnotations": {
12490          "additionalProperties": {
12491            "type": "string"
12492          },
12493          "description": "The annotations to be updated to a deployment",
12494          "type": "object"
12495        }
12496      },
12497      "required": [
12498        "name",
12499        "rollbackTo"
12500      ],
12501      "type": "object",
12502      "x-kubernetes-group-version-kind": [
12503        {
12504          "group": "extensions",
12505          "kind": "DeploymentRollback",
12506          "version": "v1beta1"
12507        }
12508      ]
12509    },
12510    "io.k8s.api.extensions.v1beta1.DeploymentSpec": {
12511      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
12512      "properties": {
12513        "minReadySeconds": {
12514          "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)",
12515          "format": "int32",
12516          "type": "integer"
12517        },
12518        "paused": {
12519          "description": "Indicates that the deployment is paused and will not be processed by the deployment controller.",
12520          "type": "boolean"
12521        },
12522        "progressDeadlineSeconds": {
12523          "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"no deadline\".",
12524          "format": "int32",
12525          "type": "integer"
12526        },
12527        "replicas": {
12528          "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
12529          "format": "int32",
12530          "type": "integer"
12531        },
12532        "revisionHistoryLimit": {
12533          "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old ReplicaSets\".",
12534          "format": "int32",
12535          "type": "integer"
12536        },
12537        "rollbackTo": {
12538          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RollbackConfig",
12539          "description": "DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done."
12540        },
12541        "selector": {
12542          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
12543          "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment."
12544        },
12545        "strategy": {
12546          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStrategy",
12547          "description": "The deployment strategy to use to replace existing pods with new ones.",
12548          "x-kubernetes-patch-strategy": "retainKeys"
12549        },
12550        "template": {
12551          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
12552          "description": "Template describes the pods that will be created."
12553        }
12554      },
12555      "required": [
12556        "template"
12557      ],
12558      "type": "object"
12559    },
12560    "io.k8s.api.extensions.v1beta1.DeploymentStatus": {
12561      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
12562      "properties": {
12563        "availableReplicas": {
12564          "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
12565          "format": "int32",
12566          "type": "integer"
12567        },
12568        "collisionCount": {
12569          "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.",
12570          "format": "int32",
12571          "type": "integer"
12572        },
12573        "conditions": {
12574          "description": "Represents the latest available observations of a deployment's current state.",
12575          "items": {
12576            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentCondition"
12577          },
12578          "type": "array",
12579          "x-kubernetes-patch-merge-key": "type",
12580          "x-kubernetes-patch-strategy": "merge"
12581        },
12582        "observedGeneration": {
12583          "description": "The generation observed by the deployment controller.",
12584          "format": "int64",
12585          "type": "integer"
12586        },
12587        "readyReplicas": {
12588          "description": "Total number of ready pods targeted by this deployment.",
12589          "format": "int32",
12590          "type": "integer"
12591        },
12592        "replicas": {
12593          "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
12594          "format": "int32",
12595          "type": "integer"
12596        },
12597        "unavailableReplicas": {
12598          "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.",
12599          "format": "int32",
12600          "type": "integer"
12601        },
12602        "updatedReplicas": {
12603          "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
12604          "format": "int32",
12605          "type": "integer"
12606        }
12607      },
12608      "type": "object"
12609    },
12610    "io.k8s.api.extensions.v1beta1.DeploymentStrategy": {
12611      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
12612      "properties": {
12613        "rollingUpdate": {
12614          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RollingUpdateDeployment",
12615          "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
12616        },
12617        "type": {
12618          "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
12619          "type": "string"
12620        }
12621      },
12622      "type": "object"
12623    },
12624    "io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions": {
12625      "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use FSGroupStrategyOptions from policy API Group instead.",
12626      "properties": {
12627        "ranges": {
12628          "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.",
12629          "items": {
12630            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IDRange"
12631          },
12632          "type": "array"
12633        },
12634        "rule": {
12635          "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
12636          "type": "string"
12637        }
12638      },
12639      "type": "object"
12640    },
12641    "io.k8s.api.extensions.v1beta1.HTTPIngressPath": {
12642      "description": "HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.",
12643      "properties": {
12644        "backend": {
12645          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend",
12646          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
12647        },
12648        "path": {
12649          "description": "Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.",
12650          "type": "string"
12651        }
12652      },
12653      "required": [
12654        "backend"
12655      ],
12656      "type": "object"
12657    },
12658    "io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue": {
12659      "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 '#'.",
12660      "properties": {
12661        "paths": {
12662          "description": "A collection of paths that map requests to backends.",
12663          "items": {
12664            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressPath"
12665          },
12666          "type": "array"
12667        }
12668      },
12669      "required": [
12670        "paths"
12671      ],
12672      "type": "object"
12673    },
12674    "io.k8s.api.extensions.v1beta1.HostPortRange": {
12675      "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. Deprecated: use HostPortRange from policy API Group instead.",
12676      "properties": {
12677        "max": {
12678          "description": "max is the end of the range, inclusive.",
12679          "format": "int32",
12680          "type": "integer"
12681        },
12682        "min": {
12683          "description": "min is the start of the range, inclusive.",
12684          "format": "int32",
12685          "type": "integer"
12686        }
12687      },
12688      "required": [
12689        "min",
12690        "max"
12691      ],
12692      "type": "object"
12693    },
12694    "io.k8s.api.extensions.v1beta1.IDRange": {
12695      "description": "IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.",
12696      "properties": {
12697        "max": {
12698          "description": "max is the end of the range, inclusive.",
12699          "format": "int64",
12700          "type": "integer"
12701        },
12702        "min": {
12703          "description": "min is the start of the range, inclusive.",
12704          "format": "int64",
12705          "type": "integer"
12706        }
12707      },
12708      "required": [
12709        "min",
12710        "max"
12711      ],
12712      "type": "object"
12713    },
12714    "io.k8s.api.extensions.v1beta1.IPBlock": {
12715      "description": "DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock. IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
12716      "properties": {
12717        "cidr": {
12718          "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\"",
12719          "type": "string"
12720        },
12721        "except": {
12722          "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" Except values will be rejected if they are outside the CIDR range",
12723          "items": {
12724            "type": "string"
12725          },
12726          "type": "array"
12727        }
12728      },
12729      "required": [
12730        "cidr"
12731      ],
12732      "type": "object"
12733    },
12734    "io.k8s.api.extensions.v1beta1.Ingress": {
12735      "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. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.",
12736      "properties": {
12737        "apiVersion": {
12738          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12739          "type": "string"
12740        },
12741        "kind": {
12742          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12743          "type": "string"
12744        },
12745        "metadata": {
12746          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12747          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12748        },
12749        "spec": {
12750          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressSpec",
12751          "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"
12752        },
12753        "status": {
12754          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressStatus",
12755          "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"
12756        }
12757      },
12758      "type": "object",
12759      "x-kubernetes-group-version-kind": [
12760        {
12761          "group": "extensions",
12762          "kind": "Ingress",
12763          "version": "v1beta1"
12764        }
12765      ]
12766    },
12767    "io.k8s.api.extensions.v1beta1.IngressBackend": {
12768      "description": "IngressBackend describes all endpoints for a given service and port.",
12769      "properties": {
12770        "serviceName": {
12771          "description": "Specifies the name of the referenced service.",
12772          "type": "string"
12773        },
12774        "servicePort": {
12775          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
12776          "description": "Specifies the port of the referenced service."
12777        }
12778      },
12779      "required": [
12780        "serviceName",
12781        "servicePort"
12782      ],
12783      "type": "object"
12784    },
12785    "io.k8s.api.extensions.v1beta1.IngressList": {
12786      "description": "IngressList is a collection of Ingress.",
12787      "properties": {
12788        "apiVersion": {
12789          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12790          "type": "string"
12791        },
12792        "items": {
12793          "description": "Items is the list of Ingress.",
12794          "items": {
12795            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
12796          },
12797          "type": "array"
12798        },
12799        "kind": {
12800          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12801          "type": "string"
12802        },
12803        "metadata": {
12804          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12805          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12806        }
12807      },
12808      "required": [
12809        "items"
12810      ],
12811      "type": "object",
12812      "x-kubernetes-group-version-kind": [
12813        {
12814          "group": "extensions",
12815          "kind": "IngressList",
12816          "version": "v1beta1"
12817        }
12818      ]
12819    },
12820    "io.k8s.api.extensions.v1beta1.IngressRule": {
12821      "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.",
12822      "properties": {
12823        "host": {
12824          "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the\n\t  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.",
12825          "type": "string"
12826        },
12827        "http": {
12828          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue"
12829        }
12830      },
12831      "type": "object"
12832    },
12833    "io.k8s.api.extensions.v1beta1.IngressSpec": {
12834      "description": "IngressSpec describes the Ingress the user wishes to exist.",
12835      "properties": {
12836        "backend": {
12837          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressBackend",
12838          "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default."
12839        },
12840        "rules": {
12841          "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.",
12842          "items": {
12843            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressRule"
12844          },
12845          "type": "array"
12846        },
12847        "tls": {
12848          "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.",
12849          "items": {
12850            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressTLS"
12851          },
12852          "type": "array"
12853        }
12854      },
12855      "type": "object"
12856    },
12857    "io.k8s.api.extensions.v1beta1.IngressStatus": {
12858      "description": "IngressStatus describe the current state of the Ingress.",
12859      "properties": {
12860        "loadBalancer": {
12861          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
12862          "description": "LoadBalancer contains the current status of the load-balancer."
12863        }
12864      },
12865      "type": "object"
12866    },
12867    "io.k8s.api.extensions.v1beta1.IngressTLS": {
12868      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
12869      "properties": {
12870        "hosts": {
12871          "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.",
12872          "items": {
12873            "type": "string"
12874          },
12875          "type": "array"
12876        },
12877        "secretName": {
12878          "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
12879          "type": "string"
12880        }
12881      },
12882      "type": "object"
12883    },
12884    "io.k8s.api.extensions.v1beta1.NetworkPolicy": {
12885      "description": "DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods",
12886      "properties": {
12887        "apiVersion": {
12888          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12889          "type": "string"
12890        },
12891        "kind": {
12892          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12893          "type": "string"
12894        },
12895        "metadata": {
12896          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
12897          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12898        },
12899        "spec": {
12900          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicySpec",
12901          "description": "Specification of the desired behavior for this NetworkPolicy."
12902        }
12903      },
12904      "type": "object",
12905      "x-kubernetes-group-version-kind": [
12906        {
12907          "group": "extensions",
12908          "kind": "NetworkPolicy",
12909          "version": "v1beta1"
12910        }
12911      ]
12912    },
12913    "io.k8s.api.extensions.v1beta1.NetworkPolicyEgressRule": {
12914      "description": "DEPRECATED 1.9 - This group version of NetworkPolicyEgressRule is deprecated by networking/v1/NetworkPolicyEgressRule. NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
12915      "properties": {
12916        "ports": {
12917          "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.",
12918          "items": {
12919            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPort"
12920          },
12921          "type": "array"
12922        },
12923        "to": {
12924          "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.",
12925          "items": {
12926            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPeer"
12927          },
12928          "type": "array"
12929        }
12930      },
12931      "type": "object"
12932    },
12933    "io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule": {
12934      "description": "DEPRECATED 1.9 - This group version of NetworkPolicyIngressRule is deprecated by networking/v1/NetworkPolicyIngressRule. This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.",
12935      "properties": {
12936        "from": {
12937          "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.",
12938          "items": {
12939            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPeer"
12940          },
12941          "type": "array"
12942        },
12943        "ports": {
12944          "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.",
12945          "items": {
12946            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyPort"
12947          },
12948          "type": "array"
12949        }
12950      },
12951      "type": "object"
12952    },
12953    "io.k8s.api.extensions.v1beta1.NetworkPolicyList": {
12954      "description": "DEPRECATED 1.9 - This group version of NetworkPolicyList is deprecated by networking/v1/NetworkPolicyList. Network Policy List is a list of NetworkPolicy objects.",
12955      "properties": {
12956        "apiVersion": {
12957          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
12958          "type": "string"
12959        },
12960        "items": {
12961          "description": "Items is a list of schema objects.",
12962          "items": {
12963            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
12964          },
12965          "type": "array"
12966        },
12967        "kind": {
12968          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
12969          "type": "string"
12970        },
12971        "metadata": {
12972          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
12973          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
12974        }
12975      },
12976      "required": [
12977        "items"
12978      ],
12979      "type": "object",
12980      "x-kubernetes-group-version-kind": [
12981        {
12982          "group": "extensions",
12983          "kind": "NetworkPolicyList",
12984          "version": "v1beta1"
12985        }
12986      ]
12987    },
12988    "io.k8s.api.extensions.v1beta1.NetworkPolicyPeer": {
12989      "description": "DEPRECATED 1.9 - This group version of NetworkPolicyPeer is deprecated by networking/v1/NetworkPolicyPeer.",
12990      "properties": {
12991        "ipBlock": {
12992          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IPBlock",
12993          "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
12994        },
12995        "namespaceSelector": {
12996          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
12997          "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."
12998        },
12999        "podSelector": {
13000          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13001          "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."
13002        }
13003      },
13004      "type": "object"
13005    },
13006    "io.k8s.api.extensions.v1beta1.NetworkPolicyPort": {
13007      "description": "DEPRECATED 1.9 - This group version of NetworkPolicyPort is deprecated by networking/v1/NetworkPolicyPort.",
13008      "properties": {
13009        "port": {
13010          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13011          "description": "If specified, the port on the given protocol.  This can either be a numerical or named port on a pod.  If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched."
13012        },
13013        "protocol": {
13014          "description": "Optional.  The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
13015          "type": "string"
13016        }
13017      },
13018      "type": "object"
13019    },
13020    "io.k8s.api.extensions.v1beta1.NetworkPolicySpec": {
13021      "description": "DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.",
13022      "properties": {
13023        "egress": {
13024          "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",
13025          "items": {
13026            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyEgressRule"
13027          },
13028          "type": "array"
13029        },
13030        "ingress": {
13031          "description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default).",
13032          "items": {
13033            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule"
13034          },
13035          "type": "array"
13036        },
13037        "podSelector": {
13038          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13039          "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."
13040        },
13041        "policyTypes": {
13042          "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",
13043          "items": {
13044            "type": "string"
13045          },
13046          "type": "array"
13047        }
13048      },
13049      "required": [
13050        "podSelector"
13051      ],
13052      "type": "object"
13053    },
13054    "io.k8s.api.extensions.v1beta1.PodSecurityPolicy": {
13055      "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated: use PodSecurityPolicy from policy API Group instead.",
13056      "properties": {
13057        "apiVersion": {
13058          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13059          "type": "string"
13060        },
13061        "kind": {
13062          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13063          "type": "string"
13064        },
13065        "metadata": {
13066          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13067          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13068        },
13069        "spec": {
13070          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec",
13071          "description": "spec defines the policy enforced."
13072        }
13073      },
13074      "type": "object",
13075      "x-kubernetes-group-version-kind": [
13076        {
13077          "group": "extensions",
13078          "kind": "PodSecurityPolicy",
13079          "version": "v1beta1"
13080        }
13081      ]
13082    },
13083    "io.k8s.api.extensions.v1beta1.PodSecurityPolicyList": {
13084      "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects. Deprecated: use PodSecurityPolicyList from policy API Group instead.",
13085      "properties": {
13086        "apiVersion": {
13087          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13088          "type": "string"
13089        },
13090        "items": {
13091          "description": "items is a list of schema objects.",
13092          "items": {
13093            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
13094          },
13095          "type": "array"
13096        },
13097        "kind": {
13098          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13099          "type": "string"
13100        },
13101        "metadata": {
13102          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13103          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13104        }
13105      },
13106      "required": [
13107        "items"
13108      ],
13109      "type": "object",
13110      "x-kubernetes-group-version-kind": [
13111        {
13112          "group": "extensions",
13113          "kind": "PodSecurityPolicyList",
13114          "version": "v1beta1"
13115        }
13116      ]
13117    },
13118    "io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec": {
13119      "description": "PodSecurityPolicySpec defines the policy enforced. Deprecated: use PodSecurityPolicySpec from policy API Group instead.",
13120      "properties": {
13121        "allowPrivilegeEscalation": {
13122          "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
13123          "type": "boolean"
13124        },
13125        "allowedCSIDrivers": {
13126          "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 an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.",
13127          "items": {
13128            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.AllowedCSIDriver"
13129          },
13130          "type": "array"
13131        },
13132        "allowedCapabilities": {
13133          "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.",
13134          "items": {
13135            "type": "string"
13136          },
13137          "type": "array"
13138        },
13139        "allowedFlexVolumes": {
13140          "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.",
13141          "items": {
13142            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.AllowedFlexVolume"
13143          },
13144          "type": "array"
13145        },
13146        "allowedHostPaths": {
13147          "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.",
13148          "items": {
13149            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.AllowedHostPath"
13150          },
13151          "type": "array"
13152        },
13153        "allowedProcMountTypes": {
13154          "description": "AllowedProcMountTypes is an allowlist of ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.",
13155          "items": {
13156            "type": "string"
13157          },
13158          "type": "array"
13159        },
13160        "allowedUnsafeSysctls": {
13161          "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 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.",
13162          "items": {
13163            "type": "string"
13164          },
13165          "type": "array"
13166        },
13167        "defaultAddCapabilities": {
13168          "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.",
13169          "items": {
13170            "type": "string"
13171          },
13172          "type": "array"
13173        },
13174        "defaultAllowPrivilegeEscalation": {
13175          "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
13176          "type": "boolean"
13177        },
13178        "forbiddenSysctls": {
13179          "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.",
13180          "items": {
13181            "type": "string"
13182          },
13183          "type": "array"
13184        },
13185        "fsGroup": {
13186          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions",
13187          "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
13188        },
13189        "hostIPC": {
13190          "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
13191          "type": "boolean"
13192        },
13193        "hostNetwork": {
13194          "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
13195          "type": "boolean"
13196        },
13197        "hostPID": {
13198          "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
13199          "type": "boolean"
13200        },
13201        "hostPorts": {
13202          "description": "hostPorts determines which host port ranges are allowed to be exposed.",
13203          "items": {
13204            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.HostPortRange"
13205          },
13206          "type": "array"
13207        },
13208        "privileged": {
13209          "description": "privileged determines if a pod can request to be run as privileged.",
13210          "type": "boolean"
13211        },
13212        "readOnlyRootFilesystem": {
13213          "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.",
13214          "type": "boolean"
13215        },
13216        "requiredDropCapabilities": {
13217          "description": "requiredDropCapabilities are the capabilities that will be dropped from the container.  These are required to be dropped and cannot be added.",
13218          "items": {
13219            "type": "string"
13220          },
13221          "type": "array"
13222        },
13223        "runAsGroup": {
13224          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RunAsGroupStrategyOptions",
13225          "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."
13226        },
13227        "runAsUser": {
13228          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions",
13229          "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
13230        },
13231        "runtimeClass": {
13232          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RuntimeClassStrategyOptions",
13233          "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."
13234        },
13235        "seLinux": {
13236          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions",
13237          "description": "seLinux is the strategy that will dictate the allowable labels that may be set."
13238        },
13239        "supplementalGroups": {
13240          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions",
13241          "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
13242        },
13243        "volumes": {
13244          "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
13245          "items": {
13246            "type": "string"
13247          },
13248          "type": "array"
13249        }
13250      },
13251      "required": [
13252        "seLinux",
13253        "runAsUser",
13254        "supplementalGroups",
13255        "fsGroup"
13256      ],
13257      "type": "object"
13258    },
13259    "io.k8s.api.extensions.v1beta1.ReplicaSet": {
13260      "description": "DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
13261      "properties": {
13262        "apiVersion": {
13263          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13264          "type": "string"
13265        },
13266        "kind": {
13267          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13268          "type": "string"
13269        },
13270        "metadata": {
13271          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13272          "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"
13273        },
13274        "spec": {
13275          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetSpec",
13276          "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"
13277        },
13278        "status": {
13279          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetStatus",
13280          "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"
13281        }
13282      },
13283      "type": "object",
13284      "x-kubernetes-group-version-kind": [
13285        {
13286          "group": "extensions",
13287          "kind": "ReplicaSet",
13288          "version": "v1beta1"
13289        }
13290      ]
13291    },
13292    "io.k8s.api.extensions.v1beta1.ReplicaSetCondition": {
13293      "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
13294      "properties": {
13295        "lastTransitionTime": {
13296          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
13297          "description": "The last time the condition transitioned from one status to another."
13298        },
13299        "message": {
13300          "description": "A human readable message indicating details about the transition.",
13301          "type": "string"
13302        },
13303        "reason": {
13304          "description": "The reason for the condition's last transition.",
13305          "type": "string"
13306        },
13307        "status": {
13308          "description": "Status of the condition, one of True, False, Unknown.",
13309          "type": "string"
13310        },
13311        "type": {
13312          "description": "Type of replica set condition.",
13313          "type": "string"
13314        }
13315      },
13316      "required": [
13317        "type",
13318        "status"
13319      ],
13320      "type": "object"
13321    },
13322    "io.k8s.api.extensions.v1beta1.ReplicaSetList": {
13323      "description": "ReplicaSetList is a collection of ReplicaSets.",
13324      "properties": {
13325        "apiVersion": {
13326          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13327          "type": "string"
13328        },
13329        "items": {
13330          "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
13331          "items": {
13332            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
13333          },
13334          "type": "array"
13335        },
13336        "kind": {
13337          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13338          "type": "string"
13339        },
13340        "metadata": {
13341          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13342          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
13343        }
13344      },
13345      "required": [
13346        "items"
13347      ],
13348      "type": "object",
13349      "x-kubernetes-group-version-kind": [
13350        {
13351          "group": "extensions",
13352          "kind": "ReplicaSetList",
13353          "version": "v1beta1"
13354        }
13355      ]
13356    },
13357    "io.k8s.api.extensions.v1beta1.ReplicaSetSpec": {
13358      "description": "ReplicaSetSpec is the specification of a ReplicaSet.",
13359      "properties": {
13360        "minReadySeconds": {
13361          "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)",
13362          "format": "int32",
13363          "type": "integer"
13364        },
13365        "replicas": {
13366          "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",
13367          "format": "int32",
13368          "type": "integer"
13369        },
13370        "selector": {
13371          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13372          "description": "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
13373        },
13374        "template": {
13375          "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateSpec",
13376          "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"
13377        }
13378      },
13379      "type": "object"
13380    },
13381    "io.k8s.api.extensions.v1beta1.ReplicaSetStatus": {
13382      "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
13383      "properties": {
13384        "availableReplicas": {
13385          "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
13386          "format": "int32",
13387          "type": "integer"
13388        },
13389        "conditions": {
13390          "description": "Represents the latest available observations of a replica set's current state.",
13391          "items": {
13392            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetCondition"
13393          },
13394          "type": "array",
13395          "x-kubernetes-patch-merge-key": "type",
13396          "x-kubernetes-patch-strategy": "merge"
13397        },
13398        "fullyLabeledReplicas": {
13399          "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
13400          "format": "int32",
13401          "type": "integer"
13402        },
13403        "observedGeneration": {
13404          "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
13405          "format": "int64",
13406          "type": "integer"
13407        },
13408        "readyReplicas": {
13409          "description": "The number of ready replicas for this replica set.",
13410          "format": "int32",
13411          "type": "integer"
13412        },
13413        "replicas": {
13414          "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
13415          "format": "int32",
13416          "type": "integer"
13417        }
13418      },
13419      "required": [
13420        "replicas"
13421      ],
13422      "type": "object"
13423    },
13424    "io.k8s.api.extensions.v1beta1.RollbackConfig": {
13425      "description": "DEPRECATED.",
13426      "properties": {
13427        "revision": {
13428          "description": "The revision to rollback to. If set to 0, rollback to the last revision.",
13429          "format": "int64",
13430          "type": "integer"
13431        }
13432      },
13433      "type": "object"
13434    },
13435    "io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet": {
13436      "description": "Spec to control the desired behavior of daemon set rolling update.",
13437      "properties": {
13438        "maxUnavailable": {
13439          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13440          "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
13441        }
13442      },
13443      "type": "object"
13444    },
13445    "io.k8s.api.extensions.v1beta1.RollingUpdateDeployment": {
13446      "description": "Spec to control the desired behavior of rolling update.",
13447      "properties": {
13448        "maxSurge": {
13449          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13450          "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods."
13451        },
13452        "maxUnavailable": {
13453          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13454          "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods."
13455        }
13456      },
13457      "type": "object"
13458    },
13459    "io.k8s.api.extensions.v1beta1.RunAsGroupStrategyOptions": {
13460      "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsGroupStrategyOptions from policy API Group instead.",
13461      "properties": {
13462        "ranges": {
13463          "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.",
13464          "items": {
13465            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IDRange"
13466          },
13467          "type": "array"
13468        },
13469        "rule": {
13470          "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
13471          "type": "string"
13472        }
13473      },
13474      "required": [
13475        "rule"
13476      ],
13477      "type": "object"
13478    },
13479    "io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions": {
13480      "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsUserStrategyOptions from policy API Group instead.",
13481      "properties": {
13482        "ranges": {
13483          "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.",
13484          "items": {
13485            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IDRange"
13486          },
13487          "type": "array"
13488        },
13489        "rule": {
13490          "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
13491          "type": "string"
13492        }
13493      },
13494      "required": [
13495        "rule"
13496      ],
13497      "type": "object"
13498    },
13499    "io.k8s.api.extensions.v1beta1.RuntimeClassStrategyOptions": {
13500      "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
13501      "properties": {
13502        "allowedRuntimeClassNames": {
13503          "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.",
13504          "items": {
13505            "type": "string"
13506          },
13507          "type": "array"
13508        },
13509        "defaultRuntimeClassName": {
13510          "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.",
13511          "type": "string"
13512        }
13513      },
13514      "required": [
13515        "allowedRuntimeClassNames"
13516      ],
13517      "type": "object"
13518    },
13519    "io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions": {
13520      "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use SELinuxStrategyOptions from policy API Group instead.",
13521      "properties": {
13522        "rule": {
13523          "description": "rule is the strategy that will dictate the allowable labels that may be set.",
13524          "type": "string"
13525        },
13526        "seLinuxOptions": {
13527          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
13528          "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
13529        }
13530      },
13531      "required": [
13532        "rule"
13533      ],
13534      "type": "object"
13535    },
13536    "io.k8s.api.extensions.v1beta1.Scale": {
13537      "description": "represents a scaling request for a resource.",
13538      "properties": {
13539        "apiVersion": {
13540          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13541          "type": "string"
13542        },
13543        "kind": {
13544          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13545          "type": "string"
13546        },
13547        "metadata": {
13548          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13549          "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
13550        },
13551        "spec": {
13552          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ScaleSpec",
13553          "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
13554        },
13555        "status": {
13556          "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ScaleStatus",
13557          "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."
13558        }
13559      },
13560      "type": "object",
13561      "x-kubernetes-group-version-kind": [
13562        {
13563          "group": "extensions",
13564          "kind": "Scale",
13565          "version": "v1beta1"
13566        }
13567      ]
13568    },
13569    "io.k8s.api.extensions.v1beta1.ScaleSpec": {
13570      "description": "describes the attributes of a scale subresource",
13571      "properties": {
13572        "replicas": {
13573          "description": "desired number of instances for the scaled object.",
13574          "format": "int32",
13575          "type": "integer"
13576        }
13577      },
13578      "type": "object"
13579    },
13580    "io.k8s.api.extensions.v1beta1.ScaleStatus": {
13581      "description": "represents the current status of a scale subresource.",
13582      "properties": {
13583        "replicas": {
13584          "description": "actual number of observed instances of the scaled object.",
13585          "format": "int32",
13586          "type": "integer"
13587        },
13588        "selector": {
13589          "additionalProperties": {
13590            "type": "string"
13591          },
13592          "description": "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
13593          "type": "object"
13594        },
13595        "targetSelector": {
13596          "description": "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
13597          "type": "string"
13598        }
13599      },
13600      "required": [
13601        "replicas"
13602      ],
13603      "type": "object"
13604    },
13605    "io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions": {
13606      "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use SupplementalGroupsStrategyOptions from policy API Group instead.",
13607      "properties": {
13608        "ranges": {
13609          "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.",
13610          "items": {
13611            "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IDRange"
13612          },
13613          "type": "array"
13614        },
13615        "rule": {
13616          "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
13617          "type": "string"
13618        }
13619      },
13620      "type": "object"
13621    },
13622    "io.k8s.api.networking.v1.IPBlock": {
13623      "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
13624      "properties": {
13625        "cidr": {
13626          "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\"",
13627          "type": "string"
13628        },
13629        "except": {
13630          "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" Except values will be rejected if they are outside the CIDR range",
13631          "items": {
13632            "type": "string"
13633          },
13634          "type": "array"
13635        }
13636      },
13637      "required": [
13638        "cidr"
13639      ],
13640      "type": "object"
13641    },
13642    "io.k8s.api.networking.v1.NetworkPolicy": {
13643      "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
13644      "properties": {
13645        "apiVersion": {
13646          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13647          "type": "string"
13648        },
13649        "kind": {
13650          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13651          "type": "string"
13652        },
13653        "metadata": {
13654          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13655          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13656        },
13657        "spec": {
13658          "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicySpec",
13659          "description": "Specification of the desired behavior for this NetworkPolicy."
13660        }
13661      },
13662      "type": "object",
13663      "x-kubernetes-group-version-kind": [
13664        {
13665          "group": "networking.k8s.io",
13666          "kind": "NetworkPolicy",
13667          "version": "v1"
13668        }
13669      ]
13670    },
13671    "io.k8s.api.networking.v1.NetworkPolicyEgressRule": {
13672      "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",
13673      "properties": {
13674        "ports": {
13675          "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.",
13676          "items": {
13677            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
13678          },
13679          "type": "array"
13680        },
13681        "to": {
13682          "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.",
13683          "items": {
13684            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
13685          },
13686          "type": "array"
13687        }
13688      },
13689      "type": "object"
13690    },
13691    "io.k8s.api.networking.v1.NetworkPolicyIngressRule": {
13692      "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.",
13693      "properties": {
13694        "from": {
13695          "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.",
13696          "items": {
13697            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPeer"
13698          },
13699          "type": "array"
13700        },
13701        "ports": {
13702          "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.",
13703          "items": {
13704            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyPort"
13705          },
13706          "type": "array"
13707        }
13708      },
13709      "type": "object"
13710    },
13711    "io.k8s.api.networking.v1.NetworkPolicyList": {
13712      "description": "NetworkPolicyList is a list of NetworkPolicy objects.",
13713      "properties": {
13714        "apiVersion": {
13715          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13716          "type": "string"
13717        },
13718        "items": {
13719          "description": "Items is a list of schema objects.",
13720          "items": {
13721            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
13722          },
13723          "type": "array"
13724        },
13725        "kind": {
13726          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13727          "type": "string"
13728        },
13729        "metadata": {
13730          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13731          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
13732        }
13733      },
13734      "required": [
13735        "items"
13736      ],
13737      "type": "object",
13738      "x-kubernetes-group-version-kind": [
13739        {
13740          "group": "networking.k8s.io",
13741          "kind": "NetworkPolicyList",
13742          "version": "v1"
13743        }
13744      ]
13745    },
13746    "io.k8s.api.networking.v1.NetworkPolicyPeer": {
13747      "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed",
13748      "properties": {
13749        "ipBlock": {
13750          "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock",
13751          "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
13752        },
13753        "namespaceSelector": {
13754          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13755          "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."
13756        },
13757        "podSelector": {
13758          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13759          "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."
13760        }
13761      },
13762      "type": "object"
13763    },
13764    "io.k8s.api.networking.v1.NetworkPolicyPort": {
13765      "description": "NetworkPolicyPort describes a port to allow traffic on",
13766      "properties": {
13767        "port": {
13768          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13769          "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."
13770        },
13771        "protocol": {
13772          "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
13773          "type": "string"
13774        }
13775      },
13776      "type": "object"
13777    },
13778    "io.k8s.api.networking.v1.NetworkPolicySpec": {
13779      "description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
13780      "properties": {
13781        "egress": {
13782          "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",
13783          "items": {
13784            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyEgressRule"
13785          },
13786          "type": "array"
13787        },
13788        "ingress": {
13789          "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)",
13790          "items": {
13791            "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyIngressRule"
13792          },
13793          "type": "array"
13794        },
13795        "podSelector": {
13796          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
13797          "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."
13798        },
13799        "policyTypes": {
13800          "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",
13801          "items": {
13802            "type": "string"
13803          },
13804          "type": "array"
13805        }
13806      },
13807      "required": [
13808        "podSelector"
13809      ],
13810      "type": "object"
13811    },
13812    "io.k8s.api.networking.v1beta1.HTTPIngressPath": {
13813      "description": "HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.",
13814      "properties": {
13815        "backend": {
13816          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend",
13817          "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
13818        },
13819        "path": {
13820          "description": "Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.",
13821          "type": "string"
13822        }
13823      },
13824      "required": [
13825        "backend"
13826      ],
13827      "type": "object"
13828    },
13829    "io.k8s.api.networking.v1beta1.HTTPIngressRuleValue": {
13830      "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 '#'.",
13831      "properties": {
13832        "paths": {
13833          "description": "A collection of paths that map requests to backends.",
13834          "items": {
13835            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressPath"
13836          },
13837          "type": "array"
13838        }
13839      },
13840      "required": [
13841        "paths"
13842      ],
13843      "type": "object"
13844    },
13845    "io.k8s.api.networking.v1beta1.Ingress": {
13846      "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.",
13847      "properties": {
13848        "apiVersion": {
13849          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13850          "type": "string"
13851        },
13852        "kind": {
13853          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13854          "type": "string"
13855        },
13856        "metadata": {
13857          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
13858          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
13859        },
13860        "spec": {
13861          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressSpec",
13862          "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
13863        },
13864        "status": {
13865          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressStatus",
13866          "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
13867        }
13868      },
13869      "type": "object",
13870      "x-kubernetes-group-version-kind": [
13871        {
13872          "group": "networking.k8s.io",
13873          "kind": "Ingress",
13874          "version": "v1beta1"
13875        }
13876      ]
13877    },
13878    "io.k8s.api.networking.v1beta1.IngressBackend": {
13879      "description": "IngressBackend describes all endpoints for a given service and port.",
13880      "properties": {
13881        "serviceName": {
13882          "description": "Specifies the name of the referenced service.",
13883          "type": "string"
13884        },
13885        "servicePort": {
13886          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
13887          "description": "Specifies the port of the referenced service."
13888        }
13889      },
13890      "required": [
13891        "serviceName",
13892        "servicePort"
13893      ],
13894      "type": "object"
13895    },
13896    "io.k8s.api.networking.v1beta1.IngressList": {
13897      "description": "IngressList is a collection of Ingress.",
13898      "properties": {
13899        "apiVersion": {
13900          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
13901          "type": "string"
13902        },
13903        "items": {
13904          "description": "Items is the list of Ingress.",
13905          "items": {
13906            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
13907          },
13908          "type": "array"
13909        },
13910        "kind": {
13911          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
13912          "type": "string"
13913        },
13914        "metadata": {
13915          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
13916          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
13917        }
13918      },
13919      "required": [
13920        "items"
13921      ],
13922      "type": "object",
13923      "x-kubernetes-group-version-kind": [
13924        {
13925          "group": "networking.k8s.io",
13926          "kind": "IngressList",
13927          "version": "v1beta1"
13928        }
13929      ]
13930    },
13931    "io.k8s.api.networking.v1beta1.IngressRule": {
13932      "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.",
13933      "properties": {
13934        "host": {
13935          "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the\n\t  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.",
13936          "type": "string"
13937        },
13938        "http": {
13939          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.HTTPIngressRuleValue"
13940        }
13941      },
13942      "type": "object"
13943    },
13944    "io.k8s.api.networking.v1beta1.IngressSpec": {
13945      "description": "IngressSpec describes the Ingress the user wishes to exist.",
13946      "properties": {
13947        "backend": {
13948          "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressBackend",
13949          "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default."
13950        },
13951        "rules": {
13952          "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.",
13953          "items": {
13954            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressRule"
13955          },
13956          "type": "array"
13957        },
13958        "tls": {
13959          "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.",
13960          "items": {
13961            "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressTLS"
13962          },
13963          "type": "array"
13964        }
13965      },
13966      "type": "object"
13967    },
13968    "io.k8s.api.networking.v1beta1.IngressStatus": {
13969      "description": "IngressStatus describe the current state of the Ingress.",
13970      "properties": {
13971        "loadBalancer": {
13972          "$ref": "#/definitions/io.k8s.api.core.v1.LoadBalancerStatus",
13973          "description": "LoadBalancer contains the current status of the load-balancer."
13974        }
13975      },
13976      "type": "object"
13977    },
13978    "io.k8s.api.networking.v1beta1.IngressTLS": {
13979      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
13980      "properties": {
13981        "hosts": {
13982          "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.",
13983          "items": {
13984            "type": "string"
13985          },
13986          "type": "array"
13987        },
13988        "secretName": {
13989          "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
13990          "type": "string"
13991        }
13992      },
13993      "type": "object"
13994    },
13995    "io.k8s.api.node.v1alpha1.Overhead": {
13996      "description": "Overhead structure represents the resource overhead associated with running a pod.",
13997      "properties": {
13998        "podFixed": {
13999          "additionalProperties": {
14000            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
14001          },
14002          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
14003          "type": "object"
14004        }
14005      },
14006      "type": "object"
14007    },
14008    "io.k8s.api.node.v1alpha1.RuntimeClass": {
14009      "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/runtime-class.md",
14010      "properties": {
14011        "apiVersion": {
14012          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14013          "type": "string"
14014        },
14015        "kind": {
14016          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14017          "type": "string"
14018        },
14019        "metadata": {
14020          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14021          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
14022        },
14023        "spec": {
14024          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassSpec",
14025          "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
14026        }
14027      },
14028      "required": [
14029        "spec"
14030      ],
14031      "type": "object",
14032      "x-kubernetes-group-version-kind": [
14033        {
14034          "group": "node.k8s.io",
14035          "kind": "RuntimeClass",
14036          "version": "v1alpha1"
14037        }
14038      ]
14039    },
14040    "io.k8s.api.node.v1alpha1.RuntimeClassList": {
14041      "description": "RuntimeClassList is a list of RuntimeClass objects.",
14042      "properties": {
14043        "apiVersion": {
14044          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14045          "type": "string"
14046        },
14047        "items": {
14048          "description": "Items is a list of schema objects.",
14049          "items": {
14050            "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
14051          },
14052          "type": "array"
14053        },
14054        "kind": {
14055          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14056          "type": "string"
14057        },
14058        "metadata": {
14059          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14060          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
14061        }
14062      },
14063      "required": [
14064        "items"
14065      ],
14066      "type": "object",
14067      "x-kubernetes-group-version-kind": [
14068        {
14069          "group": "node.k8s.io",
14070          "kind": "RuntimeClassList",
14071          "version": "v1alpha1"
14072        }
14073      ]
14074    },
14075    "io.k8s.api.node.v1alpha1.RuntimeClassSpec": {
14076      "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.",
14077      "properties": {
14078        "overhead": {
14079          "$ref": "#/definitions/io.k8s.api.node.v1alpha1.Overhead",
14080          "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/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature."
14081        },
14082        "runtimeHandler": {
14083          "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 conform to the DNS Label (RFC 1123) requirements and is immutable.",
14084          "type": "string"
14085        }
14086      },
14087      "required": [
14088        "runtimeHandler"
14089      ],
14090      "type": "object"
14091    },
14092    "io.k8s.api.node.v1beta1.Overhead": {
14093      "description": "Overhead structure represents the resource overhead associated with running a pod.",
14094      "properties": {
14095        "podFixed": {
14096          "additionalProperties": {
14097            "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
14098          },
14099          "description": "PodFixed represents the fixed resource overhead associated with running a pod.",
14100          "type": "object"
14101        }
14102      },
14103      "type": "object"
14104    },
14105    "io.k8s.api.node.v1beta1.RuntimeClass": {
14106      "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/runtime-class.md",
14107      "properties": {
14108        "apiVersion": {
14109          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14110          "type": "string"
14111        },
14112        "handler": {
14113          "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 conform to the DNS Label (RFC 1123) requirements, and is immutable.",
14114          "type": "string"
14115        },
14116        "kind": {
14117          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14118          "type": "string"
14119        },
14120        "metadata": {
14121          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14122          "description": "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
14123        },
14124        "overhead": {
14125          "$ref": "#/definitions/io.k8s.api.node.v1beta1.Overhead",
14126          "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/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature."
14127        }
14128      },
14129      "required": [
14130        "handler"
14131      ],
14132      "type": "object",
14133      "x-kubernetes-group-version-kind": [
14134        {
14135          "group": "node.k8s.io",
14136          "kind": "RuntimeClass",
14137          "version": "v1beta1"
14138        }
14139      ]
14140    },
14141    "io.k8s.api.node.v1beta1.RuntimeClassList": {
14142      "description": "RuntimeClassList is a list of RuntimeClass objects.",
14143      "properties": {
14144        "apiVersion": {
14145          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14146          "type": "string"
14147        },
14148        "items": {
14149          "description": "Items is a list of schema objects.",
14150          "items": {
14151            "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
14152          },
14153          "type": "array"
14154        },
14155        "kind": {
14156          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14157          "type": "string"
14158        },
14159        "metadata": {
14160          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14161          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
14162        }
14163      },
14164      "required": [
14165        "items"
14166      ],
14167      "type": "object",
14168      "x-kubernetes-group-version-kind": [
14169        {
14170          "group": "node.k8s.io",
14171          "kind": "RuntimeClassList",
14172          "version": "v1beta1"
14173        }
14174      ]
14175    },
14176    "io.k8s.api.policy.v1beta1.AllowedCSIDriver": {
14177      "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
14178      "properties": {
14179        "name": {
14180          "description": "Name is the registered name of the CSI driver",
14181          "type": "string"
14182        }
14183      },
14184      "required": [
14185        "name"
14186      ],
14187      "type": "object"
14188    },
14189    "io.k8s.api.policy.v1beta1.AllowedFlexVolume": {
14190      "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.",
14191      "properties": {
14192        "driver": {
14193          "description": "driver is the name of the Flexvolume driver.",
14194          "type": "string"
14195        }
14196      },
14197      "required": [
14198        "driver"
14199      ],
14200      "type": "object"
14201    },
14202    "io.k8s.api.policy.v1beta1.AllowedHostPath": {
14203      "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.",
14204      "properties": {
14205        "pathPrefix": {
14206          "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`",
14207          "type": "string"
14208        },
14209        "readOnly": {
14210          "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
14211          "type": "boolean"
14212        }
14213      },
14214      "type": "object"
14215    },
14216    "io.k8s.api.policy.v1beta1.Eviction": {
14217      "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.",
14218      "properties": {
14219        "apiVersion": {
14220          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14221          "type": "string"
14222        },
14223        "deleteOptions": {
14224          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions",
14225          "description": "DeleteOptions may be provided"
14226        },
14227        "kind": {
14228          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14229          "type": "string"
14230        },
14231        "metadata": {
14232          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14233          "description": "ObjectMeta describes the pod that is being evicted."
14234        }
14235      },
14236      "type": "object",
14237      "x-kubernetes-group-version-kind": [
14238        {
14239          "group": "policy",
14240          "kind": "Eviction",
14241          "version": "v1beta1"
14242        }
14243      ]
14244    },
14245    "io.k8s.api.policy.v1beta1.FSGroupStrategyOptions": {
14246      "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
14247      "properties": {
14248        "ranges": {
14249          "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.",
14250          "items": {
14251            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14252          },
14253          "type": "array"
14254        },
14255        "rule": {
14256          "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
14257          "type": "string"
14258        }
14259      },
14260      "type": "object"
14261    },
14262    "io.k8s.api.policy.v1beta1.HostPortRange": {
14263      "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.",
14264      "properties": {
14265        "max": {
14266          "description": "max is the end of the range, inclusive.",
14267          "format": "int32",
14268          "type": "integer"
14269        },
14270        "min": {
14271          "description": "min is the start of the range, inclusive.",
14272          "format": "int32",
14273          "type": "integer"
14274        }
14275      },
14276      "required": [
14277        "min",
14278        "max"
14279      ],
14280      "type": "object"
14281    },
14282    "io.k8s.api.policy.v1beta1.IDRange": {
14283      "description": "IDRange provides a min/max of an allowed range of IDs.",
14284      "properties": {
14285        "max": {
14286          "description": "max is the end of the range, inclusive.",
14287          "format": "int64",
14288          "type": "integer"
14289        },
14290        "min": {
14291          "description": "min is the start of the range, inclusive.",
14292          "format": "int64",
14293          "type": "integer"
14294        }
14295      },
14296      "required": [
14297        "min",
14298        "max"
14299      ],
14300      "type": "object"
14301    },
14302    "io.k8s.api.policy.v1beta1.PodDisruptionBudget": {
14303      "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
14304      "properties": {
14305        "apiVersion": {
14306          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14307          "type": "string"
14308        },
14309        "kind": {
14310          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14311          "type": "string"
14312        },
14313        "metadata": {
14314          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
14315        },
14316        "spec": {
14317          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec",
14318          "description": "Specification of the desired behavior of the PodDisruptionBudget."
14319        },
14320        "status": {
14321          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus",
14322          "description": "Most recently observed status of the PodDisruptionBudget."
14323        }
14324      },
14325      "type": "object",
14326      "x-kubernetes-group-version-kind": [
14327        {
14328          "group": "policy",
14329          "kind": "PodDisruptionBudget",
14330          "version": "v1beta1"
14331        }
14332      ]
14333    },
14334    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetList": {
14335      "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
14336      "properties": {
14337        "apiVersion": {
14338          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14339          "type": "string"
14340        },
14341        "items": {
14342          "items": {
14343            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
14344          },
14345          "type": "array"
14346        },
14347        "kind": {
14348          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14349          "type": "string"
14350        },
14351        "metadata": {
14352          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
14353        }
14354      },
14355      "required": [
14356        "items"
14357      ],
14358      "type": "object",
14359      "x-kubernetes-group-version-kind": [
14360        {
14361          "group": "policy",
14362          "kind": "PodDisruptionBudgetList",
14363          "version": "v1beta1"
14364        }
14365      ]
14366    },
14367    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec": {
14368      "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
14369      "properties": {
14370        "maxUnavailable": {
14371          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
14372          "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\"."
14373        },
14374        "minAvailable": {
14375          "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
14376          "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%\"."
14377        },
14378        "selector": {
14379          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
14380          "description": "Label query over pods whose evictions are managed by the disruption budget."
14381        }
14382      },
14383      "type": "object"
14384    },
14385    "io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus": {
14386      "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
14387      "properties": {
14388        "currentHealthy": {
14389          "description": "current number of healthy pods",
14390          "format": "int32",
14391          "type": "integer"
14392        },
14393        "desiredHealthy": {
14394          "description": "minimum desired number of healthy pods",
14395          "format": "int32",
14396          "type": "integer"
14397        },
14398        "disruptedPods": {
14399          "additionalProperties": {
14400            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
14401          },
14402          "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.",
14403          "type": "object"
14404        },
14405        "disruptionsAllowed": {
14406          "description": "Number of pod disruptions that are currently allowed.",
14407          "format": "int32",
14408          "type": "integer"
14409        },
14410        "expectedPods": {
14411          "description": "total number of pods counted by this disruption budget",
14412          "format": "int32",
14413          "type": "integer"
14414        },
14415        "observedGeneration": {
14416          "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.",
14417          "format": "int64",
14418          "type": "integer"
14419        }
14420      },
14421      "required": [
14422        "disruptionsAllowed",
14423        "currentHealthy",
14424        "desiredHealthy",
14425        "expectedPods"
14426      ],
14427      "type": "object"
14428    },
14429    "io.k8s.api.policy.v1beta1.PodSecurityPolicy": {
14430      "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.",
14431      "properties": {
14432        "apiVersion": {
14433          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14434          "type": "string"
14435        },
14436        "kind": {
14437          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14438          "type": "string"
14439        },
14440        "metadata": {
14441          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14442          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
14443        },
14444        "spec": {
14445          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicySpec",
14446          "description": "spec defines the policy enforced."
14447        }
14448      },
14449      "type": "object",
14450      "x-kubernetes-group-version-kind": [
14451        {
14452          "group": "policy",
14453          "kind": "PodSecurityPolicy",
14454          "version": "v1beta1"
14455        }
14456      ]
14457    },
14458    "io.k8s.api.policy.v1beta1.PodSecurityPolicyList": {
14459      "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.",
14460      "properties": {
14461        "apiVersion": {
14462          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14463          "type": "string"
14464        },
14465        "items": {
14466          "description": "items is a list of schema objects.",
14467          "items": {
14468            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
14469          },
14470          "type": "array"
14471        },
14472        "kind": {
14473          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14474          "type": "string"
14475        },
14476        "metadata": {
14477          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14478          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
14479        }
14480      },
14481      "required": [
14482        "items"
14483      ],
14484      "type": "object",
14485      "x-kubernetes-group-version-kind": [
14486        {
14487          "group": "policy",
14488          "kind": "PodSecurityPolicyList",
14489          "version": "v1beta1"
14490        }
14491      ]
14492    },
14493    "io.k8s.api.policy.v1beta1.PodSecurityPolicySpec": {
14494      "description": "PodSecurityPolicySpec defines the policy enforced.",
14495      "properties": {
14496        "allowPrivilegeEscalation": {
14497          "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
14498          "type": "boolean"
14499        },
14500        "allowedCSIDrivers": {
14501          "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 an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.",
14502          "items": {
14503            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedCSIDriver"
14504          },
14505          "type": "array"
14506        },
14507        "allowedCapabilities": {
14508          "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.",
14509          "items": {
14510            "type": "string"
14511          },
14512          "type": "array"
14513        },
14514        "allowedFlexVolumes": {
14515          "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.",
14516          "items": {
14517            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedFlexVolume"
14518          },
14519          "type": "array"
14520        },
14521        "allowedHostPaths": {
14522          "description": "allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.",
14523          "items": {
14524            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.AllowedHostPath"
14525          },
14526          "type": "array"
14527        },
14528        "allowedProcMountTypes": {
14529          "description": "AllowedProcMountTypes is an allowlist of ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.",
14530          "items": {
14531            "type": "string"
14532          },
14533          "type": "array"
14534        },
14535        "allowedUnsafeSysctls": {
14536          "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 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.",
14537          "items": {
14538            "type": "string"
14539          },
14540          "type": "array"
14541        },
14542        "defaultAddCapabilities": {
14543          "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.",
14544          "items": {
14545            "type": "string"
14546          },
14547          "type": "array"
14548        },
14549        "defaultAllowPrivilegeEscalation": {
14550          "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
14551          "type": "boolean"
14552        },
14553        "forbiddenSysctls": {
14554          "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.",
14555          "items": {
14556            "type": "string"
14557          },
14558          "type": "array"
14559        },
14560        "fsGroup": {
14561          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.FSGroupStrategyOptions",
14562          "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
14563        },
14564        "hostIPC": {
14565          "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
14566          "type": "boolean"
14567        },
14568        "hostNetwork": {
14569          "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
14570          "type": "boolean"
14571        },
14572        "hostPID": {
14573          "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
14574          "type": "boolean"
14575        },
14576        "hostPorts": {
14577          "description": "hostPorts determines which host port ranges are allowed to be exposed.",
14578          "items": {
14579            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.HostPortRange"
14580          },
14581          "type": "array"
14582        },
14583        "privileged": {
14584          "description": "privileged determines if a pod can request to be run as privileged.",
14585          "type": "boolean"
14586        },
14587        "readOnlyRootFilesystem": {
14588          "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.",
14589          "type": "boolean"
14590        },
14591        "requiredDropCapabilities": {
14592          "description": "requiredDropCapabilities are the capabilities that will be dropped from the container.  These are required to be dropped and cannot be added.",
14593          "items": {
14594            "type": "string"
14595          },
14596          "type": "array"
14597        },
14598        "runAsGroup": {
14599          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions",
14600          "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."
14601        },
14602        "runAsUser": {
14603          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions",
14604          "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
14605        },
14606        "runtimeClass": {
14607          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions",
14608          "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."
14609        },
14610        "seLinux": {
14611          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SELinuxStrategyOptions",
14612          "description": "seLinux is the strategy that will dictate the allowable labels that may be set."
14613        },
14614        "supplementalGroups": {
14615          "$ref": "#/definitions/io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions",
14616          "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
14617        },
14618        "volumes": {
14619          "description": "volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
14620          "items": {
14621            "type": "string"
14622          },
14623          "type": "array"
14624        }
14625      },
14626      "required": [
14627        "seLinux",
14628        "runAsUser",
14629        "supplementalGroups",
14630        "fsGroup"
14631      ],
14632      "type": "object"
14633    },
14634    "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": {
14635      "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
14636      "properties": {
14637        "ranges": {
14638          "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.",
14639          "items": {
14640            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14641          },
14642          "type": "array"
14643        },
14644        "rule": {
14645          "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
14646          "type": "string"
14647        }
14648      },
14649      "required": [
14650        "rule"
14651      ],
14652      "type": "object"
14653    },
14654    "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": {
14655      "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.",
14656      "properties": {
14657        "ranges": {
14658          "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.",
14659          "items": {
14660            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14661          },
14662          "type": "array"
14663        },
14664        "rule": {
14665          "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
14666          "type": "string"
14667        }
14668      },
14669      "required": [
14670        "rule"
14671      ],
14672      "type": "object"
14673    },
14674    "io.k8s.api.policy.v1beta1.RuntimeClassStrategyOptions": {
14675      "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
14676      "properties": {
14677        "allowedRuntimeClassNames": {
14678          "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.",
14679          "items": {
14680            "type": "string"
14681          },
14682          "type": "array"
14683        },
14684        "defaultRuntimeClassName": {
14685          "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.",
14686          "type": "string"
14687        }
14688      },
14689      "required": [
14690        "allowedRuntimeClassNames"
14691      ],
14692      "type": "object"
14693    },
14694    "io.k8s.api.policy.v1beta1.SELinuxStrategyOptions": {
14695      "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
14696      "properties": {
14697        "rule": {
14698          "description": "rule is the strategy that will dictate the allowable labels that may be set.",
14699          "type": "string"
14700        },
14701        "seLinuxOptions": {
14702          "$ref": "#/definitions/io.k8s.api.core.v1.SELinuxOptions",
14703          "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
14704        }
14705      },
14706      "required": [
14707        "rule"
14708      ],
14709      "type": "object"
14710    },
14711    "io.k8s.api.policy.v1beta1.SupplementalGroupsStrategyOptions": {
14712      "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
14713      "properties": {
14714        "ranges": {
14715          "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.",
14716          "items": {
14717            "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange"
14718          },
14719          "type": "array"
14720        },
14721        "rule": {
14722          "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
14723          "type": "string"
14724        }
14725      },
14726      "type": "object"
14727    },
14728    "io.k8s.api.rbac.v1.AggregationRule": {
14729      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
14730      "properties": {
14731        "clusterRoleSelectors": {
14732          "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",
14733          "items": {
14734            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
14735          },
14736          "type": "array"
14737        }
14738      },
14739      "type": "object"
14740    },
14741    "io.k8s.api.rbac.v1.ClusterRole": {
14742      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
14743      "properties": {
14744        "aggregationRule": {
14745          "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule",
14746          "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."
14747        },
14748        "apiVersion": {
14749          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14750          "type": "string"
14751        },
14752        "kind": {
14753          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14754          "type": "string"
14755        },
14756        "metadata": {
14757          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14758          "description": "Standard object's metadata."
14759        },
14760        "rules": {
14761          "description": "Rules holds all the PolicyRules for this ClusterRole",
14762          "items": {
14763            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
14764          },
14765          "type": "array"
14766        }
14767      },
14768      "type": "object",
14769      "x-kubernetes-group-version-kind": [
14770        {
14771          "group": "rbac.authorization.k8s.io",
14772          "kind": "ClusterRole",
14773          "version": "v1"
14774        }
14775      ]
14776    },
14777    "io.k8s.api.rbac.v1.ClusterRoleBinding": {
14778      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
14779      "properties": {
14780        "apiVersion": {
14781          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14782          "type": "string"
14783        },
14784        "kind": {
14785          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14786          "type": "string"
14787        },
14788        "metadata": {
14789          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14790          "description": "Standard object's metadata."
14791        },
14792        "roleRef": {
14793          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
14794          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
14795        },
14796        "subjects": {
14797          "description": "Subjects holds references to the objects the role applies to.",
14798          "items": {
14799            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
14800          },
14801          "type": "array"
14802        }
14803      },
14804      "required": [
14805        "roleRef"
14806      ],
14807      "type": "object",
14808      "x-kubernetes-group-version-kind": [
14809        {
14810          "group": "rbac.authorization.k8s.io",
14811          "kind": "ClusterRoleBinding",
14812          "version": "v1"
14813        }
14814      ]
14815    },
14816    "io.k8s.api.rbac.v1.ClusterRoleBindingList": {
14817      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
14818      "properties": {
14819        "apiVersion": {
14820          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14821          "type": "string"
14822        },
14823        "items": {
14824          "description": "Items is a list of ClusterRoleBindings",
14825          "items": {
14826            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
14827          },
14828          "type": "array"
14829        },
14830        "kind": {
14831          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14832          "type": "string"
14833        },
14834        "metadata": {
14835          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14836          "description": "Standard object's metadata."
14837        }
14838      },
14839      "required": [
14840        "items"
14841      ],
14842      "type": "object",
14843      "x-kubernetes-group-version-kind": [
14844        {
14845          "group": "rbac.authorization.k8s.io",
14846          "kind": "ClusterRoleBindingList",
14847          "version": "v1"
14848        }
14849      ]
14850    },
14851    "io.k8s.api.rbac.v1.ClusterRoleList": {
14852      "description": "ClusterRoleList is a collection of ClusterRoles",
14853      "properties": {
14854        "apiVersion": {
14855          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14856          "type": "string"
14857        },
14858        "items": {
14859          "description": "Items is a list of ClusterRoles",
14860          "items": {
14861            "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
14862          },
14863          "type": "array"
14864        },
14865        "kind": {
14866          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14867          "type": "string"
14868        },
14869        "metadata": {
14870          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
14871          "description": "Standard object's metadata."
14872        }
14873      },
14874      "required": [
14875        "items"
14876      ],
14877      "type": "object",
14878      "x-kubernetes-group-version-kind": [
14879        {
14880          "group": "rbac.authorization.k8s.io",
14881          "kind": "ClusterRoleList",
14882          "version": "v1"
14883        }
14884      ]
14885    },
14886    "io.k8s.api.rbac.v1.PolicyRule": {
14887      "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.",
14888      "properties": {
14889        "apiGroups": {
14890          "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.",
14891          "items": {
14892            "type": "string"
14893          },
14894          "type": "array"
14895        },
14896        "nonResourceURLs": {
14897          "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.",
14898          "items": {
14899            "type": "string"
14900          },
14901          "type": "array"
14902        },
14903        "resourceNames": {
14904          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
14905          "items": {
14906            "type": "string"
14907          },
14908          "type": "array"
14909        },
14910        "resources": {
14911          "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
14912          "items": {
14913            "type": "string"
14914          },
14915          "type": "array"
14916        },
14917        "verbs": {
14918          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
14919          "items": {
14920            "type": "string"
14921          },
14922          "type": "array"
14923        }
14924      },
14925      "required": [
14926        "verbs"
14927      ],
14928      "type": "object"
14929    },
14930    "io.k8s.api.rbac.v1.Role": {
14931      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
14932      "properties": {
14933        "apiVersion": {
14934          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14935          "type": "string"
14936        },
14937        "kind": {
14938          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14939          "type": "string"
14940        },
14941        "metadata": {
14942          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14943          "description": "Standard object's metadata."
14944        },
14945        "rules": {
14946          "description": "Rules holds all the PolicyRules for this Role",
14947          "items": {
14948            "$ref": "#/definitions/io.k8s.api.rbac.v1.PolicyRule"
14949          },
14950          "type": "array"
14951        }
14952      },
14953      "type": "object",
14954      "x-kubernetes-group-version-kind": [
14955        {
14956          "group": "rbac.authorization.k8s.io",
14957          "kind": "Role",
14958          "version": "v1"
14959        }
14960      ]
14961    },
14962    "io.k8s.api.rbac.v1.RoleBinding": {
14963      "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.",
14964      "properties": {
14965        "apiVersion": {
14966          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
14967          "type": "string"
14968        },
14969        "kind": {
14970          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
14971          "type": "string"
14972        },
14973        "metadata": {
14974          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
14975          "description": "Standard object's metadata."
14976        },
14977        "roleRef": {
14978          "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleRef",
14979          "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."
14980        },
14981        "subjects": {
14982          "description": "Subjects holds references to the objects the role applies to.",
14983          "items": {
14984            "$ref": "#/definitions/io.k8s.api.rbac.v1.Subject"
14985          },
14986          "type": "array"
14987        }
14988      },
14989      "required": [
14990        "roleRef"
14991      ],
14992      "type": "object",
14993      "x-kubernetes-group-version-kind": [
14994        {
14995          "group": "rbac.authorization.k8s.io",
14996          "kind": "RoleBinding",
14997          "version": "v1"
14998        }
14999      ]
15000    },
15001    "io.k8s.api.rbac.v1.RoleBindingList": {
15002      "description": "RoleBindingList is a collection of RoleBindings",
15003      "properties": {
15004        "apiVersion": {
15005          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15006          "type": "string"
15007        },
15008        "items": {
15009          "description": "Items is a list of RoleBindings",
15010          "items": {
15011            "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
15012          },
15013          "type": "array"
15014        },
15015        "kind": {
15016          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15017          "type": "string"
15018        },
15019        "metadata": {
15020          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15021          "description": "Standard object's metadata."
15022        }
15023      },
15024      "required": [
15025        "items"
15026      ],
15027      "type": "object",
15028      "x-kubernetes-group-version-kind": [
15029        {
15030          "group": "rbac.authorization.k8s.io",
15031          "kind": "RoleBindingList",
15032          "version": "v1"
15033        }
15034      ]
15035    },
15036    "io.k8s.api.rbac.v1.RoleList": {
15037      "description": "RoleList is a collection of Roles",
15038      "properties": {
15039        "apiVersion": {
15040          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15041          "type": "string"
15042        },
15043        "items": {
15044          "description": "Items is a list of Roles",
15045          "items": {
15046            "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
15047          },
15048          "type": "array"
15049        },
15050        "kind": {
15051          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15052          "type": "string"
15053        },
15054        "metadata": {
15055          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15056          "description": "Standard object's metadata."
15057        }
15058      },
15059      "required": [
15060        "items"
15061      ],
15062      "type": "object",
15063      "x-kubernetes-group-version-kind": [
15064        {
15065          "group": "rbac.authorization.k8s.io",
15066          "kind": "RoleList",
15067          "version": "v1"
15068        }
15069      ]
15070    },
15071    "io.k8s.api.rbac.v1.RoleRef": {
15072      "description": "RoleRef contains information that points to the role being used",
15073      "properties": {
15074        "apiGroup": {
15075          "description": "APIGroup is the group for the resource being referenced",
15076          "type": "string"
15077        },
15078        "kind": {
15079          "description": "Kind is the type of resource being referenced",
15080          "type": "string"
15081        },
15082        "name": {
15083          "description": "Name is the name of resource being referenced",
15084          "type": "string"
15085        }
15086      },
15087      "required": [
15088        "apiGroup",
15089        "kind",
15090        "name"
15091      ],
15092      "type": "object"
15093    },
15094    "io.k8s.api.rbac.v1.Subject": {
15095      "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.",
15096      "properties": {
15097        "apiGroup": {
15098          "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.",
15099          "type": "string"
15100        },
15101        "kind": {
15102          "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.",
15103          "type": "string"
15104        },
15105        "name": {
15106          "description": "Name of the object being referenced.",
15107          "type": "string"
15108        },
15109        "namespace": {
15110          "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.",
15111          "type": "string"
15112        }
15113      },
15114      "required": [
15115        "kind",
15116        "name"
15117      ],
15118      "type": "object"
15119    },
15120    "io.k8s.api.rbac.v1alpha1.AggregationRule": {
15121      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
15122      "properties": {
15123        "clusterRoleSelectors": {
15124          "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",
15125          "items": {
15126            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
15127          },
15128          "type": "array"
15129        }
15130      },
15131      "type": "object"
15132    },
15133    "io.k8s.api.rbac.v1alpha1.ClusterRole": {
15134      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
15135      "properties": {
15136        "aggregationRule": {
15137          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.AggregationRule",
15138          "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."
15139        },
15140        "apiVersion": {
15141          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15142          "type": "string"
15143        },
15144        "kind": {
15145          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15146          "type": "string"
15147        },
15148        "metadata": {
15149          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15150          "description": "Standard object's metadata."
15151        },
15152        "rules": {
15153          "description": "Rules holds all the PolicyRules for this ClusterRole",
15154          "items": {
15155            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
15156          },
15157          "type": "array"
15158        }
15159      },
15160      "type": "object",
15161      "x-kubernetes-group-version-kind": [
15162        {
15163          "group": "rbac.authorization.k8s.io",
15164          "kind": "ClusterRole",
15165          "version": "v1alpha1"
15166        }
15167      ]
15168    },
15169    "io.k8s.api.rbac.v1alpha1.ClusterRoleBinding": {
15170      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
15171      "properties": {
15172        "apiVersion": {
15173          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15174          "type": "string"
15175        },
15176        "kind": {
15177          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15178          "type": "string"
15179        },
15180        "metadata": {
15181          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15182          "description": "Standard object's metadata."
15183        },
15184        "roleRef": {
15185          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
15186          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
15187        },
15188        "subjects": {
15189          "description": "Subjects holds references to the objects the role applies to.",
15190          "items": {
15191            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
15192          },
15193          "type": "array"
15194        }
15195      },
15196      "required": [
15197        "roleRef"
15198      ],
15199      "type": "object",
15200      "x-kubernetes-group-version-kind": [
15201        {
15202          "group": "rbac.authorization.k8s.io",
15203          "kind": "ClusterRoleBinding",
15204          "version": "v1alpha1"
15205        }
15206      ]
15207    },
15208    "io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList": {
15209      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
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/api-conventions.md#resources",
15213          "type": "string"
15214        },
15215        "items": {
15216          "description": "Items is a list of ClusterRoleBindings",
15217          "items": {
15218            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
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/api-conventions.md#types-kinds",
15224          "type": "string"
15225        },
15226        "metadata": {
15227          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15228          "description": "Standard object's metadata."
15229        }
15230      },
15231      "required": [
15232        "items"
15233      ],
15234      "type": "object",
15235      "x-kubernetes-group-version-kind": [
15236        {
15237          "group": "rbac.authorization.k8s.io",
15238          "kind": "ClusterRoleBindingList",
15239          "version": "v1alpha1"
15240        }
15241      ]
15242    },
15243    "io.k8s.api.rbac.v1alpha1.ClusterRoleList": {
15244      "description": "ClusterRoleList is a collection of ClusterRoles",
15245      "properties": {
15246        "apiVersion": {
15247          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15248          "type": "string"
15249        },
15250        "items": {
15251          "description": "Items is a list of ClusterRoles",
15252          "items": {
15253            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
15254          },
15255          "type": "array"
15256        },
15257        "kind": {
15258          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15259          "type": "string"
15260        },
15261        "metadata": {
15262          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15263          "description": "Standard object's metadata."
15264        }
15265      },
15266      "required": [
15267        "items"
15268      ],
15269      "type": "object",
15270      "x-kubernetes-group-version-kind": [
15271        {
15272          "group": "rbac.authorization.k8s.io",
15273          "kind": "ClusterRoleList",
15274          "version": "v1alpha1"
15275        }
15276      ]
15277    },
15278    "io.k8s.api.rbac.v1alpha1.PolicyRule": {
15279      "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.",
15280      "properties": {
15281        "apiGroups": {
15282          "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.",
15283          "items": {
15284            "type": "string"
15285          },
15286          "type": "array"
15287        },
15288        "nonResourceURLs": {
15289          "description": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different. Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"),  but not both.",
15290          "items": {
15291            "type": "string"
15292          },
15293          "type": "array"
15294        },
15295        "resourceNames": {
15296          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
15297          "items": {
15298            "type": "string"
15299          },
15300          "type": "array"
15301        },
15302        "resources": {
15303          "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
15304          "items": {
15305            "type": "string"
15306          },
15307          "type": "array"
15308        },
15309        "verbs": {
15310          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
15311          "items": {
15312            "type": "string"
15313          },
15314          "type": "array"
15315        }
15316      },
15317      "required": [
15318        "verbs"
15319      ],
15320      "type": "object"
15321    },
15322    "io.k8s.api.rbac.v1alpha1.Role": {
15323      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
15324      "properties": {
15325        "apiVersion": {
15326          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15327          "type": "string"
15328        },
15329        "kind": {
15330          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15331          "type": "string"
15332        },
15333        "metadata": {
15334          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15335          "description": "Standard object's metadata."
15336        },
15337        "rules": {
15338          "description": "Rules holds all the PolicyRules for this Role",
15339          "items": {
15340            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.PolicyRule"
15341          },
15342          "type": "array"
15343        }
15344      },
15345      "type": "object",
15346      "x-kubernetes-group-version-kind": [
15347        {
15348          "group": "rbac.authorization.k8s.io",
15349          "kind": "Role",
15350          "version": "v1alpha1"
15351        }
15352      ]
15353    },
15354    "io.k8s.api.rbac.v1alpha1.RoleBinding": {
15355      "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.",
15356      "properties": {
15357        "apiVersion": {
15358          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15359          "type": "string"
15360        },
15361        "kind": {
15362          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15363          "type": "string"
15364        },
15365        "metadata": {
15366          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15367          "description": "Standard object's metadata."
15368        },
15369        "roleRef": {
15370          "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleRef",
15371          "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."
15372        },
15373        "subjects": {
15374          "description": "Subjects holds references to the objects the role applies to.",
15375          "items": {
15376            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Subject"
15377          },
15378          "type": "array"
15379        }
15380      },
15381      "required": [
15382        "roleRef"
15383      ],
15384      "type": "object",
15385      "x-kubernetes-group-version-kind": [
15386        {
15387          "group": "rbac.authorization.k8s.io",
15388          "kind": "RoleBinding",
15389          "version": "v1alpha1"
15390        }
15391      ]
15392    },
15393    "io.k8s.api.rbac.v1alpha1.RoleBindingList": {
15394      "description": "RoleBindingList is a collection of RoleBindings",
15395      "properties": {
15396        "apiVersion": {
15397          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15398          "type": "string"
15399        },
15400        "items": {
15401          "description": "Items is a list of RoleBindings",
15402          "items": {
15403            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
15404          },
15405          "type": "array"
15406        },
15407        "kind": {
15408          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15409          "type": "string"
15410        },
15411        "metadata": {
15412          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15413          "description": "Standard object's metadata."
15414        }
15415      },
15416      "required": [
15417        "items"
15418      ],
15419      "type": "object",
15420      "x-kubernetes-group-version-kind": [
15421        {
15422          "group": "rbac.authorization.k8s.io",
15423          "kind": "RoleBindingList",
15424          "version": "v1alpha1"
15425        }
15426      ]
15427    },
15428    "io.k8s.api.rbac.v1alpha1.RoleList": {
15429      "description": "RoleList is a collection of Roles",
15430      "properties": {
15431        "apiVersion": {
15432          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15433          "type": "string"
15434        },
15435        "items": {
15436          "description": "Items is a list of Roles",
15437          "items": {
15438            "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
15439          },
15440          "type": "array"
15441        },
15442        "kind": {
15443          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15444          "type": "string"
15445        },
15446        "metadata": {
15447          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15448          "description": "Standard object's metadata."
15449        }
15450      },
15451      "required": [
15452        "items"
15453      ],
15454      "type": "object",
15455      "x-kubernetes-group-version-kind": [
15456        {
15457          "group": "rbac.authorization.k8s.io",
15458          "kind": "RoleList",
15459          "version": "v1alpha1"
15460        }
15461      ]
15462    },
15463    "io.k8s.api.rbac.v1alpha1.RoleRef": {
15464      "description": "RoleRef contains information that points to the role being used",
15465      "properties": {
15466        "apiGroup": {
15467          "description": "APIGroup is the group for the resource being referenced",
15468          "type": "string"
15469        },
15470        "kind": {
15471          "description": "Kind is the type of resource being referenced",
15472          "type": "string"
15473        },
15474        "name": {
15475          "description": "Name is the name of resource being referenced",
15476          "type": "string"
15477        }
15478      },
15479      "required": [
15480        "apiGroup",
15481        "kind",
15482        "name"
15483      ],
15484      "type": "object"
15485    },
15486    "io.k8s.api.rbac.v1alpha1.Subject": {
15487      "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.",
15488      "properties": {
15489        "apiVersion": {
15490          "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.",
15491          "type": "string"
15492        },
15493        "kind": {
15494          "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.",
15495          "type": "string"
15496        },
15497        "name": {
15498          "description": "Name of the object being referenced.",
15499          "type": "string"
15500        },
15501        "namespace": {
15502          "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.",
15503          "type": "string"
15504        }
15505      },
15506      "required": [
15507        "kind",
15508        "name"
15509      ],
15510      "type": "object"
15511    },
15512    "io.k8s.api.rbac.v1beta1.AggregationRule": {
15513      "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
15514      "properties": {
15515        "clusterRoleSelectors": {
15516          "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",
15517          "items": {
15518            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
15519          },
15520          "type": "array"
15521        }
15522      },
15523      "type": "object"
15524    },
15525    "io.k8s.api.rbac.v1beta1.ClusterRole": {
15526      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
15527      "properties": {
15528        "aggregationRule": {
15529          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.AggregationRule",
15530          "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."
15531        },
15532        "apiVersion": {
15533          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15534          "type": "string"
15535        },
15536        "kind": {
15537          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15538          "type": "string"
15539        },
15540        "metadata": {
15541          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15542          "description": "Standard object's metadata."
15543        },
15544        "rules": {
15545          "description": "Rules holds all the PolicyRules for this ClusterRole",
15546          "items": {
15547            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule"
15548          },
15549          "type": "array"
15550        }
15551      },
15552      "type": "object",
15553      "x-kubernetes-group-version-kind": [
15554        {
15555          "group": "rbac.authorization.k8s.io",
15556          "kind": "ClusterRole",
15557          "version": "v1beta1"
15558        }
15559      ]
15560    },
15561    "io.k8s.api.rbac.v1beta1.ClusterRoleBinding": {
15562      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
15563      "properties": {
15564        "apiVersion": {
15565          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15566          "type": "string"
15567        },
15568        "kind": {
15569          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15570          "type": "string"
15571        },
15572        "metadata": {
15573          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15574          "description": "Standard object's metadata."
15575        },
15576        "roleRef": {
15577          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef",
15578          "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
15579        },
15580        "subjects": {
15581          "description": "Subjects holds references to the objects the role applies to.",
15582          "items": {
15583            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject"
15584          },
15585          "type": "array"
15586        }
15587      },
15588      "required": [
15589        "roleRef"
15590      ],
15591      "type": "object",
15592      "x-kubernetes-group-version-kind": [
15593        {
15594          "group": "rbac.authorization.k8s.io",
15595          "kind": "ClusterRoleBinding",
15596          "version": "v1beta1"
15597        }
15598      ]
15599    },
15600    "io.k8s.api.rbac.v1beta1.ClusterRoleBindingList": {
15601      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
15602      "properties": {
15603        "apiVersion": {
15604          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15605          "type": "string"
15606        },
15607        "items": {
15608          "description": "Items is a list of ClusterRoleBindings",
15609          "items": {
15610            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
15611          },
15612          "type": "array"
15613        },
15614        "kind": {
15615          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15616          "type": "string"
15617        },
15618        "metadata": {
15619          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15620          "description": "Standard object's metadata."
15621        }
15622      },
15623      "required": [
15624        "items"
15625      ],
15626      "type": "object",
15627      "x-kubernetes-group-version-kind": [
15628        {
15629          "group": "rbac.authorization.k8s.io",
15630          "kind": "ClusterRoleBindingList",
15631          "version": "v1beta1"
15632        }
15633      ]
15634    },
15635    "io.k8s.api.rbac.v1beta1.ClusterRoleList": {
15636      "description": "ClusterRoleList is a collection of ClusterRoles",
15637      "properties": {
15638        "apiVersion": {
15639          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15640          "type": "string"
15641        },
15642        "items": {
15643          "description": "Items is a list of ClusterRoles",
15644          "items": {
15645            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
15646          },
15647          "type": "array"
15648        },
15649        "kind": {
15650          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15651          "type": "string"
15652        },
15653        "metadata": {
15654          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15655          "description": "Standard object's metadata."
15656        }
15657      },
15658      "required": [
15659        "items"
15660      ],
15661      "type": "object",
15662      "x-kubernetes-group-version-kind": [
15663        {
15664          "group": "rbac.authorization.k8s.io",
15665          "kind": "ClusterRoleList",
15666          "version": "v1beta1"
15667        }
15668      ]
15669    },
15670    "io.k8s.api.rbac.v1beta1.PolicyRule": {
15671      "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.",
15672      "properties": {
15673        "apiGroups": {
15674          "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.",
15675          "items": {
15676            "type": "string"
15677          },
15678          "type": "array"
15679        },
15680        "nonResourceURLs": {
15681          "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.",
15682          "items": {
15683            "type": "string"
15684          },
15685          "type": "array"
15686        },
15687        "resourceNames": {
15688          "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
15689          "items": {
15690            "type": "string"
15691          },
15692          "type": "array"
15693        },
15694        "resources": {
15695          "description": "Resources is a list of resources this rule applies to.  '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.",
15696          "items": {
15697            "type": "string"
15698          },
15699          "type": "array"
15700        },
15701        "verbs": {
15702          "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
15703          "items": {
15704            "type": "string"
15705          },
15706          "type": "array"
15707        }
15708      },
15709      "required": [
15710        "verbs"
15711      ],
15712      "type": "object"
15713    },
15714    "io.k8s.api.rbac.v1beta1.Role": {
15715      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
15716      "properties": {
15717        "apiVersion": {
15718          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15719          "type": "string"
15720        },
15721        "kind": {
15722          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15723          "type": "string"
15724        },
15725        "metadata": {
15726          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15727          "description": "Standard object's metadata."
15728        },
15729        "rules": {
15730          "description": "Rules holds all the PolicyRules for this Role",
15731          "items": {
15732            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.PolicyRule"
15733          },
15734          "type": "array"
15735        }
15736      },
15737      "type": "object",
15738      "x-kubernetes-group-version-kind": [
15739        {
15740          "group": "rbac.authorization.k8s.io",
15741          "kind": "Role",
15742          "version": "v1beta1"
15743        }
15744      ]
15745    },
15746    "io.k8s.api.rbac.v1beta1.RoleBinding": {
15747      "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.",
15748      "properties": {
15749        "apiVersion": {
15750          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15751          "type": "string"
15752        },
15753        "kind": {
15754          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15755          "type": "string"
15756        },
15757        "metadata": {
15758          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15759          "description": "Standard object's metadata."
15760        },
15761        "roleRef": {
15762          "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleRef",
15763          "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."
15764        },
15765        "subjects": {
15766          "description": "Subjects holds references to the objects the role applies to.",
15767          "items": {
15768            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Subject"
15769          },
15770          "type": "array"
15771        }
15772      },
15773      "required": [
15774        "roleRef"
15775      ],
15776      "type": "object",
15777      "x-kubernetes-group-version-kind": [
15778        {
15779          "group": "rbac.authorization.k8s.io",
15780          "kind": "RoleBinding",
15781          "version": "v1beta1"
15782        }
15783      ]
15784    },
15785    "io.k8s.api.rbac.v1beta1.RoleBindingList": {
15786      "description": "RoleBindingList is a collection of RoleBindings",
15787      "properties": {
15788        "apiVersion": {
15789          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15790          "type": "string"
15791        },
15792        "items": {
15793          "description": "Items is a list of RoleBindings",
15794          "items": {
15795            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
15796          },
15797          "type": "array"
15798        },
15799        "kind": {
15800          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15801          "type": "string"
15802        },
15803        "metadata": {
15804          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15805          "description": "Standard object's metadata."
15806        }
15807      },
15808      "required": [
15809        "items"
15810      ],
15811      "type": "object",
15812      "x-kubernetes-group-version-kind": [
15813        {
15814          "group": "rbac.authorization.k8s.io",
15815          "kind": "RoleBindingList",
15816          "version": "v1beta1"
15817        }
15818      ]
15819    },
15820    "io.k8s.api.rbac.v1beta1.RoleList": {
15821      "description": "RoleList is a collection of Roles",
15822      "properties": {
15823        "apiVersion": {
15824          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15825          "type": "string"
15826        },
15827        "items": {
15828          "description": "Items is a list of Roles",
15829          "items": {
15830            "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
15831          },
15832          "type": "array"
15833        },
15834        "kind": {
15835          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15836          "type": "string"
15837        },
15838        "metadata": {
15839          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15840          "description": "Standard object's metadata."
15841        }
15842      },
15843      "required": [
15844        "items"
15845      ],
15846      "type": "object",
15847      "x-kubernetes-group-version-kind": [
15848        {
15849          "group": "rbac.authorization.k8s.io",
15850          "kind": "RoleList",
15851          "version": "v1beta1"
15852        }
15853      ]
15854    },
15855    "io.k8s.api.rbac.v1beta1.RoleRef": {
15856      "description": "RoleRef contains information that points to the role being used",
15857      "properties": {
15858        "apiGroup": {
15859          "description": "APIGroup is the group for the resource being referenced",
15860          "type": "string"
15861        },
15862        "kind": {
15863          "description": "Kind is the type of resource being referenced",
15864          "type": "string"
15865        },
15866        "name": {
15867          "description": "Name is the name of resource being referenced",
15868          "type": "string"
15869        }
15870      },
15871      "required": [
15872        "apiGroup",
15873        "kind",
15874        "name"
15875      ],
15876      "type": "object"
15877    },
15878    "io.k8s.api.rbac.v1beta1.Subject": {
15879      "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.",
15880      "properties": {
15881        "apiGroup": {
15882          "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.",
15883          "type": "string"
15884        },
15885        "kind": {
15886          "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.",
15887          "type": "string"
15888        },
15889        "name": {
15890          "description": "Name of the object being referenced.",
15891          "type": "string"
15892        },
15893        "namespace": {
15894          "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.",
15895          "type": "string"
15896        }
15897      },
15898      "required": [
15899        "kind",
15900        "name"
15901      ],
15902      "type": "object"
15903    },
15904    "io.k8s.api.scheduling.v1.PriorityClass": {
15905      "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
15906      "properties": {
15907        "apiVersion": {
15908          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15909          "type": "string"
15910        },
15911        "description": {
15912          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15913          "type": "string"
15914        },
15915        "globalDefault": {
15916          "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.",
15917          "type": "boolean"
15918        },
15919        "kind": {
15920          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15921          "type": "string"
15922        },
15923        "metadata": {
15924          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
15925          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
15926        },
15927        "preemptionPolicy": {
15928          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
15929          "type": "string"
15930        },
15931        "value": {
15932          "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.",
15933          "format": "int32",
15934          "type": "integer"
15935        }
15936      },
15937      "required": [
15938        "value"
15939      ],
15940      "type": "object",
15941      "x-kubernetes-group-version-kind": [
15942        {
15943          "group": "scheduling.k8s.io",
15944          "kind": "PriorityClass",
15945          "version": "v1"
15946        }
15947      ]
15948    },
15949    "io.k8s.api.scheduling.v1.PriorityClassList": {
15950      "description": "PriorityClassList is a collection of priority classes.",
15951      "properties": {
15952        "apiVersion": {
15953          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15954          "type": "string"
15955        },
15956        "items": {
15957          "description": "items is the list of PriorityClasses",
15958          "items": {
15959            "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
15960          },
15961          "type": "array"
15962        },
15963        "kind": {
15964          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
15965          "type": "string"
15966        },
15967        "metadata": {
15968          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
15969          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
15970        }
15971      },
15972      "required": [
15973        "items"
15974      ],
15975      "type": "object",
15976      "x-kubernetes-group-version-kind": [
15977        {
15978          "group": "scheduling.k8s.io",
15979          "kind": "PriorityClassList",
15980          "version": "v1"
15981        }
15982      ]
15983    },
15984    "io.k8s.api.scheduling.v1alpha1.PriorityClass": {
15985      "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.",
15986      "properties": {
15987        "apiVersion": {
15988          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
15989          "type": "string"
15990        },
15991        "description": {
15992          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
15993          "type": "string"
15994        },
15995        "globalDefault": {
15996          "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.",
15997          "type": "boolean"
15998        },
15999        "kind": {
16000          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16001          "type": "string"
16002        },
16003        "metadata": {
16004          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16005          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16006        },
16007        "preemptionPolicy": {
16008          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
16009          "type": "string"
16010        },
16011        "value": {
16012          "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.",
16013          "format": "int32",
16014          "type": "integer"
16015        }
16016      },
16017      "required": [
16018        "value"
16019      ],
16020      "type": "object",
16021      "x-kubernetes-group-version-kind": [
16022        {
16023          "group": "scheduling.k8s.io",
16024          "kind": "PriorityClass",
16025          "version": "v1alpha1"
16026        }
16027      ]
16028    },
16029    "io.k8s.api.scheduling.v1alpha1.PriorityClassList": {
16030      "description": "PriorityClassList is a collection of priority classes.",
16031      "properties": {
16032        "apiVersion": {
16033          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16034          "type": "string"
16035        },
16036        "items": {
16037          "description": "items is the list of PriorityClasses",
16038          "items": {
16039            "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
16040          },
16041          "type": "array"
16042        },
16043        "kind": {
16044          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16045          "type": "string"
16046        },
16047        "metadata": {
16048          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16049          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16050        }
16051      },
16052      "required": [
16053        "items"
16054      ],
16055      "type": "object",
16056      "x-kubernetes-group-version-kind": [
16057        {
16058          "group": "scheduling.k8s.io",
16059          "kind": "PriorityClassList",
16060          "version": "v1alpha1"
16061        }
16062      ]
16063    },
16064    "io.k8s.api.scheduling.v1beta1.PriorityClass": {
16065      "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.",
16066      "properties": {
16067        "apiVersion": {
16068          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16069          "type": "string"
16070        },
16071        "description": {
16072          "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
16073          "type": "string"
16074        },
16075        "globalDefault": {
16076          "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.",
16077          "type": "boolean"
16078        },
16079        "kind": {
16080          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16081          "type": "string"
16082        },
16083        "metadata": {
16084          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16085          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16086        },
16087        "preemptionPolicy": {
16088          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
16089          "type": "string"
16090        },
16091        "value": {
16092          "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.",
16093          "format": "int32",
16094          "type": "integer"
16095        }
16096      },
16097      "required": [
16098        "value"
16099      ],
16100      "type": "object",
16101      "x-kubernetes-group-version-kind": [
16102        {
16103          "group": "scheduling.k8s.io",
16104          "kind": "PriorityClass",
16105          "version": "v1beta1"
16106        }
16107      ]
16108    },
16109    "io.k8s.api.scheduling.v1beta1.PriorityClassList": {
16110      "description": "PriorityClassList is a collection of priority classes.",
16111      "properties": {
16112        "apiVersion": {
16113          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16114          "type": "string"
16115        },
16116        "items": {
16117          "description": "items is the list of PriorityClasses",
16118          "items": {
16119            "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
16120          },
16121          "type": "array"
16122        },
16123        "kind": {
16124          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16125          "type": "string"
16126        },
16127        "metadata": {
16128          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16129          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16130        }
16131      },
16132      "required": [
16133        "items"
16134      ],
16135      "type": "object",
16136      "x-kubernetes-group-version-kind": [
16137        {
16138          "group": "scheduling.k8s.io",
16139          "kind": "PriorityClassList",
16140          "version": "v1beta1"
16141        }
16142      ]
16143    },
16144    "io.k8s.api.settings.v1alpha1.PodPreset": {
16145      "description": "PodPreset is a policy resource that defines additional runtime requirements for a Pod.",
16146      "properties": {
16147        "apiVersion": {
16148          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16149          "type": "string"
16150        },
16151        "kind": {
16152          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16153          "type": "string"
16154        },
16155        "metadata": {
16156          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
16157        },
16158        "spec": {
16159          "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetSpec"
16160        }
16161      },
16162      "type": "object",
16163      "x-kubernetes-group-version-kind": [
16164        {
16165          "group": "settings.k8s.io",
16166          "kind": "PodPreset",
16167          "version": "v1alpha1"
16168        }
16169      ]
16170    },
16171    "io.k8s.api.settings.v1alpha1.PodPresetList": {
16172      "description": "PodPresetList is a list of PodPreset objects.",
16173      "properties": {
16174        "apiVersion": {
16175          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16176          "type": "string"
16177        },
16178        "items": {
16179          "description": "Items is a list of schema objects.",
16180          "items": {
16181            "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
16182          },
16183          "type": "array"
16184        },
16185        "kind": {
16186          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16187          "type": "string"
16188        },
16189        "metadata": {
16190          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16191          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
16192        }
16193      },
16194      "required": [
16195        "items"
16196      ],
16197      "type": "object",
16198      "x-kubernetes-group-version-kind": [
16199        {
16200          "group": "settings.k8s.io",
16201          "kind": "PodPresetList",
16202          "version": "v1alpha1"
16203        }
16204      ]
16205    },
16206    "io.k8s.api.settings.v1alpha1.PodPresetSpec": {
16207      "description": "PodPresetSpec is a description of a pod preset.",
16208      "properties": {
16209        "env": {
16210          "description": "Env defines the collection of EnvVar to inject into containers.",
16211          "items": {
16212            "$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
16213          },
16214          "type": "array"
16215        },
16216        "envFrom": {
16217          "description": "EnvFrom defines the collection of EnvFromSource to inject into containers.",
16218          "items": {
16219            "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
16220          },
16221          "type": "array"
16222        },
16223        "selector": {
16224          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
16225          "description": "Selector is a label query over a set of resources, in this case pods. Required."
16226        },
16227        "volumeMounts": {
16228          "description": "VolumeMounts defines the collection of VolumeMount to inject into containers.",
16229          "items": {
16230            "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
16231          },
16232          "type": "array"
16233        },
16234        "volumes": {
16235          "description": "Volumes defines the collection of Volume to inject into the pod.",
16236          "items": {
16237            "$ref": "#/definitions/io.k8s.api.core.v1.Volume"
16238          },
16239          "type": "array"
16240        }
16241      },
16242      "type": "object"
16243    },
16244    "io.k8s.api.storage.v1.StorageClass": {
16245      "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.",
16246      "properties": {
16247        "allowVolumeExpansion": {
16248          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
16249          "type": "boolean"
16250        },
16251        "allowedTopologies": {
16252          "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.",
16253          "items": {
16254            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
16255          },
16256          "type": "array"
16257        },
16258        "apiVersion": {
16259          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16260          "type": "string"
16261        },
16262        "kind": {
16263          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16264          "type": "string"
16265        },
16266        "metadata": {
16267          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16268          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16269        },
16270        "mountOptions": {
16271          "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.",
16272          "items": {
16273            "type": "string"
16274          },
16275          "type": "array"
16276        },
16277        "parameters": {
16278          "additionalProperties": {
16279            "type": "string"
16280          },
16281          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
16282          "type": "object"
16283        },
16284        "provisioner": {
16285          "description": "Provisioner indicates the type of the provisioner.",
16286          "type": "string"
16287        },
16288        "reclaimPolicy": {
16289          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
16290          "type": "string"
16291        },
16292        "volumeBindingMode": {
16293          "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.",
16294          "type": "string"
16295        }
16296      },
16297      "required": [
16298        "provisioner"
16299      ],
16300      "type": "object",
16301      "x-kubernetes-group-version-kind": [
16302        {
16303          "group": "storage.k8s.io",
16304          "kind": "StorageClass",
16305          "version": "v1"
16306        }
16307      ]
16308    },
16309    "io.k8s.api.storage.v1.StorageClassList": {
16310      "description": "StorageClassList is a collection of storage classes.",
16311      "properties": {
16312        "apiVersion": {
16313          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16314          "type": "string"
16315        },
16316        "items": {
16317          "description": "Items is the list of StorageClasses",
16318          "items": {
16319            "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
16320          },
16321          "type": "array"
16322        },
16323        "kind": {
16324          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16325          "type": "string"
16326        },
16327        "metadata": {
16328          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16329          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16330        }
16331      },
16332      "required": [
16333        "items"
16334      ],
16335      "type": "object",
16336      "x-kubernetes-group-version-kind": [
16337        {
16338          "group": "storage.k8s.io",
16339          "kind": "StorageClassList",
16340          "version": "v1"
16341        }
16342      ]
16343    },
16344    "io.k8s.api.storage.v1.VolumeAttachment": {
16345      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16346      "properties": {
16347        "apiVersion": {
16348          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16349          "type": "string"
16350        },
16351        "kind": {
16352          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16353          "type": "string"
16354        },
16355        "metadata": {
16356          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16357          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16358        },
16359        "spec": {
16360          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec",
16361          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16362        },
16363        "status": {
16364          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus",
16365          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16366        }
16367      },
16368      "required": [
16369        "spec"
16370      ],
16371      "type": "object",
16372      "x-kubernetes-group-version-kind": [
16373        {
16374          "group": "storage.k8s.io",
16375          "kind": "VolumeAttachment",
16376          "version": "v1"
16377        }
16378      ]
16379    },
16380    "io.k8s.api.storage.v1.VolumeAttachmentList": {
16381      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16382      "properties": {
16383        "apiVersion": {
16384          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16385          "type": "string"
16386        },
16387        "items": {
16388          "description": "Items is the list of VolumeAttachments",
16389          "items": {
16390            "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
16391          },
16392          "type": "array"
16393        },
16394        "kind": {
16395          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16396          "type": "string"
16397        },
16398        "metadata": {
16399          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16400          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16401        }
16402      },
16403      "required": [
16404        "items"
16405      ],
16406      "type": "object",
16407      "x-kubernetes-group-version-kind": [
16408        {
16409          "group": "storage.k8s.io",
16410          "kind": "VolumeAttachmentList",
16411          "version": "v1"
16412        }
16413      ]
16414    },
16415    "io.k8s.api.storage.v1.VolumeAttachmentSource": {
16416      "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.",
16417      "properties": {
16418        "inlineVolumeSpec": {
16419          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16420          "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."
16421        },
16422        "persistentVolumeName": {
16423          "description": "Name of the persistent volume to attach.",
16424          "type": "string"
16425        }
16426      },
16427      "type": "object"
16428    },
16429    "io.k8s.api.storage.v1.VolumeAttachmentSpec": {
16430      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16431      "properties": {
16432        "attacher": {
16433          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16434          "type": "string"
16435        },
16436        "nodeName": {
16437          "description": "The node that the volume should be attached to.",
16438          "type": "string"
16439        },
16440        "source": {
16441          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource",
16442          "description": "Source represents the volume that should be attached."
16443        }
16444      },
16445      "required": [
16446        "attacher",
16447        "source",
16448        "nodeName"
16449      ],
16450      "type": "object"
16451    },
16452    "io.k8s.api.storage.v1.VolumeAttachmentStatus": {
16453      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16454      "properties": {
16455        "attachError": {
16456          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
16457          "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."
16458        },
16459        "attached": {
16460          "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.",
16461          "type": "boolean"
16462        },
16463        "attachmentMetadata": {
16464          "additionalProperties": {
16465            "type": "string"
16466          },
16467          "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.",
16468          "type": "object"
16469        },
16470        "detachError": {
16471          "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError",
16472          "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."
16473        }
16474      },
16475      "required": [
16476        "attached"
16477      ],
16478      "type": "object"
16479    },
16480    "io.k8s.api.storage.v1.VolumeError": {
16481      "description": "VolumeError captures an error encountered during a volume operation.",
16482      "properties": {
16483        "message": {
16484          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
16485          "type": "string"
16486        },
16487        "time": {
16488          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16489          "description": "Time the error was encountered."
16490        }
16491      },
16492      "type": "object"
16493    },
16494    "io.k8s.api.storage.v1alpha1.VolumeAttachment": {
16495      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16496      "properties": {
16497        "apiVersion": {
16498          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16499          "type": "string"
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/api-conventions.md#types-kinds",
16503          "type": "string"
16504        },
16505        "metadata": {
16506          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16507          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16508        },
16509        "spec": {
16510          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec",
16511          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16512        },
16513        "status": {
16514          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus",
16515          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16516        }
16517      },
16518      "required": [
16519        "spec"
16520      ],
16521      "type": "object",
16522      "x-kubernetes-group-version-kind": [
16523        {
16524          "group": "storage.k8s.io",
16525          "kind": "VolumeAttachment",
16526          "version": "v1alpha1"
16527        }
16528      ]
16529    },
16530    "io.k8s.api.storage.v1alpha1.VolumeAttachmentList": {
16531      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16532      "properties": {
16533        "apiVersion": {
16534          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16535          "type": "string"
16536        },
16537        "items": {
16538          "description": "Items is the list of VolumeAttachments",
16539          "items": {
16540            "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
16541          },
16542          "type": "array"
16543        },
16544        "kind": {
16545          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16546          "type": "string"
16547        },
16548        "metadata": {
16549          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16550          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16551        }
16552      },
16553      "required": [
16554        "items"
16555      ],
16556      "type": "object",
16557      "x-kubernetes-group-version-kind": [
16558        {
16559          "group": "storage.k8s.io",
16560          "kind": "VolumeAttachmentList",
16561          "version": "v1alpha1"
16562        }
16563      ]
16564    },
16565    "io.k8s.api.storage.v1alpha1.VolumeAttachmentSource": {
16566      "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.",
16567      "properties": {
16568        "inlineVolumeSpec": {
16569          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
16570          "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."
16571        },
16572        "persistentVolumeName": {
16573          "description": "Name of the persistent volume to attach.",
16574          "type": "string"
16575        }
16576      },
16577      "type": "object"
16578    },
16579    "io.k8s.api.storage.v1alpha1.VolumeAttachmentSpec": {
16580      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
16581      "properties": {
16582        "attacher": {
16583          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
16584          "type": "string"
16585        },
16586        "nodeName": {
16587          "description": "The node that the volume should be attached to.",
16588          "type": "string"
16589        },
16590        "source": {
16591          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentSource",
16592          "description": "Source represents the volume that should be attached."
16593        }
16594      },
16595      "required": [
16596        "attacher",
16597        "source",
16598        "nodeName"
16599      ],
16600      "type": "object"
16601    },
16602    "io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus": {
16603      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
16604      "properties": {
16605        "attachError": {
16606          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
16607          "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."
16608        },
16609        "attached": {
16610          "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.",
16611          "type": "boolean"
16612        },
16613        "attachmentMetadata": {
16614          "additionalProperties": {
16615            "type": "string"
16616          },
16617          "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.",
16618          "type": "object"
16619        },
16620        "detachError": {
16621          "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
16622          "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."
16623        }
16624      },
16625      "required": [
16626        "attached"
16627      ],
16628      "type": "object"
16629    },
16630    "io.k8s.api.storage.v1alpha1.VolumeError": {
16631      "description": "VolumeError captures an error encountered during a volume operation.",
16632      "properties": {
16633        "message": {
16634          "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.",
16635          "type": "string"
16636        },
16637        "time": {
16638          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
16639          "description": "Time the error was encountered."
16640        }
16641      },
16642      "type": "object"
16643    },
16644    "io.k8s.api.storage.v1beta1.CSIDriver": {
16645      "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. 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.",
16646      "properties": {
16647        "apiVersion": {
16648          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16649          "type": "string"
16650        },
16651        "kind": {
16652          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16653          "type": "string"
16654        },
16655        "metadata": {
16656          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16657          "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/api-conventions.md#metadata"
16658        },
16659        "spec": {
16660          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverSpec",
16661          "description": "Specification of the CSI Driver."
16662        }
16663      },
16664      "required": [
16665        "spec"
16666      ],
16667      "type": "object",
16668      "x-kubernetes-group-version-kind": [
16669        {
16670          "group": "storage.k8s.io",
16671          "kind": "CSIDriver",
16672          "version": "v1beta1"
16673        }
16674      ]
16675    },
16676    "io.k8s.api.storage.v1beta1.CSIDriverList": {
16677      "description": "CSIDriverList is a collection of CSIDriver objects.",
16678      "properties": {
16679        "apiVersion": {
16680          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16681          "type": "string"
16682        },
16683        "items": {
16684          "description": "items is the list of CSIDriver",
16685          "items": {
16686            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
16687          },
16688          "type": "array"
16689        },
16690        "kind": {
16691          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16692          "type": "string"
16693        },
16694        "metadata": {
16695          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16696          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16697        }
16698      },
16699      "required": [
16700        "items"
16701      ],
16702      "type": "object",
16703      "x-kubernetes-group-version-kind": [
16704        {
16705          "group": "storage.k8s.io",
16706          "kind": "CSIDriverList",
16707          "version": "v1beta1"
16708        }
16709      ]
16710    },
16711    "io.k8s.api.storage.v1beta1.CSIDriverSpec": {
16712      "description": "CSIDriverSpec is the specification of a CSIDriver.",
16713      "properties": {
16714        "attachRequired": {
16715          "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.",
16716          "type": "boolean"
16717        },
16718        "podInfoOnMount": {
16719          "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)",
16720          "type": "boolean"
16721        }
16722      },
16723      "type": "object"
16724    },
16725    "io.k8s.api.storage.v1beta1.CSINode": {
16726      "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.",
16727      "properties": {
16728        "apiVersion": {
16729          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16730          "type": "string"
16731        },
16732        "kind": {
16733          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16734          "type": "string"
16735        },
16736        "metadata": {
16737          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16738          "description": "metadata.name must be the Kubernetes node name."
16739        },
16740        "spec": {
16741          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeSpec",
16742          "description": "spec is the specification of CSINode"
16743        }
16744      },
16745      "required": [
16746        "spec"
16747      ],
16748      "type": "object",
16749      "x-kubernetes-group-version-kind": [
16750        {
16751          "group": "storage.k8s.io",
16752          "kind": "CSINode",
16753          "version": "v1beta1"
16754        }
16755      ]
16756    },
16757    "io.k8s.api.storage.v1beta1.CSINodeDriver": {
16758      "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
16759      "properties": {
16760        "allocatable": {
16761          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeNodeResources",
16762          "description": "allocatable represents the volume resources of a node that are available for scheduling."
16763        },
16764        "name": {
16765          "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.",
16766          "type": "string"
16767        },
16768        "nodeID": {
16769          "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.",
16770          "type": "string"
16771        },
16772        "topologyKeys": {
16773          "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.",
16774          "items": {
16775            "type": "string"
16776          },
16777          "type": "array"
16778        }
16779      },
16780      "required": [
16781        "name",
16782        "nodeID"
16783      ],
16784      "type": "object"
16785    },
16786    "io.k8s.api.storage.v1beta1.CSINodeList": {
16787      "description": "CSINodeList is a collection of CSINode objects.",
16788      "properties": {
16789        "apiVersion": {
16790          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16791          "type": "string"
16792        },
16793        "items": {
16794          "description": "items is the list of CSINode",
16795          "items": {
16796            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
16797          },
16798          "type": "array"
16799        },
16800        "kind": {
16801          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16802          "type": "string"
16803        },
16804        "metadata": {
16805          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16806          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16807        }
16808      },
16809      "required": [
16810        "items"
16811      ],
16812      "type": "object",
16813      "x-kubernetes-group-version-kind": [
16814        {
16815          "group": "storage.k8s.io",
16816          "kind": "CSINodeList",
16817          "version": "v1beta1"
16818        }
16819      ]
16820    },
16821    "io.k8s.api.storage.v1beta1.CSINodeSpec": {
16822      "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
16823      "properties": {
16824        "drivers": {
16825          "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.",
16826          "items": {
16827            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeDriver"
16828          },
16829          "type": "array",
16830          "x-kubernetes-patch-merge-key": "name",
16831          "x-kubernetes-patch-strategy": "merge"
16832        }
16833      },
16834      "required": [
16835        "drivers"
16836      ],
16837      "type": "object"
16838    },
16839    "io.k8s.api.storage.v1beta1.StorageClass": {
16840      "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.",
16841      "properties": {
16842        "allowVolumeExpansion": {
16843          "description": "AllowVolumeExpansion shows whether the storage class allow volume expand",
16844          "type": "boolean"
16845        },
16846        "allowedTopologies": {
16847          "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.",
16848          "items": {
16849            "$ref": "#/definitions/io.k8s.api.core.v1.TopologySelectorTerm"
16850          },
16851          "type": "array"
16852        },
16853        "apiVersion": {
16854          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16855          "type": "string"
16856        },
16857        "kind": {
16858          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16859          "type": "string"
16860        },
16861        "metadata": {
16862          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16863          "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16864        },
16865        "mountOptions": {
16866          "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.",
16867          "items": {
16868            "type": "string"
16869          },
16870          "type": "array"
16871        },
16872        "parameters": {
16873          "additionalProperties": {
16874            "type": "string"
16875          },
16876          "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
16877          "type": "object"
16878        },
16879        "provisioner": {
16880          "description": "Provisioner indicates the type of the provisioner.",
16881          "type": "string"
16882        },
16883        "reclaimPolicy": {
16884          "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.",
16885          "type": "string"
16886        },
16887        "volumeBindingMode": {
16888          "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.",
16889          "type": "string"
16890        }
16891      },
16892      "required": [
16893        "provisioner"
16894      ],
16895      "type": "object",
16896      "x-kubernetes-group-version-kind": [
16897        {
16898          "group": "storage.k8s.io",
16899          "kind": "StorageClass",
16900          "version": "v1beta1"
16901        }
16902      ]
16903    },
16904    "io.k8s.api.storage.v1beta1.StorageClassList": {
16905      "description": "StorageClassList is a collection of storage classes.",
16906      "properties": {
16907        "apiVersion": {
16908          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16909          "type": "string"
16910        },
16911        "items": {
16912          "description": "Items is the list of StorageClasses",
16913          "items": {
16914            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
16915          },
16916          "type": "array"
16917        },
16918        "kind": {
16919          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16920          "type": "string"
16921        },
16922        "metadata": {
16923          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16924          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16925        }
16926      },
16927      "required": [
16928        "items"
16929      ],
16930      "type": "object",
16931      "x-kubernetes-group-version-kind": [
16932        {
16933          "group": "storage.k8s.io",
16934          "kind": "StorageClassList",
16935          "version": "v1beta1"
16936        }
16937      ]
16938    },
16939    "io.k8s.api.storage.v1beta1.VolumeAttachment": {
16940      "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
16941      "properties": {
16942        "apiVersion": {
16943          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16944          "type": "string"
16945        },
16946        "kind": {
16947          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16948          "type": "string"
16949        },
16950        "metadata": {
16951          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
16952          "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16953        },
16954        "spec": {
16955          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSpec",
16956          "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system."
16957        },
16958        "status": {
16959          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentStatus",
16960          "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher."
16961        }
16962      },
16963      "required": [
16964        "spec"
16965      ],
16966      "type": "object",
16967      "x-kubernetes-group-version-kind": [
16968        {
16969          "group": "storage.k8s.io",
16970          "kind": "VolumeAttachment",
16971          "version": "v1beta1"
16972        }
16973      ]
16974    },
16975    "io.k8s.api.storage.v1beta1.VolumeAttachmentList": {
16976      "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.",
16977      "properties": {
16978        "apiVersion": {
16979          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
16980          "type": "string"
16981        },
16982        "items": {
16983          "description": "Items is the list of VolumeAttachments",
16984          "items": {
16985            "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
16986          },
16987          "type": "array"
16988        },
16989        "kind": {
16990          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
16991          "type": "string"
16992        },
16993        "metadata": {
16994          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
16995          "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
16996        }
16997      },
16998      "required": [
16999        "items"
17000      ],
17001      "type": "object",
17002      "x-kubernetes-group-version-kind": [
17003        {
17004          "group": "storage.k8s.io",
17005          "kind": "VolumeAttachmentList",
17006          "version": "v1beta1"
17007        }
17008      ]
17009    },
17010    "io.k8s.api.storage.v1beta1.VolumeAttachmentSource": {
17011      "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.",
17012      "properties": {
17013        "inlineVolumeSpec": {
17014          "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeSpec",
17015          "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."
17016        },
17017        "persistentVolumeName": {
17018          "description": "Name of the persistent volume to attach.",
17019          "type": "string"
17020        }
17021      },
17022      "type": "object"
17023    },
17024    "io.k8s.api.storage.v1beta1.VolumeAttachmentSpec": {
17025      "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
17026      "properties": {
17027        "attacher": {
17028          "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
17029          "type": "string"
17030        },
17031        "nodeName": {
17032          "description": "The node that the volume should be attached to.",
17033          "type": "string"
17034        },
17035        "source": {
17036          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentSource",
17037          "description": "Source represents the volume that should be attached."
17038        }
17039      },
17040      "required": [
17041        "attacher",
17042        "source",
17043        "nodeName"
17044      ],
17045      "type": "object"
17046    },
17047    "io.k8s.api.storage.v1beta1.VolumeAttachmentStatus": {
17048      "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
17049      "properties": {
17050        "attachError": {
17051          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError",
17052          "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."
17053        },
17054        "attached": {
17055          "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.",
17056          "type": "boolean"
17057        },
17058        "attachmentMetadata": {
17059          "additionalProperties": {
17060            "type": "string"
17061          },
17062          "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.",
17063          "type": "object"
17064        },
17065        "detachError": {
17066          "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeError",
17067          "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."
17068        }
17069      },
17070      "required": [
17071        "attached"
17072      ],
17073      "type": "object"
17074    },
17075    "io.k8s.api.storage.v1beta1.VolumeError": {
17076      "description": "VolumeError captures an error encountered during a volume operation.",
17077      "properties": {
17078        "message": {
17079          "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
17080          "type": "string"
17081        },
17082        "time": {
17083          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
17084          "description": "Time the error was encountered."
17085        }
17086      },
17087      "type": "object"
17088    },
17089    "io.k8s.api.storage.v1beta1.VolumeNodeResources": {
17090      "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
17091      "properties": {
17092        "count": {
17093          "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 nil, then the supported number of volumes on this node is unbounded.",
17094          "format": "int32",
17095          "type": "integer"
17096        }
17097      },
17098      "type": "object"
17099    },
17100    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition": {
17101      "description": "CustomResourceColumnDefinition specifies a column for server side printing.",
17102      "properties": {
17103        "JSONPath": {
17104          "description": "JSONPath is a simple JSON path, i.e. with array notation.",
17105          "type": "string"
17106        },
17107        "description": {
17108          "description": "description is a human readable description of this column.",
17109          "type": "string"
17110        },
17111        "format": {
17112          "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 more.",
17113          "type": "string"
17114        },
17115        "name": {
17116          "description": "name is a human readable name for the column.",
17117          "type": "string"
17118        },
17119        "priority": {
17120          "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 higher priority.",
17121          "format": "int32",
17122          "type": "integer"
17123        },
17124        "type": {
17125          "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 more.",
17126          "type": "string"
17127        }
17128      },
17129      "required": [
17130        "name",
17131        "type",
17132        "JSONPath"
17133      ],
17134      "type": "object"
17135    },
17136    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion": {
17137      "description": "CustomResourceConversion describes how to convert different versions of a CR.",
17138      "properties": {
17139        "conversionReviewVersions": {
17140          "description": "ConversionReviewVersions is an ordered list of preferred `ConversionReview` 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, conversion 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. Default to `['v1beta1']`.",
17141          "items": {
17142            "type": "string"
17143          },
17144          "type": "array"
17145        },
17146        "strategy": {
17147          "description": "`strategy` specifies the conversion strategy. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the CR. - `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.",
17148          "type": "string"
17149        },
17150        "webhookClientConfig": {
17151          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig",
17152          "description": "`webhookClientConfig` is the instructions for how to call the webhook if strategy is `Webhook`. This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature."
17153        }
17154      },
17155      "required": [
17156        "strategy"
17157      ],
17158      "type": "object"
17159    },
17160    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition": {
17161      "description": "CustomResourceDefinition represents a resource that should be exposed on the API server.  Its name MUST be in the format <.spec.name>.<.spec.group>.",
17162      "properties": {
17163        "apiVersion": {
17164          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17165          "type": "string"
17166        },
17167        "kind": {
17168          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17169          "type": "string"
17170        },
17171        "metadata": {
17172          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
17173        },
17174        "spec": {
17175          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec",
17176          "description": "Spec describes how the user wants the resources to appear"
17177        },
17178        "status": {
17179          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus",
17180          "description": "Status indicates the actual state of the CustomResourceDefinition"
17181        }
17182      },
17183      "required": [
17184        "spec"
17185      ],
17186      "type": "object",
17187      "x-kubernetes-group-version-kind": [
17188        {
17189          "group": "apiextensions.k8s.io",
17190          "kind": "CustomResourceDefinition",
17191          "version": "v1beta1"
17192        }
17193      ]
17194    },
17195    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition": {
17196      "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
17197      "properties": {
17198        "lastTransitionTime": {
17199          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
17200          "description": "Last time the condition transitioned from one status to another."
17201        },
17202        "message": {
17203          "description": "Human-readable message indicating details about last transition.",
17204          "type": "string"
17205        },
17206        "reason": {
17207          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
17208          "type": "string"
17209        },
17210        "status": {
17211          "description": "Status is the status of the condition. Can be True, False, Unknown.",
17212          "type": "string"
17213        },
17214        "type": {
17215          "description": "Type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
17216          "type": "string"
17217        }
17218      },
17219      "required": [
17220        "type",
17221        "status"
17222      ],
17223      "type": "object"
17224    },
17225    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList": {
17226      "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
17227      "properties": {
17228        "apiVersion": {
17229          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17230          "type": "string"
17231        },
17232        "items": {
17233          "description": "Items individual CustomResourceDefinitions",
17234          "items": {
17235            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
17236          },
17237          "type": "array"
17238        },
17239        "kind": {
17240          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17241          "type": "string"
17242        },
17243        "metadata": {
17244          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
17245        }
17246      },
17247      "required": [
17248        "items"
17249      ],
17250      "type": "object",
17251      "x-kubernetes-group-version-kind": [
17252        {
17253          "group": "apiextensions.k8s.io",
17254          "kind": "CustomResourceDefinitionList",
17255          "version": "v1beta1"
17256        }
17257      ]
17258    },
17259    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames": {
17260      "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
17261      "properties": {
17262        "categories": {
17263          "description": "Categories is a list of grouped resources custom resources belong to (e.g. 'all')",
17264          "items": {
17265            "type": "string"
17266          },
17267          "type": "array"
17268        },
17269        "kind": {
17270          "description": "Kind is the serialized kind of the resource.  It is normally CamelCase and singular.",
17271          "type": "string"
17272        },
17273        "listKind": {
17274          "description": "ListKind is the serialized kind of the list for this resource.  Defaults to <kind>List.",
17275          "type": "string"
17276        },
17277        "plural": {
17278          "description": "Plural is the plural name of the resource to serve.  It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.",
17279          "type": "string"
17280        },
17281        "shortNames": {
17282          "description": "ShortNames are short names for the resource.  It must be all lowercase.",
17283          "items": {
17284            "type": "string"
17285          },
17286          "type": "array"
17287        },
17288        "singular": {
17289          "description": "Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>",
17290          "type": "string"
17291        }
17292      },
17293      "required": [
17294        "plural",
17295        "kind"
17296      ],
17297      "type": "object"
17298    },
17299    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionSpec": {
17300      "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
17301      "properties": {
17302        "additionalPrinterColumns": {
17303          "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Optional, the global columns for all versions. Top-level and per-version columns are mutually exclusive.",
17304          "items": {
17305            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition"
17306          },
17307          "type": "array"
17308        },
17309        "conversion": {
17310          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion",
17311          "description": "`conversion` defines conversion settings for the CRD."
17312        },
17313        "group": {
17314          "description": "Group is the group this resource belongs in",
17315          "type": "string"
17316        },
17317        "names": {
17318          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames",
17319          "description": "Names are the names used to describe this custom resource"
17320        },
17321        "preserveUnknownFields": {
17322          "description": "preserveUnknownFields disables pruning of object fields which are not specified in the OpenAPI schema. apiVersion, kind, metadata and known fields inside metadata are always preserved. Defaults to true in v1beta and will default to false in v1.",
17323          "type": "boolean"
17324        },
17325        "scope": {
17326          "description": "Scope indicates whether this resource is cluster or namespace scoped.  Default is namespaced",
17327          "type": "string"
17328        },
17329        "subresources": {
17330          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources",
17331          "description": "Subresources describes the subresources for CustomResource Optional, the global subresources for all versions. Top-level and per-version subresources are mutually exclusive."
17332        },
17333        "validation": {
17334          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation",
17335          "description": "Validation describes the validation methods for CustomResources Optional, the global validation schema for all versions. Top-level and per-version schemas are mutually exclusive."
17336        },
17337        "version": {
17338          "description": "Version is the version this resource belongs in Should be always first item in Versions field if provided. Optional, but at least one of Version or Versions must be set. Deprecated: Please use `Versions`.",
17339          "type": "string"
17340        },
17341        "versions": {
17342          "description": "Versions is the list of all supported versions for this resource. If Version field is provided, this field is optional. Validation: All versions must use the same validation schema for now. i.e., top level Validation field is applied to all of these versions. Order: The version name will be used to compute the order. 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.",
17343          "items": {
17344            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion"
17345          },
17346          "type": "array"
17347        }
17348      },
17349      "required": [
17350        "group",
17351        "names",
17352        "scope"
17353      ],
17354      "type": "object"
17355    },
17356    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionStatus": {
17357      "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
17358      "properties": {
17359        "acceptedNames": {
17360          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionNames",
17361          "description": "AcceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec."
17362        },
17363        "conditions": {
17364          "description": "Conditions indicate state for particular aspects of a CustomResourceDefinition",
17365          "items": {
17366            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionCondition"
17367          },
17368          "type": "array"
17369        },
17370        "storedVersions": {
17371          "description": "StoredVersions are 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 the migration controller can first finish a migration to another version (i.e. that no old objects are left in the storage), and then remove the rest of the versions from this list. None of the versions in this list can be removed from the spec.Versions field.",
17372          "items": {
17373            "type": "string"
17374          },
17375          "type": "array"
17376        }
17377      },
17378      "required": [
17379        "conditions",
17380        "acceptedNames",
17381        "storedVersions"
17382      ],
17383      "type": "object"
17384    },
17385    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion": {
17386      "description": "CustomResourceDefinitionVersion describes a version for CRD.",
17387      "properties": {
17388        "additionalPrinterColumns": {
17389          "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. NOTE: CRDs created prior to 1.13 populated the top-level additionalPrinterColumns field by default. To apply an update that changes to per-version additionalPrinterColumns, the top-level additionalPrinterColumns field must be explicitly set to null",
17390          "items": {
17391            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition"
17392          },
17393          "type": "array"
17394        },
17395        "name": {
17396          "description": "Name is the version name, e.g. “v1”, “v2beta1”, etc.",
17397          "type": "string"
17398        },
17399        "schema": {
17400          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation",
17401          "description": "Schema describes the schema for CustomResource used in validation, pruning, and defaulting. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature."
17402        },
17403        "served": {
17404          "description": "Served is a flag enabling/disabling this version from being served via REST APIs",
17405          "type": "boolean"
17406        },
17407        "storage": {
17408          "description": "Storage flags the version as storage version. There must be exactly one flagged as storage version.",
17409          "type": "boolean"
17410        },
17411        "subresources": {
17412          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources",
17413          "description": "Subresources describes the subresources for CustomResource Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature."
17414        }
17415      },
17416      "required": [
17417        "name",
17418        "served",
17419        "storage"
17420      ],
17421      "type": "object"
17422    },
17423    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale": {
17424      "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
17425      "properties": {
17426        "labelSelectorPath": {
17427          "description": "LabelSelectorPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status or .spec. Must be set to work with HPA. 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 CustomResource, the status label selector value in the /scale subresource will default to the empty string.",
17428          "type": "string"
17429        },
17430        "specReplicasPath": {
17431          "description": "SpecReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Spec.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .spec. If there is no value under the given path in the CustomResource, the /scale subresource will return an error on GET.",
17432          "type": "string"
17433        },
17434        "statusReplicasPath": {
17435          "description": "StatusReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status. If there is no value under the given path in the CustomResource, the status replica value in the /scale subresource will default to 0.",
17436          "type": "string"
17437        }
17438      },
17439      "required": [
17440        "specReplicasPath",
17441        "statusReplicasPath"
17442      ],
17443      "type": "object"
17444    },
17445    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus": {
17446      "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",
17447      "type": "object"
17448    },
17449    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources": {
17450      "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
17451      "properties": {
17452        "scale": {
17453          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceScale",
17454          "description": "Scale denotes the scale subresource for CustomResources"
17455        },
17456        "status": {
17457          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresourceStatus",
17458          "description": "Status denotes the status subresource for CustomResources"
17459        }
17460      },
17461      "type": "object"
17462    },
17463    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation": {
17464      "description": "CustomResourceValidation is a list of validation methods for CustomResources.",
17465      "properties": {
17466        "openAPIV3Schema": {
17467          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps",
17468          "description": "OpenAPIV3Schema is the OpenAPI v3 schema to be validated against."
17469        }
17470      },
17471      "type": "object"
17472    },
17473    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation": {
17474      "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
17475      "properties": {
17476        "description": {
17477          "type": "string"
17478        },
17479        "url": {
17480          "type": "string"
17481        }
17482      },
17483      "type": "object"
17484    },
17485    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON": {
17486      "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
17487    },
17488    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps": {
17489      "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
17490      "properties": {
17491        "$ref": {
17492          "type": "string"
17493        },
17494        "$schema": {
17495          "type": "string"
17496        },
17497        "additionalItems": {
17498          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool"
17499        },
17500        "additionalProperties": {
17501          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool"
17502        },
17503        "allOf": {
17504          "items": {
17505            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17506          },
17507          "type": "array"
17508        },
17509        "anyOf": {
17510          "items": {
17511            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17512          },
17513          "type": "array"
17514        },
17515        "default": {
17516          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON",
17517          "description": "default is a default value for undefined object fields. Defaulting is an alpha feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false."
17518        },
17519        "definitions": {
17520          "additionalProperties": {
17521            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17522          },
17523          "type": "object"
17524        },
17525        "dependencies": {
17526          "additionalProperties": {
17527            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray"
17528          },
17529          "type": "object"
17530        },
17531        "description": {
17532          "type": "string"
17533        },
17534        "enum": {
17535          "items": {
17536            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON"
17537          },
17538          "type": "array"
17539        },
17540        "example": {
17541          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSON"
17542        },
17543        "exclusiveMaximum": {
17544          "type": "boolean"
17545        },
17546        "exclusiveMinimum": {
17547          "type": "boolean"
17548        },
17549        "externalDocs": {
17550          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ExternalDocumentation"
17551        },
17552        "format": {
17553          "type": "string"
17554        },
17555        "id": {
17556          "type": "string"
17557        },
17558        "items": {
17559          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray"
17560        },
17561        "maxItems": {
17562          "format": "int64",
17563          "type": "integer"
17564        },
17565        "maxLength": {
17566          "format": "int64",
17567          "type": "integer"
17568        },
17569        "maxProperties": {
17570          "format": "int64",
17571          "type": "integer"
17572        },
17573        "maximum": {
17574          "format": "double",
17575          "type": "number"
17576        },
17577        "minItems": {
17578          "format": "int64",
17579          "type": "integer"
17580        },
17581        "minLength": {
17582          "format": "int64",
17583          "type": "integer"
17584        },
17585        "minProperties": {
17586          "format": "int64",
17587          "type": "integer"
17588        },
17589        "minimum": {
17590          "format": "double",
17591          "type": "number"
17592        },
17593        "multipleOf": {
17594          "format": "double",
17595          "type": "number"
17596        },
17597        "not": {
17598          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17599        },
17600        "nullable": {
17601          "type": "boolean"
17602        },
17603        "oneOf": {
17604          "items": {
17605            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17606          },
17607          "type": "array"
17608        },
17609        "pattern": {
17610          "type": "string"
17611        },
17612        "patternProperties": {
17613          "additionalProperties": {
17614            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17615          },
17616          "type": "object"
17617        },
17618        "properties": {
17619          "additionalProperties": {
17620            "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"
17621          },
17622          "type": "object"
17623        },
17624        "required": {
17625          "items": {
17626            "type": "string"
17627          },
17628          "type": "array"
17629        },
17630        "title": {
17631          "type": "string"
17632        },
17633        "type": {
17634          "type": "string"
17635        },
17636        "uniqueItems": {
17637          "type": "boolean"
17638        },
17639        "x-kubernetes-embedded-resource": {
17640          "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).",
17641          "type": "boolean"
17642        },
17643        "x-kubernetes-int-or-string": {
17644          "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",
17645          "type": "boolean"
17646        },
17647        "x-kubernetes-preserve-unknown-fields": {
17648          "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.",
17649          "type": "boolean"
17650        }
17651      },
17652      "type": "object"
17653    },
17654    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrArray": {
17655      "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
17656    },
17657    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrBool": {
17658      "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
17659    },
17660    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray": {
17661      "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
17662    },
17663    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference": {
17664      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
17665      "properties": {
17666        "name": {
17667          "description": "`name` is the name of the service. Required",
17668          "type": "string"
17669        },
17670        "namespace": {
17671          "description": "`namespace` is the namespace of the service. Required",
17672          "type": "string"
17673        },
17674        "path": {
17675          "description": "`path` is an optional URL path which will be sent in any request to this service.",
17676          "type": "string"
17677        },
17678        "port": {
17679          "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).",
17680          "format": "int32",
17681          "type": "integer"
17682        }
17683      },
17684      "required": [
17685        "namespace",
17686        "name"
17687      ],
17688      "type": "object"
17689    },
17690    "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig": {
17691      "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook. It has the same field as admissionregistration.v1beta1.WebhookClientConfig.",
17692      "properties": {
17693        "caBundle": {
17694          "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.",
17695          "format": "byte",
17696          "type": "string"
17697        },
17698        "service": {
17699          "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference",
17700          "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`."
17701        },
17702        "url": {
17703          "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.",
17704          "type": "string"
17705        }
17706      },
17707      "type": "object"
17708    },
17709    "io.k8s.apimachinery.pkg.api.resource.Quantity": {
17710      "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and Int64() 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.",
17711      "type": "string"
17712    },
17713    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
17714      "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
17715      "properties": {
17716        "apiVersion": {
17717          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17718          "type": "string"
17719        },
17720        "kind": {
17721          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17722          "type": "string"
17723        },
17724        "name": {
17725          "description": "name is the name of the group.",
17726          "type": "string"
17727        },
17728        "preferredVersion": {
17729          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery",
17730          "description": "preferredVersion is the version preferred by the API server, which probably is the storage version."
17731        },
17732        "serverAddressByClientCIDRs": {
17733          "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.",
17734          "items": {
17735            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
17736          },
17737          "type": "array"
17738        },
17739        "versions": {
17740          "description": "versions are the versions supported in this group.",
17741          "items": {
17742            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery"
17743          },
17744          "type": "array"
17745        }
17746      },
17747      "required": [
17748        "name",
17749        "versions"
17750      ],
17751      "type": "object",
17752      "x-kubernetes-group-version-kind": [
17753        {
17754          "group": "",
17755          "kind": "APIGroup",
17756          "version": "v1"
17757        }
17758      ]
17759    },
17760    "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": {
17761      "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
17762      "properties": {
17763        "apiVersion": {
17764          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17765          "type": "string"
17766        },
17767        "groups": {
17768          "description": "groups is a list of APIGroup.",
17769          "items": {
17770            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
17771          },
17772          "type": "array"
17773        },
17774        "kind": {
17775          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17776          "type": "string"
17777        }
17778      },
17779      "required": [
17780        "groups"
17781      ],
17782      "type": "object",
17783      "x-kubernetes-group-version-kind": [
17784        {
17785          "group": "",
17786          "kind": "APIGroupList",
17787          "version": "v1"
17788        }
17789      ]
17790    },
17791    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
17792      "description": "APIResource specifies the name of a resource and whether it is namespaced.",
17793      "properties": {
17794        "categories": {
17795          "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
17796          "items": {
17797            "type": "string"
17798          },
17799          "type": "array"
17800        },
17801        "group": {
17802          "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\".",
17803          "type": "string"
17804        },
17805        "kind": {
17806          "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
17807          "type": "string"
17808        },
17809        "name": {
17810          "description": "name is the plural name of the resource.",
17811          "type": "string"
17812        },
17813        "namespaced": {
17814          "description": "namespaced indicates if a resource is namespaced or not.",
17815          "type": "boolean"
17816        },
17817        "shortNames": {
17818          "description": "shortNames is a list of suggested short names of the resource.",
17819          "items": {
17820            "type": "string"
17821          },
17822          "type": "array"
17823        },
17824        "singularName": {
17825          "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.",
17826          "type": "string"
17827        },
17828        "storageVersionHash": {
17829          "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.",
17830          "type": "string"
17831        },
17832        "verbs": {
17833          "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
17834          "items": {
17835            "type": "string"
17836          },
17837          "type": "array"
17838        },
17839        "version": {
17840          "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)\".",
17841          "type": "string"
17842        }
17843      },
17844      "required": [
17845        "name",
17846        "singularName",
17847        "namespaced",
17848        "kind",
17849        "verbs"
17850      ],
17851      "type": "object"
17852    },
17853    "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
17854      "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.",
17855      "properties": {
17856        "apiVersion": {
17857          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17858          "type": "string"
17859        },
17860        "groupVersion": {
17861          "description": "groupVersion is the group and version this APIResourceList is for.",
17862          "type": "string"
17863        },
17864        "kind": {
17865          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17866          "type": "string"
17867        },
17868        "resources": {
17869          "description": "resources contains the name of the resources and if they are namespaced.",
17870          "items": {
17871            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
17872          },
17873          "type": "array"
17874        }
17875      },
17876      "required": [
17877        "groupVersion",
17878        "resources"
17879      ],
17880      "type": "object",
17881      "x-kubernetes-group-version-kind": [
17882        {
17883          "group": "",
17884          "kind": "APIResourceList",
17885          "version": "v1"
17886        }
17887      ]
17888    },
17889    "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": {
17890      "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.",
17891      "properties": {
17892        "apiVersion": {
17893          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17894          "type": "string"
17895        },
17896        "kind": {
17897          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17898          "type": "string"
17899        },
17900        "serverAddressByClientCIDRs": {
17901          "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.",
17902          "items": {
17903            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR"
17904          },
17905          "type": "array"
17906        },
17907        "versions": {
17908          "description": "versions are the api versions that are available.",
17909          "items": {
17910            "type": "string"
17911          },
17912          "type": "array"
17913        }
17914      },
17915      "required": [
17916        "versions",
17917        "serverAddressByClientCIDRs"
17918      ],
17919      "type": "object",
17920      "x-kubernetes-group-version-kind": [
17921        {
17922          "group": "",
17923          "kind": "APIVersions",
17924          "version": "v1"
17925        }
17926      ]
17927    },
17928    "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
17929      "description": "DeleteOptions may be provided when deleting an API object.",
17930      "properties": {
17931        "apiVersion": {
17932          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
17933          "type": "string"
17934        },
17935        "dryRun": {
17936          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
17937          "items": {
17938            "type": "string"
17939          },
17940          "type": "array"
17941        },
17942        "gracePeriodSeconds": {
17943          "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.",
17944          "format": "int64",
17945          "type": "integer"
17946        },
17947        "kind": {
17948          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
17949          "type": "string"
17950        },
17951        "orphanDependents": {
17952          "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.",
17953          "type": "boolean"
17954        },
17955        "preconditions": {
17956          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions",
17957          "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
17958        },
17959        "propagationPolicy": {
17960          "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.",
17961          "type": "string"
17962        }
17963      },
17964      "type": "object",
17965      "x-kubernetes-group-version-kind": [
17966        {
17967          "group": "",
17968          "kind": "DeleteOptions",
17969          "version": "v1"
17970        },
17971        {
17972          "group": "admission.k8s.io",
17973          "kind": "DeleteOptions",
17974          "version": "v1beta1"
17975        },
17976        {
17977          "group": "admissionregistration.k8s.io",
17978          "kind": "DeleteOptions",
17979          "version": "v1"
17980        },
17981        {
17982          "group": "admissionregistration.k8s.io",
17983          "kind": "DeleteOptions",
17984          "version": "v1beta1"
17985        },
17986        {
17987          "group": "apiextensions.k8s.io",
17988          "kind": "DeleteOptions",
17989          "version": "v1beta1"
17990        },
17991        {
17992          "group": "apiregistration.k8s.io",
17993          "kind": "DeleteOptions",
17994          "version": "v1"
17995        },
17996        {
17997          "group": "apiregistration.k8s.io",
17998          "kind": "DeleteOptions",
17999          "version": "v1beta1"
18000        },
18001        {
18002          "group": "apps",
18003          "kind": "DeleteOptions",
18004          "version": "v1"
18005        },
18006        {
18007          "group": "apps",
18008          "kind": "DeleteOptions",
18009          "version": "v1beta1"
18010        },
18011        {
18012          "group": "apps",
18013          "kind": "DeleteOptions",
18014          "version": "v1beta2"
18015        },
18016        {
18017          "group": "auditregistration.k8s.io",
18018          "kind": "DeleteOptions",
18019          "version": "v1alpha1"
18020        },
18021        {
18022          "group": "authentication.k8s.io",
18023          "kind": "DeleteOptions",
18024          "version": "v1"
18025        },
18026        {
18027          "group": "authentication.k8s.io",
18028          "kind": "DeleteOptions",
18029          "version": "v1beta1"
18030        },
18031        {
18032          "group": "authorization.k8s.io",
18033          "kind": "DeleteOptions",
18034          "version": "v1"
18035        },
18036        {
18037          "group": "authorization.k8s.io",
18038          "kind": "DeleteOptions",
18039          "version": "v1beta1"
18040        },
18041        {
18042          "group": "autoscaling",
18043          "kind": "DeleteOptions",
18044          "version": "v1"
18045        },
18046        {
18047          "group": "autoscaling",
18048          "kind": "DeleteOptions",
18049          "version": "v2beta1"
18050        },
18051        {
18052          "group": "autoscaling",
18053          "kind": "DeleteOptions",
18054          "version": "v2beta2"
18055        },
18056        {
18057          "group": "batch",
18058          "kind": "DeleteOptions",
18059          "version": "v1"
18060        },
18061        {
18062          "group": "batch",
18063          "kind": "DeleteOptions",
18064          "version": "v1beta1"
18065        },
18066        {
18067          "group": "batch",
18068          "kind": "DeleteOptions",
18069          "version": "v2alpha1"
18070        },
18071        {
18072          "group": "certificates.k8s.io",
18073          "kind": "DeleteOptions",
18074          "version": "v1beta1"
18075        },
18076        {
18077          "group": "coordination.k8s.io",
18078          "kind": "DeleteOptions",
18079          "version": "v1"
18080        },
18081        {
18082          "group": "coordination.k8s.io",
18083          "kind": "DeleteOptions",
18084          "version": "v1beta1"
18085        },
18086        {
18087          "group": "events.k8s.io",
18088          "kind": "DeleteOptions",
18089          "version": "v1beta1"
18090        },
18091        {
18092          "group": "extensions",
18093          "kind": "DeleteOptions",
18094          "version": "v1beta1"
18095        },
18096        {
18097          "group": "imagepolicy.k8s.io",
18098          "kind": "DeleteOptions",
18099          "version": "v1alpha1"
18100        },
18101        {
18102          "group": "networking.k8s.io",
18103          "kind": "DeleteOptions",
18104          "version": "v1"
18105        },
18106        {
18107          "group": "networking.k8s.io",
18108          "kind": "DeleteOptions",
18109          "version": "v1beta1"
18110        },
18111        {
18112          "group": "node.k8s.io",
18113          "kind": "DeleteOptions",
18114          "version": "v1alpha1"
18115        },
18116        {
18117          "group": "node.k8s.io",
18118          "kind": "DeleteOptions",
18119          "version": "v1beta1"
18120        },
18121        {
18122          "group": "policy",
18123          "kind": "DeleteOptions",
18124          "version": "v1beta1"
18125        },
18126        {
18127          "group": "rbac.authorization.k8s.io",
18128          "kind": "DeleteOptions",
18129          "version": "v1"
18130        },
18131        {
18132          "group": "rbac.authorization.k8s.io",
18133          "kind": "DeleteOptions",
18134          "version": "v1alpha1"
18135        },
18136        {
18137          "group": "rbac.authorization.k8s.io",
18138          "kind": "DeleteOptions",
18139          "version": "v1beta1"
18140        },
18141        {
18142          "group": "scheduling.k8s.io",
18143          "kind": "DeleteOptions",
18144          "version": "v1"
18145        },
18146        {
18147          "group": "scheduling.k8s.io",
18148          "kind": "DeleteOptions",
18149          "version": "v1alpha1"
18150        },
18151        {
18152          "group": "scheduling.k8s.io",
18153          "kind": "DeleteOptions",
18154          "version": "v1beta1"
18155        },
18156        {
18157          "group": "settings.k8s.io",
18158          "kind": "DeleteOptions",
18159          "version": "v1alpha1"
18160        },
18161        {
18162          "group": "storage.k8s.io",
18163          "kind": "DeleteOptions",
18164          "version": "v1"
18165        },
18166        {
18167          "group": "storage.k8s.io",
18168          "kind": "DeleteOptions",
18169          "version": "v1alpha1"
18170        },
18171        {
18172          "group": "storage.k8s.io",
18173          "kind": "DeleteOptions",
18174          "version": "v1beta1"
18175        }
18176      ]
18177    },
18178    "io.k8s.apimachinery.pkg.apis.meta.v1.Fields": {
18179      "description": "Fields stores a set of fields in a data structure like a Trie. To understand how this is used, see: https://github.com/kubernetes-sigs/structured-merge-diff",
18180      "type": "object"
18181    },
18182    "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": {
18183      "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.",
18184      "properties": {
18185        "groupVersion": {
18186          "description": "groupVersion specifies the API group and version in the form \"group/version\"",
18187          "type": "string"
18188        },
18189        "version": {
18190          "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
18191          "type": "string"
18192        }
18193      },
18194      "required": [
18195        "groupVersion",
18196        "version"
18197      ],
18198      "type": "object"
18199    },
18200    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": {
18201      "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.",
18202      "properties": {
18203        "matchExpressions": {
18204          "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
18205          "items": {
18206            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement"
18207          },
18208          "type": "array"
18209        },
18210        "matchLabels": {
18211          "additionalProperties": {
18212            "type": "string"
18213          },
18214          "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.",
18215          "type": "object"
18216        }
18217      },
18218      "type": "object"
18219    },
18220    "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": {
18221      "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
18222      "properties": {
18223        "key": {
18224          "description": "key is the label key that the selector applies to.",
18225          "type": "string",
18226          "x-kubernetes-patch-merge-key": "key",
18227          "x-kubernetes-patch-strategy": "merge"
18228        },
18229        "operator": {
18230          "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
18231          "type": "string"
18232        },
18233        "values": {
18234          "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.",
18235          "items": {
18236            "type": "string"
18237          },
18238          "type": "array"
18239        }
18240      },
18241      "required": [
18242        "key",
18243        "operator"
18244      ],
18245      "type": "object"
18246    },
18247    "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
18248      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
18249      "properties": {
18250        "continue": {
18251          "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.",
18252          "type": "string"
18253        },
18254        "remainingItemCount": {
18255          "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.\n\nThis field is alpha and can be changed or removed without notice.",
18256          "format": "int64",
18257          "type": "integer"
18258        },
18259        "resourceVersion": {
18260          "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency",
18261          "type": "string"
18262        },
18263        "selfLink": {
18264          "description": "selfLink is a URL representing this object. Populated by the system. Read-only.",
18265          "type": "string"
18266        }
18267      },
18268      "type": "object"
18269    },
18270    "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
18271      "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
18272      "properties": {
18273        "apiVersion": {
18274          "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.",
18275          "type": "string"
18276        },
18277        "fields": {
18278          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Fields",
18279          "description": "Fields identifies a set of fields."
18280        },
18281        "manager": {
18282          "description": "Manager is an identifier of the workflow managing these fields.",
18283          "type": "string"
18284        },
18285        "operation": {
18286          "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'.",
18287          "type": "string"
18288        },
18289        "time": {
18290          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18291          "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
18292        }
18293      },
18294      "type": "object"
18295    },
18296    "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": {
18297      "description": "MicroTime is version of Time with microsecond level precision.",
18298      "format": "date-time",
18299      "type": "string"
18300    },
18301    "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
18302      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
18303      "properties": {
18304        "annotations": {
18305          "additionalProperties": {
18306            "type": "string"
18307          },
18308          "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",
18309          "type": "object"
18310        },
18311        "clusterName": {
18312          "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.",
18313          "type": "string"
18314        },
18315        "creationTimestamp": {
18316          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18317          "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/api-conventions.md#metadata"
18318        },
18319        "deletionGracePeriodSeconds": {
18320          "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.",
18321          "format": "int64",
18322          "type": "integer"
18323        },
18324        "deletionTimestamp": {
18325          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18326          "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/api-conventions.md#metadata"
18327        },
18328        "finalizers": {
18329          "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.",
18330          "items": {
18331            "type": "string"
18332          },
18333          "type": "array",
18334          "x-kubernetes-patch-strategy": "merge"
18335        },
18336        "generateName": {
18337          "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/api-conventions.md#idempotency",
18338          "type": "string"
18339        },
18340        "generation": {
18341          "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
18342          "format": "int64",
18343          "type": "integer"
18344        },
18345        "labels": {
18346          "additionalProperties": {
18347            "type": "string"
18348          },
18349          "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",
18350          "type": "object"
18351        },
18352        "managedFields": {
18353          "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.\n\nThis field is alpha and can be changed or removed without notice.",
18354          "items": {
18355            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
18356          },
18357          "type": "array"
18358        },
18359        "name": {
18360          "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",
18361          "type": "string"
18362        },
18363        "namespace": {
18364          "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
18365          "type": "string"
18366        },
18367        "ownerReferences": {
18368          "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.",
18369          "items": {
18370            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
18371          },
18372          "type": "array",
18373          "x-kubernetes-patch-merge-key": "uid",
18374          "x-kubernetes-patch-strategy": "merge"
18375        },
18376        "resourceVersion": {
18377          "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/api-conventions.md#concurrency-control-and-consistency",
18378          "type": "string"
18379        },
18380        "selfLink": {
18381          "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.",
18382          "type": "string"
18383        },
18384        "uid": {
18385          "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",
18386          "type": "string"
18387        }
18388      },
18389      "type": "object"
18390    },
18391    "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
18392      "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.",
18393      "properties": {
18394        "apiVersion": {
18395          "description": "API version of the referent.",
18396          "type": "string"
18397        },
18398        "blockOwnerDeletion": {
18399          "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.",
18400          "type": "boolean"
18401        },
18402        "controller": {
18403          "description": "If true, this reference points to the managing controller.",
18404          "type": "boolean"
18405        },
18406        "kind": {
18407          "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
18408          "type": "string"
18409        },
18410        "name": {
18411          "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
18412          "type": "string"
18413        },
18414        "uid": {
18415          "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
18416          "type": "string"
18417        }
18418      },
18419      "required": [
18420        "apiVersion",
18421        "kind",
18422        "name",
18423        "uid"
18424      ],
18425      "type": "object"
18426    },
18427    "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
18428      "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
18429      "type": "object"
18430    },
18431    "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
18432      "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
18433      "properties": {
18434        "resourceVersion": {
18435          "description": "Specifies the target ResourceVersion",
18436          "type": "string"
18437        },
18438        "uid": {
18439          "description": "Specifies the target UID.",
18440          "type": "string"
18441        }
18442      },
18443      "type": "object"
18444    },
18445    "io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": {
18446      "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
18447      "properties": {
18448        "clientCIDR": {
18449          "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
18450          "type": "string"
18451        },
18452        "serverAddress": {
18453          "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.",
18454          "type": "string"
18455        }
18456      },
18457      "required": [
18458        "clientCIDR",
18459        "serverAddress"
18460      ],
18461      "type": "object"
18462    },
18463    "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
18464      "description": "Status is a return value for calls that don't return other objects.",
18465      "properties": {
18466        "apiVersion": {
18467          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
18468          "type": "string"
18469        },
18470        "code": {
18471          "description": "Suggested HTTP return code for this status, 0 if not set.",
18472          "format": "int32",
18473          "type": "integer"
18474        },
18475        "details": {
18476          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails",
18477          "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."
18478        },
18479        "kind": {
18480          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
18481          "type": "string"
18482        },
18483        "message": {
18484          "description": "A human-readable description of the status of this operation.",
18485          "type": "string"
18486        },
18487        "metadata": {
18488          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
18489          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
18490        },
18491        "reason": {
18492          "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.",
18493          "type": "string"
18494        },
18495        "status": {
18496          "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status",
18497          "type": "string"
18498        }
18499      },
18500      "type": "object",
18501      "x-kubernetes-group-version-kind": [
18502        {
18503          "group": "",
18504          "kind": "Status",
18505          "version": "v1"
18506        }
18507      ]
18508    },
18509    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
18510      "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
18511      "properties": {
18512        "field": {
18513          "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\"",
18514          "type": "string"
18515        },
18516        "message": {
18517          "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
18518          "type": "string"
18519        },
18520        "reason": {
18521          "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
18522          "type": "string"
18523        }
18524      },
18525      "type": "object"
18526    },
18527    "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
18528      "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.",
18529      "properties": {
18530        "causes": {
18531          "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
18532          "items": {
18533            "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
18534          },
18535          "type": "array"
18536        },
18537        "group": {
18538          "description": "The group attribute of the resource associated with the status StatusReason.",
18539          "type": "string"
18540        },
18541        "kind": {
18542          "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
18543          "type": "string"
18544        },
18545        "name": {
18546          "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
18547          "type": "string"
18548        },
18549        "retryAfterSeconds": {
18550          "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.",
18551          "format": "int32",
18552          "type": "integer"
18553        },
18554        "uid": {
18555          "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",
18556          "type": "string"
18557        }
18558      },
18559      "type": "object"
18560    },
18561    "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
18562      "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.",
18563      "format": "date-time",
18564      "type": "string"
18565    },
18566    "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
18567      "description": "Event represents a single event to a watched resource.",
18568      "properties": {
18569        "object": {
18570          "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension",
18571          "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."
18572        },
18573        "type": {
18574          "type": "string"
18575        }
18576      },
18577      "required": [
18578        "type",
18579        "object"
18580      ],
18581      "type": "object",
18582      "x-kubernetes-group-version-kind": [
18583        {
18584          "group": "",
18585          "kind": "WatchEvent",
18586          "version": "v1"
18587        },
18588        {
18589          "group": "admission.k8s.io",
18590          "kind": "WatchEvent",
18591          "version": "v1beta1"
18592        },
18593        {
18594          "group": "admissionregistration.k8s.io",
18595          "kind": "WatchEvent",
18596          "version": "v1"
18597        },
18598        {
18599          "group": "admissionregistration.k8s.io",
18600          "kind": "WatchEvent",
18601          "version": "v1beta1"
18602        },
18603        {
18604          "group": "apiextensions.k8s.io",
18605          "kind": "WatchEvent",
18606          "version": "v1beta1"
18607        },
18608        {
18609          "group": "apiregistration.k8s.io",
18610          "kind": "WatchEvent",
18611          "version": "v1"
18612        },
18613        {
18614          "group": "apiregistration.k8s.io",
18615          "kind": "WatchEvent",
18616          "version": "v1beta1"
18617        },
18618        {
18619          "group": "apps",
18620          "kind": "WatchEvent",
18621          "version": "v1"
18622        },
18623        {
18624          "group": "apps",
18625          "kind": "WatchEvent",
18626          "version": "v1beta1"
18627        },
18628        {
18629          "group": "apps",
18630          "kind": "WatchEvent",
18631          "version": "v1beta2"
18632        },
18633        {
18634          "group": "auditregistration.k8s.io",
18635          "kind": "WatchEvent",
18636          "version": "v1alpha1"
18637        },
18638        {
18639          "group": "authentication.k8s.io",
18640          "kind": "WatchEvent",
18641          "version": "v1"
18642        },
18643        {
18644          "group": "authentication.k8s.io",
18645          "kind": "WatchEvent",
18646          "version": "v1beta1"
18647        },
18648        {
18649          "group": "authorization.k8s.io",
18650          "kind": "WatchEvent",
18651          "version": "v1"
18652        },
18653        {
18654          "group": "authorization.k8s.io",
18655          "kind": "WatchEvent",
18656          "version": "v1beta1"
18657        },
18658        {
18659          "group": "autoscaling",
18660          "kind": "WatchEvent",
18661          "version": "v1"
18662        },
18663        {
18664          "group": "autoscaling",
18665          "kind": "WatchEvent",
18666          "version": "v2beta1"
18667        },
18668        {
18669          "group": "autoscaling",
18670          "kind": "WatchEvent",
18671          "version": "v2beta2"
18672        },
18673        {
18674          "group": "batch",
18675          "kind": "WatchEvent",
18676          "version": "v1"
18677        },
18678        {
18679          "group": "batch",
18680          "kind": "WatchEvent",
18681          "version": "v1beta1"
18682        },
18683        {
18684          "group": "batch",
18685          "kind": "WatchEvent",
18686          "version": "v2alpha1"
18687        },
18688        {
18689          "group": "certificates.k8s.io",
18690          "kind": "WatchEvent",
18691          "version": "v1beta1"
18692        },
18693        {
18694          "group": "coordination.k8s.io",
18695          "kind": "WatchEvent",
18696          "version": "v1"
18697        },
18698        {
18699          "group": "coordination.k8s.io",
18700          "kind": "WatchEvent",
18701          "version": "v1beta1"
18702        },
18703        {
18704          "group": "events.k8s.io",
18705          "kind": "WatchEvent",
18706          "version": "v1beta1"
18707        },
18708        {
18709          "group": "extensions",
18710          "kind": "WatchEvent",
18711          "version": "v1beta1"
18712        },
18713        {
18714          "group": "imagepolicy.k8s.io",
18715          "kind": "WatchEvent",
18716          "version": "v1alpha1"
18717        },
18718        {
18719          "group": "networking.k8s.io",
18720          "kind": "WatchEvent",
18721          "version": "v1"
18722        },
18723        {
18724          "group": "networking.k8s.io",
18725          "kind": "WatchEvent",
18726          "version": "v1beta1"
18727        },
18728        {
18729          "group": "node.k8s.io",
18730          "kind": "WatchEvent",
18731          "version": "v1alpha1"
18732        },
18733        {
18734          "group": "node.k8s.io",
18735          "kind": "WatchEvent",
18736          "version": "v1beta1"
18737        },
18738        {
18739          "group": "policy",
18740          "kind": "WatchEvent",
18741          "version": "v1beta1"
18742        },
18743        {
18744          "group": "rbac.authorization.k8s.io",
18745          "kind": "WatchEvent",
18746          "version": "v1"
18747        },
18748        {
18749          "group": "rbac.authorization.k8s.io",
18750          "kind": "WatchEvent",
18751          "version": "v1alpha1"
18752        },
18753        {
18754          "group": "rbac.authorization.k8s.io",
18755          "kind": "WatchEvent",
18756          "version": "v1beta1"
18757        },
18758        {
18759          "group": "scheduling.k8s.io",
18760          "kind": "WatchEvent",
18761          "version": "v1"
18762        },
18763        {
18764          "group": "scheduling.k8s.io",
18765          "kind": "WatchEvent",
18766          "version": "v1alpha1"
18767        },
18768        {
18769          "group": "scheduling.k8s.io",
18770          "kind": "WatchEvent",
18771          "version": "v1beta1"
18772        },
18773        {
18774          "group": "settings.k8s.io",
18775          "kind": "WatchEvent",
18776          "version": "v1alpha1"
18777        },
18778        {
18779          "group": "storage.k8s.io",
18780          "kind": "WatchEvent",
18781          "version": "v1"
18782        },
18783        {
18784          "group": "storage.k8s.io",
18785          "kind": "WatchEvent",
18786          "version": "v1alpha1"
18787        },
18788        {
18789          "group": "storage.k8s.io",
18790          "kind": "WatchEvent",
18791          "version": "v1beta1"
18792        }
18793      ]
18794    },
18795    "io.k8s.apimachinery.pkg.runtime.RawExtension": {
18796      "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.)",
18797      "properties": {
18798        "Raw": {
18799          "description": "Raw is the underlying serialization of this object.",
18800          "format": "byte",
18801          "type": "string"
18802        }
18803      },
18804      "required": [
18805        "Raw"
18806      ],
18807      "type": "object"
18808    },
18809    "io.k8s.apimachinery.pkg.util.intstr.IntOrString": {
18810      "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.",
18811      "format": "int-or-string",
18812      "type": "string"
18813    },
18814    "io.k8s.apimachinery.pkg.version.Info": {
18815      "description": "Info contains versioning information. how we'll want to distribute that information.",
18816      "properties": {
18817        "buildDate": {
18818          "type": "string"
18819        },
18820        "compiler": {
18821          "type": "string"
18822        },
18823        "gitCommit": {
18824          "type": "string"
18825        },
18826        "gitTreeState": {
18827          "type": "string"
18828        },
18829        "gitVersion": {
18830          "type": "string"
18831        },
18832        "goVersion": {
18833          "type": "string"
18834        },
18835        "major": {
18836          "type": "string"
18837        },
18838        "minor": {
18839          "type": "string"
18840        },
18841        "platform": {
18842          "type": "string"
18843        }
18844      },
18845      "required": [
18846        "major",
18847        "minor",
18848        "gitVersion",
18849        "gitCommit",
18850        "gitTreeState",
18851        "buildDate",
18852        "goVersion",
18853        "compiler",
18854        "platform"
18855      ],
18856      "type": "object"
18857    },
18858    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService": {
18859      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
18860      "properties": {
18861        "apiVersion": {
18862          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
18863          "type": "string"
18864        },
18865        "kind": {
18866          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
18867          "type": "string"
18868        },
18869        "metadata": {
18870          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
18871        },
18872        "spec": {
18873          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec",
18874          "description": "Spec contains information for locating and communicating with a server"
18875        },
18876        "status": {
18877          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus",
18878          "description": "Status contains derived information about an API server"
18879        }
18880      },
18881      "type": "object",
18882      "x-kubernetes-group-version-kind": [
18883        {
18884          "group": "apiregistration.k8s.io",
18885          "kind": "APIService",
18886          "version": "v1"
18887        }
18888      ]
18889    },
18890    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition": {
18891      "description": "APIServiceCondition describes the state of an APIService at a particular point",
18892      "properties": {
18893        "lastTransitionTime": {
18894          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
18895          "description": "Last time the condition transitioned from one status to another."
18896        },
18897        "message": {
18898          "description": "Human-readable message indicating details about last transition.",
18899          "type": "string"
18900        },
18901        "reason": {
18902          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
18903          "type": "string"
18904        },
18905        "status": {
18906          "description": "Status is the status of the condition. Can be True, False, Unknown.",
18907          "type": "string"
18908        },
18909        "type": {
18910          "description": "Type is the type of the condition.",
18911          "type": "string"
18912        }
18913      },
18914      "required": [
18915        "type",
18916        "status"
18917      ],
18918      "type": "object"
18919    },
18920    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList": {
18921      "description": "APIServiceList is a list of APIService objects.",
18922      "properties": {
18923        "apiVersion": {
18924          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
18925          "type": "string"
18926        },
18927        "items": {
18928          "items": {
18929            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
18930          },
18931          "type": "array"
18932        },
18933        "kind": {
18934          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
18935          "type": "string"
18936        },
18937        "metadata": {
18938          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
18939        }
18940      },
18941      "required": [
18942        "items"
18943      ],
18944      "type": "object",
18945      "x-kubernetes-group-version-kind": [
18946        {
18947          "group": "apiregistration.k8s.io",
18948          "kind": "APIServiceList",
18949          "version": "v1"
18950        }
18951      ]
18952    },
18953    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
18954      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
18955      "properties": {
18956        "caBundle": {
18957          "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.",
18958          "format": "byte",
18959          "type": "string"
18960        },
18961        "group": {
18962          "description": "Group is the API group name this server hosts",
18963          "type": "string"
18964        },
18965        "groupPriorityMinimum": {
18966          "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",
18967          "format": "int32",
18968          "type": "integer"
18969        },
18970        "insecureSkipTLSVerify": {
18971          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
18972          "type": "boolean"
18973        },
18974        "service": {
18975          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference",
18976          "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."
18977        },
18978        "version": {
18979          "description": "Version is the API version this server hosts.  For example, \"v1\"",
18980          "type": "string"
18981        },
18982        "versionPriority": {
18983          "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.",
18984          "format": "int32",
18985          "type": "integer"
18986        }
18987      },
18988      "required": [
18989        "service",
18990        "groupPriorityMinimum",
18991        "versionPriority"
18992      ],
18993      "type": "object"
18994    },
18995    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus": {
18996      "description": "APIServiceStatus contains derived information about an API server",
18997      "properties": {
18998        "conditions": {
18999          "description": "Current service state of apiService.",
19000          "items": {
19001            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition"
19002          },
19003          "type": "array",
19004          "x-kubernetes-patch-merge-key": "type",
19005          "x-kubernetes-patch-strategy": "merge"
19006        }
19007      },
19008      "type": "object"
19009    },
19010    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference": {
19011      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
19012      "properties": {
19013        "name": {
19014          "description": "Name is the name of the service",
19015          "type": "string"
19016        },
19017        "namespace": {
19018          "description": "Namespace is the namespace of the service",
19019          "type": "string"
19020        },
19021        "port": {
19022          "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).",
19023          "format": "int32",
19024          "type": "integer"
19025        }
19026      },
19027      "type": "object"
19028    },
19029    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService": {
19030      "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
19031      "properties": {
19032        "apiVersion": {
19033          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
19034          "type": "string"
19035        },
19036        "kind": {
19037          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
19038          "type": "string"
19039        },
19040        "metadata": {
19041          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
19042        },
19043        "spec": {
19044          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec",
19045          "description": "Spec contains information for locating and communicating with a server"
19046        },
19047        "status": {
19048          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus",
19049          "description": "Status contains derived information about an API server"
19050        }
19051      },
19052      "type": "object",
19053      "x-kubernetes-group-version-kind": [
19054        {
19055          "group": "apiregistration.k8s.io",
19056          "kind": "APIService",
19057          "version": "v1beta1"
19058        }
19059      ]
19060    },
19061    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition": {
19062      "description": "APIServiceCondition describes the state of an APIService at a particular point",
19063      "properties": {
19064        "lastTransitionTime": {
19065          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
19066          "description": "Last time the condition transitioned from one status to another."
19067        },
19068        "message": {
19069          "description": "Human-readable message indicating details about last transition.",
19070          "type": "string"
19071        },
19072        "reason": {
19073          "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
19074          "type": "string"
19075        },
19076        "status": {
19077          "description": "Status is the status of the condition. Can be True, False, Unknown.",
19078          "type": "string"
19079        },
19080        "type": {
19081          "description": "Type is the type of the condition.",
19082          "type": "string"
19083        }
19084      },
19085      "required": [
19086        "type",
19087        "status"
19088      ],
19089      "type": "object"
19090    },
19091    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList": {
19092      "description": "APIServiceList is a list of APIService objects.",
19093      "properties": {
19094        "apiVersion": {
19095          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
19096          "type": "string"
19097        },
19098        "items": {
19099          "items": {
19100            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
19101          },
19102          "type": "array"
19103        },
19104        "kind": {
19105          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds",
19106          "type": "string"
19107        },
19108        "metadata": {
19109          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
19110        }
19111      },
19112      "required": [
19113        "items"
19114      ],
19115      "type": "object",
19116      "x-kubernetes-group-version-kind": [
19117        {
19118          "group": "apiregistration.k8s.io",
19119          "kind": "APIServiceList",
19120          "version": "v1beta1"
19121        }
19122      ]
19123    },
19124    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceSpec": {
19125      "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
19126      "properties": {
19127        "caBundle": {
19128          "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.",
19129          "format": "byte",
19130          "type": "string"
19131        },
19132        "group": {
19133          "description": "Group is the API group name this server hosts",
19134          "type": "string"
19135        },
19136        "groupPriorityMinimum": {
19137          "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",
19138          "format": "int32",
19139          "type": "integer"
19140        },
19141        "insecureSkipTLSVerify": {
19142          "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged.  You should use the CABundle instead.",
19143          "type": "boolean"
19144        },
19145        "service": {
19146          "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference",
19147          "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."
19148        },
19149        "version": {
19150          "description": "Version is the API version this server hosts.  For example, \"v1\"",
19151          "type": "string"
19152        },
19153        "versionPriority": {
19154          "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.",
19155          "format": "int32",
19156          "type": "integer"
19157        }
19158      },
19159      "required": [
19160        "service",
19161        "groupPriorityMinimum",
19162        "versionPriority"
19163      ],
19164      "type": "object"
19165    },
19166    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceStatus": {
19167      "description": "APIServiceStatus contains derived information about an API server",
19168      "properties": {
19169        "conditions": {
19170          "description": "Current service state of apiService.",
19171          "items": {
19172            "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceCondition"
19173          },
19174          "type": "array",
19175          "x-kubernetes-patch-merge-key": "type",
19176          "x-kubernetes-patch-strategy": "merge"
19177        }
19178      },
19179      "type": "object"
19180    },
19181    "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ServiceReference": {
19182      "description": "ServiceReference holds a reference to Service.legacy.k8s.io",
19183      "properties": {
19184        "name": {
19185          "description": "Name is the name of the service",
19186          "type": "string"
19187        },
19188        "namespace": {
19189          "description": "Namespace is the namespace of the service",
19190          "type": "string"
19191        },
19192        "port": {
19193          "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).",
19194          "format": "int32",
19195          "type": "integer"
19196        }
19197      },
19198      "type": "object"
19199    }
19200  },
19201  "info": {
19202    "title": "Kubernetes",
19203    "version": "v1.16.0"
19204  },
19205  "paths": {
19206    "/api/": {
19207      "get": {
19208        "consumes": [
19209          "application/json",
19210          "application/yaml",
19211          "application/vnd.kubernetes.protobuf"
19212        ],
19213        "description": "get available API versions",
19214        "operationId": "getCoreAPIVersions",
19215        "produces": [
19216          "application/json",
19217          "application/yaml",
19218          "application/vnd.kubernetes.protobuf"
19219        ],
19220        "responses": {
19221          "200": {
19222            "description": "OK",
19223            "schema": {
19224              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions"
19225            }
19226          },
19227          "401": {
19228            "description": "Unauthorized"
19229          }
19230        },
19231        "schemes": [
19232          "https"
19233        ],
19234        "tags": [
19235          "core"
19236        ]
19237      }
19238    },
19239    "/api/v1/": {
19240      "get": {
19241        "consumes": [
19242          "application/json",
19243          "application/yaml",
19244          "application/vnd.kubernetes.protobuf"
19245        ],
19246        "description": "get available resources",
19247        "operationId": "getCoreV1APIResources",
19248        "produces": [
19249          "application/json",
19250          "application/yaml",
19251          "application/vnd.kubernetes.protobuf"
19252        ],
19253        "responses": {
19254          "200": {
19255            "description": "OK",
19256            "schema": {
19257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
19258            }
19259          },
19260          "401": {
19261            "description": "Unauthorized"
19262          }
19263        },
19264        "schemes": [
19265          "https"
19266        ],
19267        "tags": [
19268          "core_v1"
19269        ]
19270      }
19271    },
19272    "/api/v1/componentstatuses": {
19273      "get": {
19274        "consumes": [
19275          "*/*"
19276        ],
19277        "description": "list objects of kind ComponentStatus",
19278        "operationId": "listCoreV1ComponentStatus",
19279        "produces": [
19280          "application/json",
19281          "application/yaml",
19282          "application/vnd.kubernetes.protobuf",
19283          "application/json;stream=watch",
19284          "application/vnd.kubernetes.protobuf;stream=watch"
19285        ],
19286        "responses": {
19287          "200": {
19288            "description": "OK",
19289            "schema": {
19290              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatusList"
19291            }
19292          },
19293          "401": {
19294            "description": "Unauthorized"
19295          }
19296        },
19297        "schemes": [
19298          "https"
19299        ],
19300        "tags": [
19301          "core_v1"
19302        ],
19303        "x-kubernetes-action": "list",
19304        "x-kubernetes-group-version-kind": {
19305          "group": "",
19306          "kind": "ComponentStatus",
19307          "version": "v1"
19308        }
19309      },
19310      "parameters": [
19311        {
19312          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
19313          "in": "query",
19314          "name": "allowWatchBookmarks",
19315          "type": "boolean",
19316          "uniqueItems": true
19317        },
19318        {
19319          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19320          "in": "query",
19321          "name": "continue",
19322          "type": "string",
19323          "uniqueItems": true
19324        },
19325        {
19326          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19327          "in": "query",
19328          "name": "fieldSelector",
19329          "type": "string",
19330          "uniqueItems": true
19331        },
19332        {
19333          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19334          "in": "query",
19335          "name": "labelSelector",
19336          "type": "string",
19337          "uniqueItems": true
19338        },
19339        {
19340          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19341          "in": "query",
19342          "name": "limit",
19343          "type": "integer",
19344          "uniqueItems": true
19345        },
19346        {
19347          "description": "If 'true', then the output is pretty printed.",
19348          "in": "query",
19349          "name": "pretty",
19350          "type": "string",
19351          "uniqueItems": true
19352        },
19353        {
19354          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
19355          "in": "query",
19356          "name": "resourceVersion",
19357          "type": "string",
19358          "uniqueItems": true
19359        },
19360        {
19361          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19362          "in": "query",
19363          "name": "timeoutSeconds",
19364          "type": "integer",
19365          "uniqueItems": true
19366        },
19367        {
19368          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19369          "in": "query",
19370          "name": "watch",
19371          "type": "boolean",
19372          "uniqueItems": true
19373        }
19374      ]
19375    },
19376    "/api/v1/componentstatuses/{name}": {
19377      "get": {
19378        "consumes": [
19379          "*/*"
19380        ],
19381        "description": "read the specified ComponentStatus",
19382        "operationId": "readCoreV1ComponentStatus",
19383        "produces": [
19384          "application/json",
19385          "application/yaml",
19386          "application/vnd.kubernetes.protobuf"
19387        ],
19388        "responses": {
19389          "200": {
19390            "description": "OK",
19391            "schema": {
19392              "$ref": "#/definitions/io.k8s.api.core.v1.ComponentStatus"
19393            }
19394          },
19395          "401": {
19396            "description": "Unauthorized"
19397          }
19398        },
19399        "schemes": [
19400          "https"
19401        ],
19402        "tags": [
19403          "core_v1"
19404        ],
19405        "x-kubernetes-action": "get",
19406        "x-kubernetes-group-version-kind": {
19407          "group": "",
19408          "kind": "ComponentStatus",
19409          "version": "v1"
19410        }
19411      },
19412      "parameters": [
19413        {
19414          "description": "name of the ComponentStatus",
19415          "in": "path",
19416          "name": "name",
19417          "required": true,
19418          "type": "string",
19419          "uniqueItems": true
19420        },
19421        {
19422          "description": "If 'true', then the output is pretty printed.",
19423          "in": "query",
19424          "name": "pretty",
19425          "type": "string",
19426          "uniqueItems": true
19427        }
19428      ]
19429    },
19430    "/api/v1/configmaps": {
19431      "get": {
19432        "consumes": [
19433          "*/*"
19434        ],
19435        "description": "list or watch objects of kind ConfigMap",
19436        "operationId": "listCoreV1ConfigMapForAllNamespaces",
19437        "produces": [
19438          "application/json",
19439          "application/yaml",
19440          "application/vnd.kubernetes.protobuf",
19441          "application/json;stream=watch",
19442          "application/vnd.kubernetes.protobuf;stream=watch"
19443        ],
19444        "responses": {
19445          "200": {
19446            "description": "OK",
19447            "schema": {
19448              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
19449            }
19450          },
19451          "401": {
19452            "description": "Unauthorized"
19453          }
19454        },
19455        "schemes": [
19456          "https"
19457        ],
19458        "tags": [
19459          "core_v1"
19460        ],
19461        "x-kubernetes-action": "list",
19462        "x-kubernetes-group-version-kind": {
19463          "group": "",
19464          "kind": "ConfigMap",
19465          "version": "v1"
19466        }
19467      },
19468      "parameters": [
19469        {
19470          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
19471          "in": "query",
19472          "name": "allowWatchBookmarks",
19473          "type": "boolean",
19474          "uniqueItems": true
19475        },
19476        {
19477          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19478          "in": "query",
19479          "name": "continue",
19480          "type": "string",
19481          "uniqueItems": true
19482        },
19483        {
19484          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19485          "in": "query",
19486          "name": "fieldSelector",
19487          "type": "string",
19488          "uniqueItems": true
19489        },
19490        {
19491          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19492          "in": "query",
19493          "name": "labelSelector",
19494          "type": "string",
19495          "uniqueItems": true
19496        },
19497        {
19498          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19499          "in": "query",
19500          "name": "limit",
19501          "type": "integer",
19502          "uniqueItems": true
19503        },
19504        {
19505          "description": "If 'true', then the output is pretty printed.",
19506          "in": "query",
19507          "name": "pretty",
19508          "type": "string",
19509          "uniqueItems": true
19510        },
19511        {
19512          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
19513          "in": "query",
19514          "name": "resourceVersion",
19515          "type": "string",
19516          "uniqueItems": true
19517        },
19518        {
19519          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19520          "in": "query",
19521          "name": "timeoutSeconds",
19522          "type": "integer",
19523          "uniqueItems": true
19524        },
19525        {
19526          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19527          "in": "query",
19528          "name": "watch",
19529          "type": "boolean",
19530          "uniqueItems": true
19531        }
19532      ]
19533    },
19534    "/api/v1/endpoints": {
19535      "get": {
19536        "consumes": [
19537          "*/*"
19538        ],
19539        "description": "list or watch objects of kind Endpoints",
19540        "operationId": "listCoreV1EndpointsForAllNamespaces",
19541        "produces": [
19542          "application/json",
19543          "application/yaml",
19544          "application/vnd.kubernetes.protobuf",
19545          "application/json;stream=watch",
19546          "application/vnd.kubernetes.protobuf;stream=watch"
19547        ],
19548        "responses": {
19549          "200": {
19550            "description": "OK",
19551            "schema": {
19552              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
19553            }
19554          },
19555          "401": {
19556            "description": "Unauthorized"
19557          }
19558        },
19559        "schemes": [
19560          "https"
19561        ],
19562        "tags": [
19563          "core_v1"
19564        ],
19565        "x-kubernetes-action": "list",
19566        "x-kubernetes-group-version-kind": {
19567          "group": "",
19568          "kind": "Endpoints",
19569          "version": "v1"
19570        }
19571      },
19572      "parameters": [
19573        {
19574          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
19575          "in": "query",
19576          "name": "allowWatchBookmarks",
19577          "type": "boolean",
19578          "uniqueItems": true
19579        },
19580        {
19581          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19582          "in": "query",
19583          "name": "continue",
19584          "type": "string",
19585          "uniqueItems": true
19586        },
19587        {
19588          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19589          "in": "query",
19590          "name": "fieldSelector",
19591          "type": "string",
19592          "uniqueItems": true
19593        },
19594        {
19595          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19596          "in": "query",
19597          "name": "labelSelector",
19598          "type": "string",
19599          "uniqueItems": true
19600        },
19601        {
19602          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19603          "in": "query",
19604          "name": "limit",
19605          "type": "integer",
19606          "uniqueItems": true
19607        },
19608        {
19609          "description": "If 'true', then the output is pretty printed.",
19610          "in": "query",
19611          "name": "pretty",
19612          "type": "string",
19613          "uniqueItems": true
19614        },
19615        {
19616          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
19617          "in": "query",
19618          "name": "resourceVersion",
19619          "type": "string",
19620          "uniqueItems": true
19621        },
19622        {
19623          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19624          "in": "query",
19625          "name": "timeoutSeconds",
19626          "type": "integer",
19627          "uniqueItems": true
19628        },
19629        {
19630          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19631          "in": "query",
19632          "name": "watch",
19633          "type": "boolean",
19634          "uniqueItems": true
19635        }
19636      ]
19637    },
19638    "/api/v1/events": {
19639      "get": {
19640        "consumes": [
19641          "*/*"
19642        ],
19643        "description": "list or watch objects of kind Event",
19644        "operationId": "listCoreV1EventForAllNamespaces",
19645        "produces": [
19646          "application/json",
19647          "application/yaml",
19648          "application/vnd.kubernetes.protobuf",
19649          "application/json;stream=watch",
19650          "application/vnd.kubernetes.protobuf;stream=watch"
19651        ],
19652        "responses": {
19653          "200": {
19654            "description": "OK",
19655            "schema": {
19656              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
19657            }
19658          },
19659          "401": {
19660            "description": "Unauthorized"
19661          }
19662        },
19663        "schemes": [
19664          "https"
19665        ],
19666        "tags": [
19667          "core_v1"
19668        ],
19669        "x-kubernetes-action": "list",
19670        "x-kubernetes-group-version-kind": {
19671          "group": "",
19672          "kind": "Event",
19673          "version": "v1"
19674        }
19675      },
19676      "parameters": [
19677        {
19678          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
19679          "in": "query",
19680          "name": "allowWatchBookmarks",
19681          "type": "boolean",
19682          "uniqueItems": true
19683        },
19684        {
19685          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19686          "in": "query",
19687          "name": "continue",
19688          "type": "string",
19689          "uniqueItems": true
19690        },
19691        {
19692          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19693          "in": "query",
19694          "name": "fieldSelector",
19695          "type": "string",
19696          "uniqueItems": true
19697        },
19698        {
19699          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19700          "in": "query",
19701          "name": "labelSelector",
19702          "type": "string",
19703          "uniqueItems": true
19704        },
19705        {
19706          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19707          "in": "query",
19708          "name": "limit",
19709          "type": "integer",
19710          "uniqueItems": true
19711        },
19712        {
19713          "description": "If 'true', then the output is pretty printed.",
19714          "in": "query",
19715          "name": "pretty",
19716          "type": "string",
19717          "uniqueItems": true
19718        },
19719        {
19720          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
19721          "in": "query",
19722          "name": "resourceVersion",
19723          "type": "string",
19724          "uniqueItems": true
19725        },
19726        {
19727          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19728          "in": "query",
19729          "name": "timeoutSeconds",
19730          "type": "integer",
19731          "uniqueItems": true
19732        },
19733        {
19734          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19735          "in": "query",
19736          "name": "watch",
19737          "type": "boolean",
19738          "uniqueItems": true
19739        }
19740      ]
19741    },
19742    "/api/v1/limitranges": {
19743      "get": {
19744        "consumes": [
19745          "*/*"
19746        ],
19747        "description": "list or watch objects of kind LimitRange",
19748        "operationId": "listCoreV1LimitRangeForAllNamespaces",
19749        "produces": [
19750          "application/json",
19751          "application/yaml",
19752          "application/vnd.kubernetes.protobuf",
19753          "application/json;stream=watch",
19754          "application/vnd.kubernetes.protobuf;stream=watch"
19755        ],
19756        "responses": {
19757          "200": {
19758            "description": "OK",
19759            "schema": {
19760              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
19761            }
19762          },
19763          "401": {
19764            "description": "Unauthorized"
19765          }
19766        },
19767        "schemes": [
19768          "https"
19769        ],
19770        "tags": [
19771          "core_v1"
19772        ],
19773        "x-kubernetes-action": "list",
19774        "x-kubernetes-group-version-kind": {
19775          "group": "",
19776          "kind": "LimitRange",
19777          "version": "v1"
19778        }
19779      },
19780      "parameters": [
19781        {
19782          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
19783          "in": "query",
19784          "name": "allowWatchBookmarks",
19785          "type": "boolean",
19786          "uniqueItems": true
19787        },
19788        {
19789          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19790          "in": "query",
19791          "name": "continue",
19792          "type": "string",
19793          "uniqueItems": true
19794        },
19795        {
19796          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19797          "in": "query",
19798          "name": "fieldSelector",
19799          "type": "string",
19800          "uniqueItems": true
19801        },
19802        {
19803          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19804          "in": "query",
19805          "name": "labelSelector",
19806          "type": "string",
19807          "uniqueItems": true
19808        },
19809        {
19810          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19811          "in": "query",
19812          "name": "limit",
19813          "type": "integer",
19814          "uniqueItems": true
19815        },
19816        {
19817          "description": "If 'true', then the output is pretty printed.",
19818          "in": "query",
19819          "name": "pretty",
19820          "type": "string",
19821          "uniqueItems": true
19822        },
19823        {
19824          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
19825          "in": "query",
19826          "name": "resourceVersion",
19827          "type": "string",
19828          "uniqueItems": true
19829        },
19830        {
19831          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19832          "in": "query",
19833          "name": "timeoutSeconds",
19834          "type": "integer",
19835          "uniqueItems": true
19836        },
19837        {
19838          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19839          "in": "query",
19840          "name": "watch",
19841          "type": "boolean",
19842          "uniqueItems": true
19843        }
19844      ]
19845    },
19846    "/api/v1/namespaces": {
19847      "get": {
19848        "consumes": [
19849          "*/*"
19850        ],
19851        "description": "list or watch objects of kind Namespace",
19852        "operationId": "listCoreV1Namespace",
19853        "parameters": [
19854          {
19855            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
19856            "in": "query",
19857            "name": "allowWatchBookmarks",
19858            "type": "boolean",
19859            "uniqueItems": true
19860          },
19861          {
19862            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
19863            "in": "query",
19864            "name": "continue",
19865            "type": "string",
19866            "uniqueItems": true
19867          },
19868          {
19869            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
19870            "in": "query",
19871            "name": "fieldSelector",
19872            "type": "string",
19873            "uniqueItems": true
19874          },
19875          {
19876            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
19877            "in": "query",
19878            "name": "labelSelector",
19879            "type": "string",
19880            "uniqueItems": true
19881          },
19882          {
19883            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
19884            "in": "query",
19885            "name": "limit",
19886            "type": "integer",
19887            "uniqueItems": true
19888          },
19889          {
19890            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
19891            "in": "query",
19892            "name": "resourceVersion",
19893            "type": "string",
19894            "uniqueItems": true
19895          },
19896          {
19897            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
19898            "in": "query",
19899            "name": "timeoutSeconds",
19900            "type": "integer",
19901            "uniqueItems": true
19902          },
19903          {
19904            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
19905            "in": "query",
19906            "name": "watch",
19907            "type": "boolean",
19908            "uniqueItems": true
19909          }
19910        ],
19911        "produces": [
19912          "application/json",
19913          "application/yaml",
19914          "application/vnd.kubernetes.protobuf",
19915          "application/json;stream=watch",
19916          "application/vnd.kubernetes.protobuf;stream=watch"
19917        ],
19918        "responses": {
19919          "200": {
19920            "description": "OK",
19921            "schema": {
19922              "$ref": "#/definitions/io.k8s.api.core.v1.NamespaceList"
19923            }
19924          },
19925          "401": {
19926            "description": "Unauthorized"
19927          }
19928        },
19929        "schemes": [
19930          "https"
19931        ],
19932        "tags": [
19933          "core_v1"
19934        ],
19935        "x-kubernetes-action": "list",
19936        "x-kubernetes-group-version-kind": {
19937          "group": "",
19938          "kind": "Namespace",
19939          "version": "v1"
19940        }
19941      },
19942      "parameters": [
19943        {
19944          "description": "If 'true', then the output is pretty printed.",
19945          "in": "query",
19946          "name": "pretty",
19947          "type": "string",
19948          "uniqueItems": true
19949        }
19950      ],
19951      "post": {
19952        "consumes": [
19953          "*/*"
19954        ],
19955        "description": "create a Namespace",
19956        "operationId": "createCoreV1Namespace",
19957        "parameters": [
19958          {
19959            "in": "body",
19960            "name": "body",
19961            "required": true,
19962            "schema": {
19963              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
19964            }
19965          },
19966          {
19967            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
19968            "in": "query",
19969            "name": "dryRun",
19970            "type": "string",
19971            "uniqueItems": true
19972          },
19973          {
19974            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
19975            "in": "query",
19976            "name": "fieldManager",
19977            "type": "string",
19978            "uniqueItems": true
19979          }
19980        ],
19981        "produces": [
19982          "application/json",
19983          "application/yaml",
19984          "application/vnd.kubernetes.protobuf"
19985        ],
19986        "responses": {
19987          "200": {
19988            "description": "OK",
19989            "schema": {
19990              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
19991            }
19992          },
19993          "201": {
19994            "description": "Created",
19995            "schema": {
19996              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
19997            }
19998          },
19999          "202": {
20000            "description": "Accepted",
20001            "schema": {
20002              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
20003            }
20004          },
20005          "401": {
20006            "description": "Unauthorized"
20007          }
20008        },
20009        "schemes": [
20010          "https"
20011        ],
20012        "tags": [
20013          "core_v1"
20014        ],
20015        "x-kubernetes-action": "post",
20016        "x-kubernetes-group-version-kind": {
20017          "group": "",
20018          "kind": "Namespace",
20019          "version": "v1"
20020        }
20021      }
20022    },
20023    "/api/v1/namespaces/{namespace}/bindings": {
20024      "parameters": [
20025        {
20026          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20027          "in": "query",
20028          "name": "dryRun",
20029          "type": "string",
20030          "uniqueItems": true
20031        },
20032        {
20033          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20034          "in": "query",
20035          "name": "fieldManager",
20036          "type": "string",
20037          "uniqueItems": true
20038        },
20039        {
20040          "description": "object name and auth scope, such as for teams and projects",
20041          "in": "path",
20042          "name": "namespace",
20043          "required": true,
20044          "type": "string",
20045          "uniqueItems": true
20046        },
20047        {
20048          "description": "If 'true', then the output is pretty printed.",
20049          "in": "query",
20050          "name": "pretty",
20051          "type": "string",
20052          "uniqueItems": true
20053        }
20054      ],
20055      "post": {
20056        "consumes": [
20057          "*/*"
20058        ],
20059        "description": "create a Binding",
20060        "operationId": "createCoreV1NamespacedBinding",
20061        "parameters": [
20062          {
20063            "in": "body",
20064            "name": "body",
20065            "required": true,
20066            "schema": {
20067              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20068            }
20069          }
20070        ],
20071        "produces": [
20072          "application/json",
20073          "application/yaml",
20074          "application/vnd.kubernetes.protobuf"
20075        ],
20076        "responses": {
20077          "200": {
20078            "description": "OK",
20079            "schema": {
20080              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20081            }
20082          },
20083          "201": {
20084            "description": "Created",
20085            "schema": {
20086              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20087            }
20088          },
20089          "202": {
20090            "description": "Accepted",
20091            "schema": {
20092              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
20093            }
20094          },
20095          "401": {
20096            "description": "Unauthorized"
20097          }
20098        },
20099        "schemes": [
20100          "https"
20101        ],
20102        "tags": [
20103          "core_v1"
20104        ],
20105        "x-kubernetes-action": "post",
20106        "x-kubernetes-group-version-kind": {
20107          "group": "",
20108          "kind": "Binding",
20109          "version": "v1"
20110        }
20111      }
20112    },
20113    "/api/v1/namespaces/{namespace}/configmaps": {
20114      "delete": {
20115        "consumes": [
20116          "*/*"
20117        ],
20118        "description": "delete collection of ConfigMap",
20119        "operationId": "deleteCoreV1CollectionNamespacedConfigMap",
20120        "parameters": [
20121          {
20122            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
20123            "in": "query",
20124            "name": "allowWatchBookmarks",
20125            "type": "boolean",
20126            "uniqueItems": true
20127          },
20128          {
20129            "in": "body",
20130            "name": "body",
20131            "schema": {
20132              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20133            }
20134          },
20135          {
20136            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20137            "in": "query",
20138            "name": "continue",
20139            "type": "string",
20140            "uniqueItems": true
20141          },
20142          {
20143            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20144            "in": "query",
20145            "name": "dryRun",
20146            "type": "string",
20147            "uniqueItems": true
20148          },
20149          {
20150            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20151            "in": "query",
20152            "name": "fieldSelector",
20153            "type": "string",
20154            "uniqueItems": true
20155          },
20156          {
20157            "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.",
20158            "in": "query",
20159            "name": "gracePeriodSeconds",
20160            "type": "integer",
20161            "uniqueItems": true
20162          },
20163          {
20164            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20165            "in": "query",
20166            "name": "labelSelector",
20167            "type": "string",
20168            "uniqueItems": true
20169          },
20170          {
20171            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20172            "in": "query",
20173            "name": "limit",
20174            "type": "integer",
20175            "uniqueItems": true
20176          },
20177          {
20178            "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.",
20179            "in": "query",
20180            "name": "orphanDependents",
20181            "type": "boolean",
20182            "uniqueItems": true
20183          },
20184          {
20185            "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.",
20186            "in": "query",
20187            "name": "propagationPolicy",
20188            "type": "string",
20189            "uniqueItems": true
20190          },
20191          {
20192            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
20193            "in": "query",
20194            "name": "resourceVersion",
20195            "type": "string",
20196            "uniqueItems": true
20197          },
20198          {
20199            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20200            "in": "query",
20201            "name": "timeoutSeconds",
20202            "type": "integer",
20203            "uniqueItems": true
20204          },
20205          {
20206            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20207            "in": "query",
20208            "name": "watch",
20209            "type": "boolean",
20210            "uniqueItems": true
20211          }
20212        ],
20213        "produces": [
20214          "application/json",
20215          "application/yaml",
20216          "application/vnd.kubernetes.protobuf"
20217        ],
20218        "responses": {
20219          "200": {
20220            "description": "OK",
20221            "schema": {
20222              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20223            }
20224          },
20225          "401": {
20226            "description": "Unauthorized"
20227          }
20228        },
20229        "schemes": [
20230          "https"
20231        ],
20232        "tags": [
20233          "core_v1"
20234        ],
20235        "x-kubernetes-action": "deletecollection",
20236        "x-kubernetes-group-version-kind": {
20237          "group": "",
20238          "kind": "ConfigMap",
20239          "version": "v1"
20240        }
20241      },
20242      "get": {
20243        "consumes": [
20244          "*/*"
20245        ],
20246        "description": "list or watch objects of kind ConfigMap",
20247        "operationId": "listCoreV1NamespacedConfigMap",
20248        "parameters": [
20249          {
20250            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
20251            "in": "query",
20252            "name": "allowWatchBookmarks",
20253            "type": "boolean",
20254            "uniqueItems": true
20255          },
20256          {
20257            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20258            "in": "query",
20259            "name": "continue",
20260            "type": "string",
20261            "uniqueItems": true
20262          },
20263          {
20264            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20265            "in": "query",
20266            "name": "fieldSelector",
20267            "type": "string",
20268            "uniqueItems": true
20269          },
20270          {
20271            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20272            "in": "query",
20273            "name": "labelSelector",
20274            "type": "string",
20275            "uniqueItems": true
20276          },
20277          {
20278            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20279            "in": "query",
20280            "name": "limit",
20281            "type": "integer",
20282            "uniqueItems": true
20283          },
20284          {
20285            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
20286            "in": "query",
20287            "name": "resourceVersion",
20288            "type": "string",
20289            "uniqueItems": true
20290          },
20291          {
20292            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20293            "in": "query",
20294            "name": "timeoutSeconds",
20295            "type": "integer",
20296            "uniqueItems": true
20297          },
20298          {
20299            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20300            "in": "query",
20301            "name": "watch",
20302            "type": "boolean",
20303            "uniqueItems": true
20304          }
20305        ],
20306        "produces": [
20307          "application/json",
20308          "application/yaml",
20309          "application/vnd.kubernetes.protobuf",
20310          "application/json;stream=watch",
20311          "application/vnd.kubernetes.protobuf;stream=watch"
20312        ],
20313        "responses": {
20314          "200": {
20315            "description": "OK",
20316            "schema": {
20317              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapList"
20318            }
20319          },
20320          "401": {
20321            "description": "Unauthorized"
20322          }
20323        },
20324        "schemes": [
20325          "https"
20326        ],
20327        "tags": [
20328          "core_v1"
20329        ],
20330        "x-kubernetes-action": "list",
20331        "x-kubernetes-group-version-kind": {
20332          "group": "",
20333          "kind": "ConfigMap",
20334          "version": "v1"
20335        }
20336      },
20337      "parameters": [
20338        {
20339          "description": "object name and auth scope, such as for teams and projects",
20340          "in": "path",
20341          "name": "namespace",
20342          "required": true,
20343          "type": "string",
20344          "uniqueItems": true
20345        },
20346        {
20347          "description": "If 'true', then the output is pretty printed.",
20348          "in": "query",
20349          "name": "pretty",
20350          "type": "string",
20351          "uniqueItems": true
20352        }
20353      ],
20354      "post": {
20355        "consumes": [
20356          "*/*"
20357        ],
20358        "description": "create a ConfigMap",
20359        "operationId": "createCoreV1NamespacedConfigMap",
20360        "parameters": [
20361          {
20362            "in": "body",
20363            "name": "body",
20364            "required": true,
20365            "schema": {
20366              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20367            }
20368          },
20369          {
20370            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20371            "in": "query",
20372            "name": "dryRun",
20373            "type": "string",
20374            "uniqueItems": true
20375          },
20376          {
20377            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20378            "in": "query",
20379            "name": "fieldManager",
20380            "type": "string",
20381            "uniqueItems": true
20382          }
20383        ],
20384        "produces": [
20385          "application/json",
20386          "application/yaml",
20387          "application/vnd.kubernetes.protobuf"
20388        ],
20389        "responses": {
20390          "200": {
20391            "description": "OK",
20392            "schema": {
20393              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20394            }
20395          },
20396          "201": {
20397            "description": "Created",
20398            "schema": {
20399              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20400            }
20401          },
20402          "202": {
20403            "description": "Accepted",
20404            "schema": {
20405              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20406            }
20407          },
20408          "401": {
20409            "description": "Unauthorized"
20410          }
20411        },
20412        "schemes": [
20413          "https"
20414        ],
20415        "tags": [
20416          "core_v1"
20417        ],
20418        "x-kubernetes-action": "post",
20419        "x-kubernetes-group-version-kind": {
20420          "group": "",
20421          "kind": "ConfigMap",
20422          "version": "v1"
20423        }
20424      }
20425    },
20426    "/api/v1/namespaces/{namespace}/configmaps/{name}": {
20427      "delete": {
20428        "consumes": [
20429          "*/*"
20430        ],
20431        "description": "delete a ConfigMap",
20432        "operationId": "deleteCoreV1NamespacedConfigMap",
20433        "parameters": [
20434          {
20435            "in": "body",
20436            "name": "body",
20437            "schema": {
20438              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20439            }
20440          },
20441          {
20442            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20443            "in": "query",
20444            "name": "dryRun",
20445            "type": "string",
20446            "uniqueItems": true
20447          },
20448          {
20449            "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.",
20450            "in": "query",
20451            "name": "gracePeriodSeconds",
20452            "type": "integer",
20453            "uniqueItems": true
20454          },
20455          {
20456            "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.",
20457            "in": "query",
20458            "name": "orphanDependents",
20459            "type": "boolean",
20460            "uniqueItems": true
20461          },
20462          {
20463            "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.",
20464            "in": "query",
20465            "name": "propagationPolicy",
20466            "type": "string",
20467            "uniqueItems": true
20468          }
20469        ],
20470        "produces": [
20471          "application/json",
20472          "application/yaml",
20473          "application/vnd.kubernetes.protobuf"
20474        ],
20475        "responses": {
20476          "200": {
20477            "description": "OK",
20478            "schema": {
20479              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20480            }
20481          },
20482          "202": {
20483            "description": "Accepted",
20484            "schema": {
20485              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20486            }
20487          },
20488          "401": {
20489            "description": "Unauthorized"
20490          }
20491        },
20492        "schemes": [
20493          "https"
20494        ],
20495        "tags": [
20496          "core_v1"
20497        ],
20498        "x-kubernetes-action": "delete",
20499        "x-kubernetes-group-version-kind": {
20500          "group": "",
20501          "kind": "ConfigMap",
20502          "version": "v1"
20503        }
20504      },
20505      "get": {
20506        "consumes": [
20507          "*/*"
20508        ],
20509        "description": "read the specified ConfigMap",
20510        "operationId": "readCoreV1NamespacedConfigMap",
20511        "parameters": [
20512          {
20513            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
20514            "in": "query",
20515            "name": "exact",
20516            "type": "boolean",
20517            "uniqueItems": true
20518          },
20519          {
20520            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
20521            "in": "query",
20522            "name": "export",
20523            "type": "boolean",
20524            "uniqueItems": true
20525          }
20526        ],
20527        "produces": [
20528          "application/json",
20529          "application/yaml",
20530          "application/vnd.kubernetes.protobuf"
20531        ],
20532        "responses": {
20533          "200": {
20534            "description": "OK",
20535            "schema": {
20536              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20537            }
20538          },
20539          "401": {
20540            "description": "Unauthorized"
20541          }
20542        },
20543        "schemes": [
20544          "https"
20545        ],
20546        "tags": [
20547          "core_v1"
20548        ],
20549        "x-kubernetes-action": "get",
20550        "x-kubernetes-group-version-kind": {
20551          "group": "",
20552          "kind": "ConfigMap",
20553          "version": "v1"
20554        }
20555      },
20556      "parameters": [
20557        {
20558          "description": "name of the ConfigMap",
20559          "in": "path",
20560          "name": "name",
20561          "required": true,
20562          "type": "string",
20563          "uniqueItems": true
20564        },
20565        {
20566          "description": "object name and auth scope, such as for teams and projects",
20567          "in": "path",
20568          "name": "namespace",
20569          "required": true,
20570          "type": "string",
20571          "uniqueItems": true
20572        },
20573        {
20574          "description": "If 'true', then the output is pretty printed.",
20575          "in": "query",
20576          "name": "pretty",
20577          "type": "string",
20578          "uniqueItems": true
20579        }
20580      ],
20581      "patch": {
20582        "consumes": [
20583          "application/json-patch+json",
20584          "application/merge-patch+json",
20585          "application/strategic-merge-patch+json"
20586        ],
20587        "description": "partially update the specified ConfigMap",
20588        "operationId": "patchCoreV1NamespacedConfigMap",
20589        "parameters": [
20590          {
20591            "in": "body",
20592            "name": "body",
20593            "required": true,
20594            "schema": {
20595              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
20596            }
20597          },
20598          {
20599            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20600            "in": "query",
20601            "name": "dryRun",
20602            "type": "string",
20603            "uniqueItems": true
20604          },
20605          {
20606            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
20607            "in": "query",
20608            "name": "fieldManager",
20609            "type": "string",
20610            "uniqueItems": true
20611          },
20612          {
20613            "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.",
20614            "in": "query",
20615            "name": "force",
20616            "type": "boolean",
20617            "uniqueItems": true
20618          }
20619        ],
20620        "produces": [
20621          "application/json",
20622          "application/yaml",
20623          "application/vnd.kubernetes.protobuf"
20624        ],
20625        "responses": {
20626          "200": {
20627            "description": "OK",
20628            "schema": {
20629              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20630            }
20631          },
20632          "401": {
20633            "description": "Unauthorized"
20634          }
20635        },
20636        "schemes": [
20637          "https"
20638        ],
20639        "tags": [
20640          "core_v1"
20641        ],
20642        "x-kubernetes-action": "patch",
20643        "x-kubernetes-group-version-kind": {
20644          "group": "",
20645          "kind": "ConfigMap",
20646          "version": "v1"
20647        }
20648      },
20649      "put": {
20650        "consumes": [
20651          "*/*"
20652        ],
20653        "description": "replace the specified ConfigMap",
20654        "operationId": "replaceCoreV1NamespacedConfigMap",
20655        "parameters": [
20656          {
20657            "in": "body",
20658            "name": "body",
20659            "required": true,
20660            "schema": {
20661              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20662            }
20663          },
20664          {
20665            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20666            "in": "query",
20667            "name": "dryRun",
20668            "type": "string",
20669            "uniqueItems": true
20670          },
20671          {
20672            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20673            "in": "query",
20674            "name": "fieldManager",
20675            "type": "string",
20676            "uniqueItems": true
20677          }
20678        ],
20679        "produces": [
20680          "application/json",
20681          "application/yaml",
20682          "application/vnd.kubernetes.protobuf"
20683        ],
20684        "responses": {
20685          "200": {
20686            "description": "OK",
20687            "schema": {
20688              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20689            }
20690          },
20691          "201": {
20692            "description": "Created",
20693            "schema": {
20694              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap"
20695            }
20696          },
20697          "401": {
20698            "description": "Unauthorized"
20699          }
20700        },
20701        "schemes": [
20702          "https"
20703        ],
20704        "tags": [
20705          "core_v1"
20706        ],
20707        "x-kubernetes-action": "put",
20708        "x-kubernetes-group-version-kind": {
20709          "group": "",
20710          "kind": "ConfigMap",
20711          "version": "v1"
20712        }
20713      }
20714    },
20715    "/api/v1/namespaces/{namespace}/endpoints": {
20716      "delete": {
20717        "consumes": [
20718          "*/*"
20719        ],
20720        "description": "delete collection of Endpoints",
20721        "operationId": "deleteCoreV1CollectionNamespacedEndpoints",
20722        "parameters": [
20723          {
20724            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
20725            "in": "query",
20726            "name": "allowWatchBookmarks",
20727            "type": "boolean",
20728            "uniqueItems": true
20729          },
20730          {
20731            "in": "body",
20732            "name": "body",
20733            "schema": {
20734              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
20735            }
20736          },
20737          {
20738            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20739            "in": "query",
20740            "name": "continue",
20741            "type": "string",
20742            "uniqueItems": true
20743          },
20744          {
20745            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20746            "in": "query",
20747            "name": "dryRun",
20748            "type": "string",
20749            "uniqueItems": true
20750          },
20751          {
20752            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20753            "in": "query",
20754            "name": "fieldSelector",
20755            "type": "string",
20756            "uniqueItems": true
20757          },
20758          {
20759            "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.",
20760            "in": "query",
20761            "name": "gracePeriodSeconds",
20762            "type": "integer",
20763            "uniqueItems": true
20764          },
20765          {
20766            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20767            "in": "query",
20768            "name": "labelSelector",
20769            "type": "string",
20770            "uniqueItems": true
20771          },
20772          {
20773            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20774            "in": "query",
20775            "name": "limit",
20776            "type": "integer",
20777            "uniqueItems": true
20778          },
20779          {
20780            "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.",
20781            "in": "query",
20782            "name": "orphanDependents",
20783            "type": "boolean",
20784            "uniqueItems": true
20785          },
20786          {
20787            "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.",
20788            "in": "query",
20789            "name": "propagationPolicy",
20790            "type": "string",
20791            "uniqueItems": true
20792          },
20793          {
20794            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
20795            "in": "query",
20796            "name": "resourceVersion",
20797            "type": "string",
20798            "uniqueItems": true
20799          },
20800          {
20801            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20802            "in": "query",
20803            "name": "timeoutSeconds",
20804            "type": "integer",
20805            "uniqueItems": true
20806          },
20807          {
20808            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20809            "in": "query",
20810            "name": "watch",
20811            "type": "boolean",
20812            "uniqueItems": true
20813          }
20814        ],
20815        "produces": [
20816          "application/json",
20817          "application/yaml",
20818          "application/vnd.kubernetes.protobuf"
20819        ],
20820        "responses": {
20821          "200": {
20822            "description": "OK",
20823            "schema": {
20824              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
20825            }
20826          },
20827          "401": {
20828            "description": "Unauthorized"
20829          }
20830        },
20831        "schemes": [
20832          "https"
20833        ],
20834        "tags": [
20835          "core_v1"
20836        ],
20837        "x-kubernetes-action": "deletecollection",
20838        "x-kubernetes-group-version-kind": {
20839          "group": "",
20840          "kind": "Endpoints",
20841          "version": "v1"
20842        }
20843      },
20844      "get": {
20845        "consumes": [
20846          "*/*"
20847        ],
20848        "description": "list or watch objects of kind Endpoints",
20849        "operationId": "listCoreV1NamespacedEndpoints",
20850        "parameters": [
20851          {
20852            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
20853            "in": "query",
20854            "name": "allowWatchBookmarks",
20855            "type": "boolean",
20856            "uniqueItems": true
20857          },
20858          {
20859            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
20860            "in": "query",
20861            "name": "continue",
20862            "type": "string",
20863            "uniqueItems": true
20864          },
20865          {
20866            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
20867            "in": "query",
20868            "name": "fieldSelector",
20869            "type": "string",
20870            "uniqueItems": true
20871          },
20872          {
20873            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
20874            "in": "query",
20875            "name": "labelSelector",
20876            "type": "string",
20877            "uniqueItems": true
20878          },
20879          {
20880            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
20881            "in": "query",
20882            "name": "limit",
20883            "type": "integer",
20884            "uniqueItems": true
20885          },
20886          {
20887            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
20888            "in": "query",
20889            "name": "resourceVersion",
20890            "type": "string",
20891            "uniqueItems": true
20892          },
20893          {
20894            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
20895            "in": "query",
20896            "name": "timeoutSeconds",
20897            "type": "integer",
20898            "uniqueItems": true
20899          },
20900          {
20901            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
20902            "in": "query",
20903            "name": "watch",
20904            "type": "boolean",
20905            "uniqueItems": true
20906          }
20907        ],
20908        "produces": [
20909          "application/json",
20910          "application/yaml",
20911          "application/vnd.kubernetes.protobuf",
20912          "application/json;stream=watch",
20913          "application/vnd.kubernetes.protobuf;stream=watch"
20914        ],
20915        "responses": {
20916          "200": {
20917            "description": "OK",
20918            "schema": {
20919              "$ref": "#/definitions/io.k8s.api.core.v1.EndpointsList"
20920            }
20921          },
20922          "401": {
20923            "description": "Unauthorized"
20924          }
20925        },
20926        "schemes": [
20927          "https"
20928        ],
20929        "tags": [
20930          "core_v1"
20931        ],
20932        "x-kubernetes-action": "list",
20933        "x-kubernetes-group-version-kind": {
20934          "group": "",
20935          "kind": "Endpoints",
20936          "version": "v1"
20937        }
20938      },
20939      "parameters": [
20940        {
20941          "description": "object name and auth scope, such as for teams and projects",
20942          "in": "path",
20943          "name": "namespace",
20944          "required": true,
20945          "type": "string",
20946          "uniqueItems": true
20947        },
20948        {
20949          "description": "If 'true', then the output is pretty printed.",
20950          "in": "query",
20951          "name": "pretty",
20952          "type": "string",
20953          "uniqueItems": true
20954        }
20955      ],
20956      "post": {
20957        "consumes": [
20958          "*/*"
20959        ],
20960        "description": "create Endpoints",
20961        "operationId": "createCoreV1NamespacedEndpoints",
20962        "parameters": [
20963          {
20964            "in": "body",
20965            "name": "body",
20966            "required": true,
20967            "schema": {
20968              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
20969            }
20970          },
20971          {
20972            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
20973            "in": "query",
20974            "name": "dryRun",
20975            "type": "string",
20976            "uniqueItems": true
20977          },
20978          {
20979            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
20980            "in": "query",
20981            "name": "fieldManager",
20982            "type": "string",
20983            "uniqueItems": true
20984          }
20985        ],
20986        "produces": [
20987          "application/json",
20988          "application/yaml",
20989          "application/vnd.kubernetes.protobuf"
20990        ],
20991        "responses": {
20992          "200": {
20993            "description": "OK",
20994            "schema": {
20995              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
20996            }
20997          },
20998          "201": {
20999            "description": "Created",
21000            "schema": {
21001              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21002            }
21003          },
21004          "202": {
21005            "description": "Accepted",
21006            "schema": {
21007              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21008            }
21009          },
21010          "401": {
21011            "description": "Unauthorized"
21012          }
21013        },
21014        "schemes": [
21015          "https"
21016        ],
21017        "tags": [
21018          "core_v1"
21019        ],
21020        "x-kubernetes-action": "post",
21021        "x-kubernetes-group-version-kind": {
21022          "group": "",
21023          "kind": "Endpoints",
21024          "version": "v1"
21025        }
21026      }
21027    },
21028    "/api/v1/namespaces/{namespace}/endpoints/{name}": {
21029      "delete": {
21030        "consumes": [
21031          "*/*"
21032        ],
21033        "description": "delete Endpoints",
21034        "operationId": "deleteCoreV1NamespacedEndpoints",
21035        "parameters": [
21036          {
21037            "in": "body",
21038            "name": "body",
21039            "schema": {
21040              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21041            }
21042          },
21043          {
21044            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21045            "in": "query",
21046            "name": "dryRun",
21047            "type": "string",
21048            "uniqueItems": true
21049          },
21050          {
21051            "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.",
21052            "in": "query",
21053            "name": "gracePeriodSeconds",
21054            "type": "integer",
21055            "uniqueItems": true
21056          },
21057          {
21058            "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.",
21059            "in": "query",
21060            "name": "orphanDependents",
21061            "type": "boolean",
21062            "uniqueItems": true
21063          },
21064          {
21065            "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.",
21066            "in": "query",
21067            "name": "propagationPolicy",
21068            "type": "string",
21069            "uniqueItems": true
21070          }
21071        ],
21072        "produces": [
21073          "application/json",
21074          "application/yaml",
21075          "application/vnd.kubernetes.protobuf"
21076        ],
21077        "responses": {
21078          "200": {
21079            "description": "OK",
21080            "schema": {
21081              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21082            }
21083          },
21084          "202": {
21085            "description": "Accepted",
21086            "schema": {
21087              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21088            }
21089          },
21090          "401": {
21091            "description": "Unauthorized"
21092          }
21093        },
21094        "schemes": [
21095          "https"
21096        ],
21097        "tags": [
21098          "core_v1"
21099        ],
21100        "x-kubernetes-action": "delete",
21101        "x-kubernetes-group-version-kind": {
21102          "group": "",
21103          "kind": "Endpoints",
21104          "version": "v1"
21105        }
21106      },
21107      "get": {
21108        "consumes": [
21109          "*/*"
21110        ],
21111        "description": "read the specified Endpoints",
21112        "operationId": "readCoreV1NamespacedEndpoints",
21113        "parameters": [
21114          {
21115            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
21116            "in": "query",
21117            "name": "exact",
21118            "type": "boolean",
21119            "uniqueItems": true
21120          },
21121          {
21122            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
21123            "in": "query",
21124            "name": "export",
21125            "type": "boolean",
21126            "uniqueItems": true
21127          }
21128        ],
21129        "produces": [
21130          "application/json",
21131          "application/yaml",
21132          "application/vnd.kubernetes.protobuf"
21133        ],
21134        "responses": {
21135          "200": {
21136            "description": "OK",
21137            "schema": {
21138              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21139            }
21140          },
21141          "401": {
21142            "description": "Unauthorized"
21143          }
21144        },
21145        "schemes": [
21146          "https"
21147        ],
21148        "tags": [
21149          "core_v1"
21150        ],
21151        "x-kubernetes-action": "get",
21152        "x-kubernetes-group-version-kind": {
21153          "group": "",
21154          "kind": "Endpoints",
21155          "version": "v1"
21156        }
21157      },
21158      "parameters": [
21159        {
21160          "description": "name of the Endpoints",
21161          "in": "path",
21162          "name": "name",
21163          "required": true,
21164          "type": "string",
21165          "uniqueItems": true
21166        },
21167        {
21168          "description": "object name and auth scope, such as for teams and projects",
21169          "in": "path",
21170          "name": "namespace",
21171          "required": true,
21172          "type": "string",
21173          "uniqueItems": true
21174        },
21175        {
21176          "description": "If 'true', then the output is pretty printed.",
21177          "in": "query",
21178          "name": "pretty",
21179          "type": "string",
21180          "uniqueItems": true
21181        }
21182      ],
21183      "patch": {
21184        "consumes": [
21185          "application/json-patch+json",
21186          "application/merge-patch+json",
21187          "application/strategic-merge-patch+json"
21188        ],
21189        "description": "partially update the specified Endpoints",
21190        "operationId": "patchCoreV1NamespacedEndpoints",
21191        "parameters": [
21192          {
21193            "in": "body",
21194            "name": "body",
21195            "required": true,
21196            "schema": {
21197              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21198            }
21199          },
21200          {
21201            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21202            "in": "query",
21203            "name": "dryRun",
21204            "type": "string",
21205            "uniqueItems": true
21206          },
21207          {
21208            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
21209            "in": "query",
21210            "name": "fieldManager",
21211            "type": "string",
21212            "uniqueItems": true
21213          },
21214          {
21215            "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.",
21216            "in": "query",
21217            "name": "force",
21218            "type": "boolean",
21219            "uniqueItems": true
21220          }
21221        ],
21222        "produces": [
21223          "application/json",
21224          "application/yaml",
21225          "application/vnd.kubernetes.protobuf"
21226        ],
21227        "responses": {
21228          "200": {
21229            "description": "OK",
21230            "schema": {
21231              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21232            }
21233          },
21234          "401": {
21235            "description": "Unauthorized"
21236          }
21237        },
21238        "schemes": [
21239          "https"
21240        ],
21241        "tags": [
21242          "core_v1"
21243        ],
21244        "x-kubernetes-action": "patch",
21245        "x-kubernetes-group-version-kind": {
21246          "group": "",
21247          "kind": "Endpoints",
21248          "version": "v1"
21249        }
21250      },
21251      "put": {
21252        "consumes": [
21253          "*/*"
21254        ],
21255        "description": "replace the specified Endpoints",
21256        "operationId": "replaceCoreV1NamespacedEndpoints",
21257        "parameters": [
21258          {
21259            "in": "body",
21260            "name": "body",
21261            "required": true,
21262            "schema": {
21263              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21264            }
21265          },
21266          {
21267            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21268            "in": "query",
21269            "name": "dryRun",
21270            "type": "string",
21271            "uniqueItems": true
21272          },
21273          {
21274            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21275            "in": "query",
21276            "name": "fieldManager",
21277            "type": "string",
21278            "uniqueItems": true
21279          }
21280        ],
21281        "produces": [
21282          "application/json",
21283          "application/yaml",
21284          "application/vnd.kubernetes.protobuf"
21285        ],
21286        "responses": {
21287          "200": {
21288            "description": "OK",
21289            "schema": {
21290              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21291            }
21292          },
21293          "201": {
21294            "description": "Created",
21295            "schema": {
21296              "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints"
21297            }
21298          },
21299          "401": {
21300            "description": "Unauthorized"
21301          }
21302        },
21303        "schemes": [
21304          "https"
21305        ],
21306        "tags": [
21307          "core_v1"
21308        ],
21309        "x-kubernetes-action": "put",
21310        "x-kubernetes-group-version-kind": {
21311          "group": "",
21312          "kind": "Endpoints",
21313          "version": "v1"
21314        }
21315      }
21316    },
21317    "/api/v1/namespaces/{namespace}/events": {
21318      "delete": {
21319        "consumes": [
21320          "*/*"
21321        ],
21322        "description": "delete collection of Event",
21323        "operationId": "deleteCoreV1CollectionNamespacedEvent",
21324        "parameters": [
21325          {
21326            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
21327            "in": "query",
21328            "name": "allowWatchBookmarks",
21329            "type": "boolean",
21330            "uniqueItems": true
21331          },
21332          {
21333            "in": "body",
21334            "name": "body",
21335            "schema": {
21336              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21337            }
21338          },
21339          {
21340            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21341            "in": "query",
21342            "name": "continue",
21343            "type": "string",
21344            "uniqueItems": true
21345          },
21346          {
21347            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21348            "in": "query",
21349            "name": "dryRun",
21350            "type": "string",
21351            "uniqueItems": true
21352          },
21353          {
21354            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21355            "in": "query",
21356            "name": "fieldSelector",
21357            "type": "string",
21358            "uniqueItems": true
21359          },
21360          {
21361            "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.",
21362            "in": "query",
21363            "name": "gracePeriodSeconds",
21364            "type": "integer",
21365            "uniqueItems": true
21366          },
21367          {
21368            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21369            "in": "query",
21370            "name": "labelSelector",
21371            "type": "string",
21372            "uniqueItems": true
21373          },
21374          {
21375            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21376            "in": "query",
21377            "name": "limit",
21378            "type": "integer",
21379            "uniqueItems": true
21380          },
21381          {
21382            "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.",
21383            "in": "query",
21384            "name": "orphanDependents",
21385            "type": "boolean",
21386            "uniqueItems": true
21387          },
21388          {
21389            "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.",
21390            "in": "query",
21391            "name": "propagationPolicy",
21392            "type": "string",
21393            "uniqueItems": true
21394          },
21395          {
21396            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
21397            "in": "query",
21398            "name": "resourceVersion",
21399            "type": "string",
21400            "uniqueItems": true
21401          },
21402          {
21403            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21404            "in": "query",
21405            "name": "timeoutSeconds",
21406            "type": "integer",
21407            "uniqueItems": true
21408          },
21409          {
21410            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21411            "in": "query",
21412            "name": "watch",
21413            "type": "boolean",
21414            "uniqueItems": true
21415          }
21416        ],
21417        "produces": [
21418          "application/json",
21419          "application/yaml",
21420          "application/vnd.kubernetes.protobuf"
21421        ],
21422        "responses": {
21423          "200": {
21424            "description": "OK",
21425            "schema": {
21426              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21427            }
21428          },
21429          "401": {
21430            "description": "Unauthorized"
21431          }
21432        },
21433        "schemes": [
21434          "https"
21435        ],
21436        "tags": [
21437          "core_v1"
21438        ],
21439        "x-kubernetes-action": "deletecollection",
21440        "x-kubernetes-group-version-kind": {
21441          "group": "",
21442          "kind": "Event",
21443          "version": "v1"
21444        }
21445      },
21446      "get": {
21447        "consumes": [
21448          "*/*"
21449        ],
21450        "description": "list or watch objects of kind Event",
21451        "operationId": "listCoreV1NamespacedEvent",
21452        "parameters": [
21453          {
21454            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
21455            "in": "query",
21456            "name": "allowWatchBookmarks",
21457            "type": "boolean",
21458            "uniqueItems": true
21459          },
21460          {
21461            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21462            "in": "query",
21463            "name": "continue",
21464            "type": "string",
21465            "uniqueItems": true
21466          },
21467          {
21468            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21469            "in": "query",
21470            "name": "fieldSelector",
21471            "type": "string",
21472            "uniqueItems": true
21473          },
21474          {
21475            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21476            "in": "query",
21477            "name": "labelSelector",
21478            "type": "string",
21479            "uniqueItems": true
21480          },
21481          {
21482            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21483            "in": "query",
21484            "name": "limit",
21485            "type": "integer",
21486            "uniqueItems": true
21487          },
21488          {
21489            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
21490            "in": "query",
21491            "name": "resourceVersion",
21492            "type": "string",
21493            "uniqueItems": true
21494          },
21495          {
21496            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
21497            "in": "query",
21498            "name": "timeoutSeconds",
21499            "type": "integer",
21500            "uniqueItems": true
21501          },
21502          {
21503            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
21504            "in": "query",
21505            "name": "watch",
21506            "type": "boolean",
21507            "uniqueItems": true
21508          }
21509        ],
21510        "produces": [
21511          "application/json",
21512          "application/yaml",
21513          "application/vnd.kubernetes.protobuf",
21514          "application/json;stream=watch",
21515          "application/vnd.kubernetes.protobuf;stream=watch"
21516        ],
21517        "responses": {
21518          "200": {
21519            "description": "OK",
21520            "schema": {
21521              "$ref": "#/definitions/io.k8s.api.core.v1.EventList"
21522            }
21523          },
21524          "401": {
21525            "description": "Unauthorized"
21526          }
21527        },
21528        "schemes": [
21529          "https"
21530        ],
21531        "tags": [
21532          "core_v1"
21533        ],
21534        "x-kubernetes-action": "list",
21535        "x-kubernetes-group-version-kind": {
21536          "group": "",
21537          "kind": "Event",
21538          "version": "v1"
21539        }
21540      },
21541      "parameters": [
21542        {
21543          "description": "object name and auth scope, such as for teams and projects",
21544          "in": "path",
21545          "name": "namespace",
21546          "required": true,
21547          "type": "string",
21548          "uniqueItems": true
21549        },
21550        {
21551          "description": "If 'true', then the output is pretty printed.",
21552          "in": "query",
21553          "name": "pretty",
21554          "type": "string",
21555          "uniqueItems": true
21556        }
21557      ],
21558      "post": {
21559        "consumes": [
21560          "*/*"
21561        ],
21562        "description": "create an Event",
21563        "operationId": "createCoreV1NamespacedEvent",
21564        "parameters": [
21565          {
21566            "in": "body",
21567            "name": "body",
21568            "required": true,
21569            "schema": {
21570              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21571            }
21572          },
21573          {
21574            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21575            "in": "query",
21576            "name": "dryRun",
21577            "type": "string",
21578            "uniqueItems": true
21579          },
21580          {
21581            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21582            "in": "query",
21583            "name": "fieldManager",
21584            "type": "string",
21585            "uniqueItems": true
21586          }
21587        ],
21588        "produces": [
21589          "application/json",
21590          "application/yaml",
21591          "application/vnd.kubernetes.protobuf"
21592        ],
21593        "responses": {
21594          "200": {
21595            "description": "OK",
21596            "schema": {
21597              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21598            }
21599          },
21600          "201": {
21601            "description": "Created",
21602            "schema": {
21603              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21604            }
21605          },
21606          "202": {
21607            "description": "Accepted",
21608            "schema": {
21609              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21610            }
21611          },
21612          "401": {
21613            "description": "Unauthorized"
21614          }
21615        },
21616        "schemes": [
21617          "https"
21618        ],
21619        "tags": [
21620          "core_v1"
21621        ],
21622        "x-kubernetes-action": "post",
21623        "x-kubernetes-group-version-kind": {
21624          "group": "",
21625          "kind": "Event",
21626          "version": "v1"
21627        }
21628      }
21629    },
21630    "/api/v1/namespaces/{namespace}/events/{name}": {
21631      "delete": {
21632        "consumes": [
21633          "*/*"
21634        ],
21635        "description": "delete an Event",
21636        "operationId": "deleteCoreV1NamespacedEvent",
21637        "parameters": [
21638          {
21639            "in": "body",
21640            "name": "body",
21641            "schema": {
21642              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21643            }
21644          },
21645          {
21646            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21647            "in": "query",
21648            "name": "dryRun",
21649            "type": "string",
21650            "uniqueItems": true
21651          },
21652          {
21653            "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.",
21654            "in": "query",
21655            "name": "gracePeriodSeconds",
21656            "type": "integer",
21657            "uniqueItems": true
21658          },
21659          {
21660            "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.",
21661            "in": "query",
21662            "name": "orphanDependents",
21663            "type": "boolean",
21664            "uniqueItems": true
21665          },
21666          {
21667            "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.",
21668            "in": "query",
21669            "name": "propagationPolicy",
21670            "type": "string",
21671            "uniqueItems": true
21672          }
21673        ],
21674        "produces": [
21675          "application/json",
21676          "application/yaml",
21677          "application/vnd.kubernetes.protobuf"
21678        ],
21679        "responses": {
21680          "200": {
21681            "description": "OK",
21682            "schema": {
21683              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21684            }
21685          },
21686          "202": {
21687            "description": "Accepted",
21688            "schema": {
21689              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
21690            }
21691          },
21692          "401": {
21693            "description": "Unauthorized"
21694          }
21695        },
21696        "schemes": [
21697          "https"
21698        ],
21699        "tags": [
21700          "core_v1"
21701        ],
21702        "x-kubernetes-action": "delete",
21703        "x-kubernetes-group-version-kind": {
21704          "group": "",
21705          "kind": "Event",
21706          "version": "v1"
21707        }
21708      },
21709      "get": {
21710        "consumes": [
21711          "*/*"
21712        ],
21713        "description": "read the specified Event",
21714        "operationId": "readCoreV1NamespacedEvent",
21715        "parameters": [
21716          {
21717            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
21718            "in": "query",
21719            "name": "exact",
21720            "type": "boolean",
21721            "uniqueItems": true
21722          },
21723          {
21724            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
21725            "in": "query",
21726            "name": "export",
21727            "type": "boolean",
21728            "uniqueItems": true
21729          }
21730        ],
21731        "produces": [
21732          "application/json",
21733          "application/yaml",
21734          "application/vnd.kubernetes.protobuf"
21735        ],
21736        "responses": {
21737          "200": {
21738            "description": "OK",
21739            "schema": {
21740              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21741            }
21742          },
21743          "401": {
21744            "description": "Unauthorized"
21745          }
21746        },
21747        "schemes": [
21748          "https"
21749        ],
21750        "tags": [
21751          "core_v1"
21752        ],
21753        "x-kubernetes-action": "get",
21754        "x-kubernetes-group-version-kind": {
21755          "group": "",
21756          "kind": "Event",
21757          "version": "v1"
21758        }
21759      },
21760      "parameters": [
21761        {
21762          "description": "name of the Event",
21763          "in": "path",
21764          "name": "name",
21765          "required": true,
21766          "type": "string",
21767          "uniqueItems": true
21768        },
21769        {
21770          "description": "object name and auth scope, such as for teams and projects",
21771          "in": "path",
21772          "name": "namespace",
21773          "required": true,
21774          "type": "string",
21775          "uniqueItems": true
21776        },
21777        {
21778          "description": "If 'true', then the output is pretty printed.",
21779          "in": "query",
21780          "name": "pretty",
21781          "type": "string",
21782          "uniqueItems": true
21783        }
21784      ],
21785      "patch": {
21786        "consumes": [
21787          "application/json-patch+json",
21788          "application/merge-patch+json",
21789          "application/strategic-merge-patch+json"
21790        ],
21791        "description": "partially update the specified Event",
21792        "operationId": "patchCoreV1NamespacedEvent",
21793        "parameters": [
21794          {
21795            "in": "body",
21796            "name": "body",
21797            "required": true,
21798            "schema": {
21799              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
21800            }
21801          },
21802          {
21803            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21804            "in": "query",
21805            "name": "dryRun",
21806            "type": "string",
21807            "uniqueItems": true
21808          },
21809          {
21810            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
21811            "in": "query",
21812            "name": "fieldManager",
21813            "type": "string",
21814            "uniqueItems": true
21815          },
21816          {
21817            "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.",
21818            "in": "query",
21819            "name": "force",
21820            "type": "boolean",
21821            "uniqueItems": true
21822          }
21823        ],
21824        "produces": [
21825          "application/json",
21826          "application/yaml",
21827          "application/vnd.kubernetes.protobuf"
21828        ],
21829        "responses": {
21830          "200": {
21831            "description": "OK",
21832            "schema": {
21833              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21834            }
21835          },
21836          "401": {
21837            "description": "Unauthorized"
21838          }
21839        },
21840        "schemes": [
21841          "https"
21842        ],
21843        "tags": [
21844          "core_v1"
21845        ],
21846        "x-kubernetes-action": "patch",
21847        "x-kubernetes-group-version-kind": {
21848          "group": "",
21849          "kind": "Event",
21850          "version": "v1"
21851        }
21852      },
21853      "put": {
21854        "consumes": [
21855          "*/*"
21856        ],
21857        "description": "replace the specified Event",
21858        "operationId": "replaceCoreV1NamespacedEvent",
21859        "parameters": [
21860          {
21861            "in": "body",
21862            "name": "body",
21863            "required": true,
21864            "schema": {
21865              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21866            }
21867          },
21868          {
21869            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21870            "in": "query",
21871            "name": "dryRun",
21872            "type": "string",
21873            "uniqueItems": true
21874          },
21875          {
21876            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
21877            "in": "query",
21878            "name": "fieldManager",
21879            "type": "string",
21880            "uniqueItems": true
21881          }
21882        ],
21883        "produces": [
21884          "application/json",
21885          "application/yaml",
21886          "application/vnd.kubernetes.protobuf"
21887        ],
21888        "responses": {
21889          "200": {
21890            "description": "OK",
21891            "schema": {
21892              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21893            }
21894          },
21895          "201": {
21896            "description": "Created",
21897            "schema": {
21898              "$ref": "#/definitions/io.k8s.api.core.v1.Event"
21899            }
21900          },
21901          "401": {
21902            "description": "Unauthorized"
21903          }
21904        },
21905        "schemes": [
21906          "https"
21907        ],
21908        "tags": [
21909          "core_v1"
21910        ],
21911        "x-kubernetes-action": "put",
21912        "x-kubernetes-group-version-kind": {
21913          "group": "",
21914          "kind": "Event",
21915          "version": "v1"
21916        }
21917      }
21918    },
21919    "/api/v1/namespaces/{namespace}/limitranges": {
21920      "delete": {
21921        "consumes": [
21922          "*/*"
21923        ],
21924        "description": "delete collection of LimitRange",
21925        "operationId": "deleteCoreV1CollectionNamespacedLimitRange",
21926        "parameters": [
21927          {
21928            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
21929            "in": "query",
21930            "name": "allowWatchBookmarks",
21931            "type": "boolean",
21932            "uniqueItems": true
21933          },
21934          {
21935            "in": "body",
21936            "name": "body",
21937            "schema": {
21938              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
21939            }
21940          },
21941          {
21942            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
21943            "in": "query",
21944            "name": "continue",
21945            "type": "string",
21946            "uniqueItems": true
21947          },
21948          {
21949            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
21950            "in": "query",
21951            "name": "dryRun",
21952            "type": "string",
21953            "uniqueItems": true
21954          },
21955          {
21956            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
21957            "in": "query",
21958            "name": "fieldSelector",
21959            "type": "string",
21960            "uniqueItems": true
21961          },
21962          {
21963            "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.",
21964            "in": "query",
21965            "name": "gracePeriodSeconds",
21966            "type": "integer",
21967            "uniqueItems": true
21968          },
21969          {
21970            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
21971            "in": "query",
21972            "name": "labelSelector",
21973            "type": "string",
21974            "uniqueItems": true
21975          },
21976          {
21977            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
21978            "in": "query",
21979            "name": "limit",
21980            "type": "integer",
21981            "uniqueItems": true
21982          },
21983          {
21984            "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.",
21985            "in": "query",
21986            "name": "orphanDependents",
21987            "type": "boolean",
21988            "uniqueItems": true
21989          },
21990          {
21991            "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.",
21992            "in": "query",
21993            "name": "propagationPolicy",
21994            "type": "string",
21995            "uniqueItems": true
21996          },
21997          {
21998            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
21999            "in": "query",
22000            "name": "resourceVersion",
22001            "type": "string",
22002            "uniqueItems": true
22003          },
22004          {
22005            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22006            "in": "query",
22007            "name": "timeoutSeconds",
22008            "type": "integer",
22009            "uniqueItems": true
22010          },
22011          {
22012            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22013            "in": "query",
22014            "name": "watch",
22015            "type": "boolean",
22016            "uniqueItems": true
22017          }
22018        ],
22019        "produces": [
22020          "application/json",
22021          "application/yaml",
22022          "application/vnd.kubernetes.protobuf"
22023        ],
22024        "responses": {
22025          "200": {
22026            "description": "OK",
22027            "schema": {
22028              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22029            }
22030          },
22031          "401": {
22032            "description": "Unauthorized"
22033          }
22034        },
22035        "schemes": [
22036          "https"
22037        ],
22038        "tags": [
22039          "core_v1"
22040        ],
22041        "x-kubernetes-action": "deletecollection",
22042        "x-kubernetes-group-version-kind": {
22043          "group": "",
22044          "kind": "LimitRange",
22045          "version": "v1"
22046        }
22047      },
22048      "get": {
22049        "consumes": [
22050          "*/*"
22051        ],
22052        "description": "list or watch objects of kind LimitRange",
22053        "operationId": "listCoreV1NamespacedLimitRange",
22054        "parameters": [
22055          {
22056            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
22057            "in": "query",
22058            "name": "allowWatchBookmarks",
22059            "type": "boolean",
22060            "uniqueItems": true
22061          },
22062          {
22063            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22064            "in": "query",
22065            "name": "continue",
22066            "type": "string",
22067            "uniqueItems": true
22068          },
22069          {
22070            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22071            "in": "query",
22072            "name": "fieldSelector",
22073            "type": "string",
22074            "uniqueItems": true
22075          },
22076          {
22077            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22078            "in": "query",
22079            "name": "labelSelector",
22080            "type": "string",
22081            "uniqueItems": true
22082          },
22083          {
22084            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22085            "in": "query",
22086            "name": "limit",
22087            "type": "integer",
22088            "uniqueItems": true
22089          },
22090          {
22091            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
22092            "in": "query",
22093            "name": "resourceVersion",
22094            "type": "string",
22095            "uniqueItems": true
22096          },
22097          {
22098            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22099            "in": "query",
22100            "name": "timeoutSeconds",
22101            "type": "integer",
22102            "uniqueItems": true
22103          },
22104          {
22105            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22106            "in": "query",
22107            "name": "watch",
22108            "type": "boolean",
22109            "uniqueItems": true
22110          }
22111        ],
22112        "produces": [
22113          "application/json",
22114          "application/yaml",
22115          "application/vnd.kubernetes.protobuf",
22116          "application/json;stream=watch",
22117          "application/vnd.kubernetes.protobuf;stream=watch"
22118        ],
22119        "responses": {
22120          "200": {
22121            "description": "OK",
22122            "schema": {
22123              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRangeList"
22124            }
22125          },
22126          "401": {
22127            "description": "Unauthorized"
22128          }
22129        },
22130        "schemes": [
22131          "https"
22132        ],
22133        "tags": [
22134          "core_v1"
22135        ],
22136        "x-kubernetes-action": "list",
22137        "x-kubernetes-group-version-kind": {
22138          "group": "",
22139          "kind": "LimitRange",
22140          "version": "v1"
22141        }
22142      },
22143      "parameters": [
22144        {
22145          "description": "object name and auth scope, such as for teams and projects",
22146          "in": "path",
22147          "name": "namespace",
22148          "required": true,
22149          "type": "string",
22150          "uniqueItems": true
22151        },
22152        {
22153          "description": "If 'true', then the output is pretty printed.",
22154          "in": "query",
22155          "name": "pretty",
22156          "type": "string",
22157          "uniqueItems": true
22158        }
22159      ],
22160      "post": {
22161        "consumes": [
22162          "*/*"
22163        ],
22164        "description": "create a LimitRange",
22165        "operationId": "createCoreV1NamespacedLimitRange",
22166        "parameters": [
22167          {
22168            "in": "body",
22169            "name": "body",
22170            "required": true,
22171            "schema": {
22172              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22173            }
22174          },
22175          {
22176            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22177            "in": "query",
22178            "name": "dryRun",
22179            "type": "string",
22180            "uniqueItems": true
22181          },
22182          {
22183            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22184            "in": "query",
22185            "name": "fieldManager",
22186            "type": "string",
22187            "uniqueItems": true
22188          }
22189        ],
22190        "produces": [
22191          "application/json",
22192          "application/yaml",
22193          "application/vnd.kubernetes.protobuf"
22194        ],
22195        "responses": {
22196          "200": {
22197            "description": "OK",
22198            "schema": {
22199              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22200            }
22201          },
22202          "201": {
22203            "description": "Created",
22204            "schema": {
22205              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22206            }
22207          },
22208          "202": {
22209            "description": "Accepted",
22210            "schema": {
22211              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22212            }
22213          },
22214          "401": {
22215            "description": "Unauthorized"
22216          }
22217        },
22218        "schemes": [
22219          "https"
22220        ],
22221        "tags": [
22222          "core_v1"
22223        ],
22224        "x-kubernetes-action": "post",
22225        "x-kubernetes-group-version-kind": {
22226          "group": "",
22227          "kind": "LimitRange",
22228          "version": "v1"
22229        }
22230      }
22231    },
22232    "/api/v1/namespaces/{namespace}/limitranges/{name}": {
22233      "delete": {
22234        "consumes": [
22235          "*/*"
22236        ],
22237        "description": "delete a LimitRange",
22238        "operationId": "deleteCoreV1NamespacedLimitRange",
22239        "parameters": [
22240          {
22241            "in": "body",
22242            "name": "body",
22243            "schema": {
22244              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22245            }
22246          },
22247          {
22248            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22249            "in": "query",
22250            "name": "dryRun",
22251            "type": "string",
22252            "uniqueItems": true
22253          },
22254          {
22255            "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.",
22256            "in": "query",
22257            "name": "gracePeriodSeconds",
22258            "type": "integer",
22259            "uniqueItems": true
22260          },
22261          {
22262            "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.",
22263            "in": "query",
22264            "name": "orphanDependents",
22265            "type": "boolean",
22266            "uniqueItems": true
22267          },
22268          {
22269            "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.",
22270            "in": "query",
22271            "name": "propagationPolicy",
22272            "type": "string",
22273            "uniqueItems": true
22274          }
22275        ],
22276        "produces": [
22277          "application/json",
22278          "application/yaml",
22279          "application/vnd.kubernetes.protobuf"
22280        ],
22281        "responses": {
22282          "200": {
22283            "description": "OK",
22284            "schema": {
22285              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22286            }
22287          },
22288          "202": {
22289            "description": "Accepted",
22290            "schema": {
22291              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22292            }
22293          },
22294          "401": {
22295            "description": "Unauthorized"
22296          }
22297        },
22298        "schemes": [
22299          "https"
22300        ],
22301        "tags": [
22302          "core_v1"
22303        ],
22304        "x-kubernetes-action": "delete",
22305        "x-kubernetes-group-version-kind": {
22306          "group": "",
22307          "kind": "LimitRange",
22308          "version": "v1"
22309        }
22310      },
22311      "get": {
22312        "consumes": [
22313          "*/*"
22314        ],
22315        "description": "read the specified LimitRange",
22316        "operationId": "readCoreV1NamespacedLimitRange",
22317        "parameters": [
22318          {
22319            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
22320            "in": "query",
22321            "name": "exact",
22322            "type": "boolean",
22323            "uniqueItems": true
22324          },
22325          {
22326            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
22327            "in": "query",
22328            "name": "export",
22329            "type": "boolean",
22330            "uniqueItems": true
22331          }
22332        ],
22333        "produces": [
22334          "application/json",
22335          "application/yaml",
22336          "application/vnd.kubernetes.protobuf"
22337        ],
22338        "responses": {
22339          "200": {
22340            "description": "OK",
22341            "schema": {
22342              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22343            }
22344          },
22345          "401": {
22346            "description": "Unauthorized"
22347          }
22348        },
22349        "schemes": [
22350          "https"
22351        ],
22352        "tags": [
22353          "core_v1"
22354        ],
22355        "x-kubernetes-action": "get",
22356        "x-kubernetes-group-version-kind": {
22357          "group": "",
22358          "kind": "LimitRange",
22359          "version": "v1"
22360        }
22361      },
22362      "parameters": [
22363        {
22364          "description": "name of the LimitRange",
22365          "in": "path",
22366          "name": "name",
22367          "required": true,
22368          "type": "string",
22369          "uniqueItems": true
22370        },
22371        {
22372          "description": "object name and auth scope, such as for teams and projects",
22373          "in": "path",
22374          "name": "namespace",
22375          "required": true,
22376          "type": "string",
22377          "uniqueItems": true
22378        },
22379        {
22380          "description": "If 'true', then the output is pretty printed.",
22381          "in": "query",
22382          "name": "pretty",
22383          "type": "string",
22384          "uniqueItems": true
22385        }
22386      ],
22387      "patch": {
22388        "consumes": [
22389          "application/json-patch+json",
22390          "application/merge-patch+json",
22391          "application/strategic-merge-patch+json"
22392        ],
22393        "description": "partially update the specified LimitRange",
22394        "operationId": "patchCoreV1NamespacedLimitRange",
22395        "parameters": [
22396          {
22397            "in": "body",
22398            "name": "body",
22399            "required": true,
22400            "schema": {
22401              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
22402            }
22403          },
22404          {
22405            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22406            "in": "query",
22407            "name": "dryRun",
22408            "type": "string",
22409            "uniqueItems": true
22410          },
22411          {
22412            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
22413            "in": "query",
22414            "name": "fieldManager",
22415            "type": "string",
22416            "uniqueItems": true
22417          },
22418          {
22419            "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.",
22420            "in": "query",
22421            "name": "force",
22422            "type": "boolean",
22423            "uniqueItems": true
22424          }
22425        ],
22426        "produces": [
22427          "application/json",
22428          "application/yaml",
22429          "application/vnd.kubernetes.protobuf"
22430        ],
22431        "responses": {
22432          "200": {
22433            "description": "OK",
22434            "schema": {
22435              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22436            }
22437          },
22438          "401": {
22439            "description": "Unauthorized"
22440          }
22441        },
22442        "schemes": [
22443          "https"
22444        ],
22445        "tags": [
22446          "core_v1"
22447        ],
22448        "x-kubernetes-action": "patch",
22449        "x-kubernetes-group-version-kind": {
22450          "group": "",
22451          "kind": "LimitRange",
22452          "version": "v1"
22453        }
22454      },
22455      "put": {
22456        "consumes": [
22457          "*/*"
22458        ],
22459        "description": "replace the specified LimitRange",
22460        "operationId": "replaceCoreV1NamespacedLimitRange",
22461        "parameters": [
22462          {
22463            "in": "body",
22464            "name": "body",
22465            "required": true,
22466            "schema": {
22467              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22468            }
22469          },
22470          {
22471            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22472            "in": "query",
22473            "name": "dryRun",
22474            "type": "string",
22475            "uniqueItems": true
22476          },
22477          {
22478            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22479            "in": "query",
22480            "name": "fieldManager",
22481            "type": "string",
22482            "uniqueItems": true
22483          }
22484        ],
22485        "produces": [
22486          "application/json",
22487          "application/yaml",
22488          "application/vnd.kubernetes.protobuf"
22489        ],
22490        "responses": {
22491          "200": {
22492            "description": "OK",
22493            "schema": {
22494              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22495            }
22496          },
22497          "201": {
22498            "description": "Created",
22499            "schema": {
22500              "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange"
22501            }
22502          },
22503          "401": {
22504            "description": "Unauthorized"
22505          }
22506        },
22507        "schemes": [
22508          "https"
22509        ],
22510        "tags": [
22511          "core_v1"
22512        ],
22513        "x-kubernetes-action": "put",
22514        "x-kubernetes-group-version-kind": {
22515          "group": "",
22516          "kind": "LimitRange",
22517          "version": "v1"
22518        }
22519      }
22520    },
22521    "/api/v1/namespaces/{namespace}/persistentvolumeclaims": {
22522      "delete": {
22523        "consumes": [
22524          "*/*"
22525        ],
22526        "description": "delete collection of PersistentVolumeClaim",
22527        "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
22528        "parameters": [
22529          {
22530            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
22531            "in": "query",
22532            "name": "allowWatchBookmarks",
22533            "type": "boolean",
22534            "uniqueItems": true
22535          },
22536          {
22537            "in": "body",
22538            "name": "body",
22539            "schema": {
22540              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22541            }
22542          },
22543          {
22544            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22545            "in": "query",
22546            "name": "continue",
22547            "type": "string",
22548            "uniqueItems": true
22549          },
22550          {
22551            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22552            "in": "query",
22553            "name": "dryRun",
22554            "type": "string",
22555            "uniqueItems": true
22556          },
22557          {
22558            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22559            "in": "query",
22560            "name": "fieldSelector",
22561            "type": "string",
22562            "uniqueItems": true
22563          },
22564          {
22565            "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.",
22566            "in": "query",
22567            "name": "gracePeriodSeconds",
22568            "type": "integer",
22569            "uniqueItems": true
22570          },
22571          {
22572            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22573            "in": "query",
22574            "name": "labelSelector",
22575            "type": "string",
22576            "uniqueItems": true
22577          },
22578          {
22579            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22580            "in": "query",
22581            "name": "limit",
22582            "type": "integer",
22583            "uniqueItems": true
22584          },
22585          {
22586            "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.",
22587            "in": "query",
22588            "name": "orphanDependents",
22589            "type": "boolean",
22590            "uniqueItems": true
22591          },
22592          {
22593            "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.",
22594            "in": "query",
22595            "name": "propagationPolicy",
22596            "type": "string",
22597            "uniqueItems": true
22598          },
22599          {
22600            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
22601            "in": "query",
22602            "name": "resourceVersion",
22603            "type": "string",
22604            "uniqueItems": true
22605          },
22606          {
22607            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22608            "in": "query",
22609            "name": "timeoutSeconds",
22610            "type": "integer",
22611            "uniqueItems": true
22612          },
22613          {
22614            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22615            "in": "query",
22616            "name": "watch",
22617            "type": "boolean",
22618            "uniqueItems": true
22619          }
22620        ],
22621        "produces": [
22622          "application/json",
22623          "application/yaml",
22624          "application/vnd.kubernetes.protobuf"
22625        ],
22626        "responses": {
22627          "200": {
22628            "description": "OK",
22629            "schema": {
22630              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22631            }
22632          },
22633          "401": {
22634            "description": "Unauthorized"
22635          }
22636        },
22637        "schemes": [
22638          "https"
22639        ],
22640        "tags": [
22641          "core_v1"
22642        ],
22643        "x-kubernetes-action": "deletecollection",
22644        "x-kubernetes-group-version-kind": {
22645          "group": "",
22646          "kind": "PersistentVolumeClaim",
22647          "version": "v1"
22648        }
22649      },
22650      "get": {
22651        "consumes": [
22652          "*/*"
22653        ],
22654        "description": "list or watch objects of kind PersistentVolumeClaim",
22655        "operationId": "listCoreV1NamespacedPersistentVolumeClaim",
22656        "parameters": [
22657          {
22658            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
22659            "in": "query",
22660            "name": "allowWatchBookmarks",
22661            "type": "boolean",
22662            "uniqueItems": true
22663          },
22664          {
22665            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
22666            "in": "query",
22667            "name": "continue",
22668            "type": "string",
22669            "uniqueItems": true
22670          },
22671          {
22672            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
22673            "in": "query",
22674            "name": "fieldSelector",
22675            "type": "string",
22676            "uniqueItems": true
22677          },
22678          {
22679            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
22680            "in": "query",
22681            "name": "labelSelector",
22682            "type": "string",
22683            "uniqueItems": true
22684          },
22685          {
22686            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
22687            "in": "query",
22688            "name": "limit",
22689            "type": "integer",
22690            "uniqueItems": true
22691          },
22692          {
22693            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
22694            "in": "query",
22695            "name": "resourceVersion",
22696            "type": "string",
22697            "uniqueItems": true
22698          },
22699          {
22700            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
22701            "in": "query",
22702            "name": "timeoutSeconds",
22703            "type": "integer",
22704            "uniqueItems": true
22705          },
22706          {
22707            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
22708            "in": "query",
22709            "name": "watch",
22710            "type": "boolean",
22711            "uniqueItems": true
22712          }
22713        ],
22714        "produces": [
22715          "application/json",
22716          "application/yaml",
22717          "application/vnd.kubernetes.protobuf",
22718          "application/json;stream=watch",
22719          "application/vnd.kubernetes.protobuf;stream=watch"
22720        ],
22721        "responses": {
22722          "200": {
22723            "description": "OK",
22724            "schema": {
22725              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
22726            }
22727          },
22728          "401": {
22729            "description": "Unauthorized"
22730          }
22731        },
22732        "schemes": [
22733          "https"
22734        ],
22735        "tags": [
22736          "core_v1"
22737        ],
22738        "x-kubernetes-action": "list",
22739        "x-kubernetes-group-version-kind": {
22740          "group": "",
22741          "kind": "PersistentVolumeClaim",
22742          "version": "v1"
22743        }
22744      },
22745      "parameters": [
22746        {
22747          "description": "object name and auth scope, such as for teams and projects",
22748          "in": "path",
22749          "name": "namespace",
22750          "required": true,
22751          "type": "string",
22752          "uniqueItems": true
22753        },
22754        {
22755          "description": "If 'true', then the output is pretty printed.",
22756          "in": "query",
22757          "name": "pretty",
22758          "type": "string",
22759          "uniqueItems": true
22760        }
22761      ],
22762      "post": {
22763        "consumes": [
22764          "*/*"
22765        ],
22766        "description": "create a PersistentVolumeClaim",
22767        "operationId": "createCoreV1NamespacedPersistentVolumeClaim",
22768        "parameters": [
22769          {
22770            "in": "body",
22771            "name": "body",
22772            "required": true,
22773            "schema": {
22774              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
22775            }
22776          },
22777          {
22778            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22779            "in": "query",
22780            "name": "dryRun",
22781            "type": "string",
22782            "uniqueItems": true
22783          },
22784          {
22785            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
22786            "in": "query",
22787            "name": "fieldManager",
22788            "type": "string",
22789            "uniqueItems": true
22790          }
22791        ],
22792        "produces": [
22793          "application/json",
22794          "application/yaml",
22795          "application/vnd.kubernetes.protobuf"
22796        ],
22797        "responses": {
22798          "200": {
22799            "description": "OK",
22800            "schema": {
22801              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
22802            }
22803          },
22804          "201": {
22805            "description": "Created",
22806            "schema": {
22807              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
22808            }
22809          },
22810          "202": {
22811            "description": "Accepted",
22812            "schema": {
22813              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
22814            }
22815          },
22816          "401": {
22817            "description": "Unauthorized"
22818          }
22819        },
22820        "schemes": [
22821          "https"
22822        ],
22823        "tags": [
22824          "core_v1"
22825        ],
22826        "x-kubernetes-action": "post",
22827        "x-kubernetes-group-version-kind": {
22828          "group": "",
22829          "kind": "PersistentVolumeClaim",
22830          "version": "v1"
22831        }
22832      }
22833    },
22834    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": {
22835      "delete": {
22836        "consumes": [
22837          "*/*"
22838        ],
22839        "description": "delete a PersistentVolumeClaim",
22840        "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim",
22841        "parameters": [
22842          {
22843            "in": "body",
22844            "name": "body",
22845            "schema": {
22846              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
22847            }
22848          },
22849          {
22850            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
22851            "in": "query",
22852            "name": "dryRun",
22853            "type": "string",
22854            "uniqueItems": true
22855          },
22856          {
22857            "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.",
22858            "in": "query",
22859            "name": "gracePeriodSeconds",
22860            "type": "integer",
22861            "uniqueItems": true
22862          },
22863          {
22864            "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.",
22865            "in": "query",
22866            "name": "orphanDependents",
22867            "type": "boolean",
22868            "uniqueItems": true
22869          },
22870          {
22871            "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.",
22872            "in": "query",
22873            "name": "propagationPolicy",
22874            "type": "string",
22875            "uniqueItems": true
22876          }
22877        ],
22878        "produces": [
22879          "application/json",
22880          "application/yaml",
22881          "application/vnd.kubernetes.protobuf"
22882        ],
22883        "responses": {
22884          "200": {
22885            "description": "OK",
22886            "schema": {
22887              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22888            }
22889          },
22890          "202": {
22891            "description": "Accepted",
22892            "schema": {
22893              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
22894            }
22895          },
22896          "401": {
22897            "description": "Unauthorized"
22898          }
22899        },
22900        "schemes": [
22901          "https"
22902        ],
22903        "tags": [
22904          "core_v1"
22905        ],
22906        "x-kubernetes-action": "delete",
22907        "x-kubernetes-group-version-kind": {
22908          "group": "",
22909          "kind": "PersistentVolumeClaim",
22910          "version": "v1"
22911        }
22912      },
22913      "get": {
22914        "consumes": [
22915          "*/*"
22916        ],
22917        "description": "read the specified PersistentVolumeClaim",
22918        "operationId": "readCoreV1NamespacedPersistentVolumeClaim",
22919        "parameters": [
22920          {
22921            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
22922            "in": "query",
22923            "name": "exact",
22924            "type": "boolean",
22925            "uniqueItems": true
22926          },
22927          {
22928            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
22929            "in": "query",
22930            "name": "export",
22931            "type": "boolean",
22932            "uniqueItems": true
22933          }
22934        ],
22935        "produces": [
22936          "application/json",
22937          "application/yaml",
22938          "application/vnd.kubernetes.protobuf"
22939        ],
22940        "responses": {
22941          "200": {
22942            "description": "OK",
22943            "schema": {
22944              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
22945            }
22946          },
22947          "401": {
22948            "description": "Unauthorized"
22949          }
22950        },
22951        "schemes": [
22952          "https"
22953        ],
22954        "tags": [
22955          "core_v1"
22956        ],
22957        "x-kubernetes-action": "get",
22958        "x-kubernetes-group-version-kind": {
22959          "group": "",
22960          "kind": "PersistentVolumeClaim",
22961          "version": "v1"
22962        }
22963      },
22964      "parameters": [
22965        {
22966          "description": "name of the PersistentVolumeClaim",
22967          "in": "path",
22968          "name": "name",
22969          "required": true,
22970          "type": "string",
22971          "uniqueItems": true
22972        },
22973        {
22974          "description": "object name and auth scope, such as for teams and projects",
22975          "in": "path",
22976          "name": "namespace",
22977          "required": true,
22978          "type": "string",
22979          "uniqueItems": true
22980        },
22981        {
22982          "description": "If 'true', then the output is pretty printed.",
22983          "in": "query",
22984          "name": "pretty",
22985          "type": "string",
22986          "uniqueItems": true
22987        }
22988      ],
22989      "patch": {
22990        "consumes": [
22991          "application/json-patch+json",
22992          "application/merge-patch+json",
22993          "application/strategic-merge-patch+json"
22994        ],
22995        "description": "partially update the specified PersistentVolumeClaim",
22996        "operationId": "patchCoreV1NamespacedPersistentVolumeClaim",
22997        "parameters": [
22998          {
22999            "in": "body",
23000            "name": "body",
23001            "required": true,
23002            "schema": {
23003              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23004            }
23005          },
23006          {
23007            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23008            "in": "query",
23009            "name": "dryRun",
23010            "type": "string",
23011            "uniqueItems": true
23012          },
23013          {
23014            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
23015            "in": "query",
23016            "name": "fieldManager",
23017            "type": "string",
23018            "uniqueItems": true
23019          },
23020          {
23021            "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.",
23022            "in": "query",
23023            "name": "force",
23024            "type": "boolean",
23025            "uniqueItems": true
23026          }
23027        ],
23028        "produces": [
23029          "application/json",
23030          "application/yaml",
23031          "application/vnd.kubernetes.protobuf"
23032        ],
23033        "responses": {
23034          "200": {
23035            "description": "OK",
23036            "schema": {
23037              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23038            }
23039          },
23040          "401": {
23041            "description": "Unauthorized"
23042          }
23043        },
23044        "schemes": [
23045          "https"
23046        ],
23047        "tags": [
23048          "core_v1"
23049        ],
23050        "x-kubernetes-action": "patch",
23051        "x-kubernetes-group-version-kind": {
23052          "group": "",
23053          "kind": "PersistentVolumeClaim",
23054          "version": "v1"
23055        }
23056      },
23057      "put": {
23058        "consumes": [
23059          "*/*"
23060        ],
23061        "description": "replace the specified PersistentVolumeClaim",
23062        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim",
23063        "parameters": [
23064          {
23065            "in": "body",
23066            "name": "body",
23067            "required": true,
23068            "schema": {
23069              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23070            }
23071          },
23072          {
23073            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23074            "in": "query",
23075            "name": "dryRun",
23076            "type": "string",
23077            "uniqueItems": true
23078          },
23079          {
23080            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23081            "in": "query",
23082            "name": "fieldManager",
23083            "type": "string",
23084            "uniqueItems": true
23085          }
23086        ],
23087        "produces": [
23088          "application/json",
23089          "application/yaml",
23090          "application/vnd.kubernetes.protobuf"
23091        ],
23092        "responses": {
23093          "200": {
23094            "description": "OK",
23095            "schema": {
23096              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23097            }
23098          },
23099          "201": {
23100            "description": "Created",
23101            "schema": {
23102              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23103            }
23104          },
23105          "401": {
23106            "description": "Unauthorized"
23107          }
23108        },
23109        "schemes": [
23110          "https"
23111        ],
23112        "tags": [
23113          "core_v1"
23114        ],
23115        "x-kubernetes-action": "put",
23116        "x-kubernetes-group-version-kind": {
23117          "group": "",
23118          "kind": "PersistentVolumeClaim",
23119          "version": "v1"
23120        }
23121      }
23122    },
23123    "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": {
23124      "get": {
23125        "consumes": [
23126          "*/*"
23127        ],
23128        "description": "read status of the specified PersistentVolumeClaim",
23129        "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus",
23130        "produces": [
23131          "application/json",
23132          "application/yaml",
23133          "application/vnd.kubernetes.protobuf"
23134        ],
23135        "responses": {
23136          "200": {
23137            "description": "OK",
23138            "schema": {
23139              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23140            }
23141          },
23142          "401": {
23143            "description": "Unauthorized"
23144          }
23145        },
23146        "schemes": [
23147          "https"
23148        ],
23149        "tags": [
23150          "core_v1"
23151        ],
23152        "x-kubernetes-action": "get",
23153        "x-kubernetes-group-version-kind": {
23154          "group": "",
23155          "kind": "PersistentVolumeClaim",
23156          "version": "v1"
23157        }
23158      },
23159      "parameters": [
23160        {
23161          "description": "name of the PersistentVolumeClaim",
23162          "in": "path",
23163          "name": "name",
23164          "required": true,
23165          "type": "string",
23166          "uniqueItems": true
23167        },
23168        {
23169          "description": "object name and auth scope, such as for teams and projects",
23170          "in": "path",
23171          "name": "namespace",
23172          "required": true,
23173          "type": "string",
23174          "uniqueItems": true
23175        },
23176        {
23177          "description": "If 'true', then the output is pretty printed.",
23178          "in": "query",
23179          "name": "pretty",
23180          "type": "string",
23181          "uniqueItems": true
23182        }
23183      ],
23184      "patch": {
23185        "consumes": [
23186          "application/json-patch+json",
23187          "application/merge-patch+json",
23188          "application/strategic-merge-patch+json"
23189        ],
23190        "description": "partially update status of the specified PersistentVolumeClaim",
23191        "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
23192        "parameters": [
23193          {
23194            "in": "body",
23195            "name": "body",
23196            "required": true,
23197            "schema": {
23198              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23199            }
23200          },
23201          {
23202            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23203            "in": "query",
23204            "name": "dryRun",
23205            "type": "string",
23206            "uniqueItems": true
23207          },
23208          {
23209            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
23210            "in": "query",
23211            "name": "fieldManager",
23212            "type": "string",
23213            "uniqueItems": true
23214          },
23215          {
23216            "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.",
23217            "in": "query",
23218            "name": "force",
23219            "type": "boolean",
23220            "uniqueItems": true
23221          }
23222        ],
23223        "produces": [
23224          "application/json",
23225          "application/yaml",
23226          "application/vnd.kubernetes.protobuf"
23227        ],
23228        "responses": {
23229          "200": {
23230            "description": "OK",
23231            "schema": {
23232              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23233            }
23234          },
23235          "401": {
23236            "description": "Unauthorized"
23237          }
23238        },
23239        "schemes": [
23240          "https"
23241        ],
23242        "tags": [
23243          "core_v1"
23244        ],
23245        "x-kubernetes-action": "patch",
23246        "x-kubernetes-group-version-kind": {
23247          "group": "",
23248          "kind": "PersistentVolumeClaim",
23249          "version": "v1"
23250        }
23251      },
23252      "put": {
23253        "consumes": [
23254          "*/*"
23255        ],
23256        "description": "replace status of the specified PersistentVolumeClaim",
23257        "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
23258        "parameters": [
23259          {
23260            "in": "body",
23261            "name": "body",
23262            "required": true,
23263            "schema": {
23264              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23265            }
23266          },
23267          {
23268            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23269            "in": "query",
23270            "name": "dryRun",
23271            "type": "string",
23272            "uniqueItems": true
23273          },
23274          {
23275            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23276            "in": "query",
23277            "name": "fieldManager",
23278            "type": "string",
23279            "uniqueItems": true
23280          }
23281        ],
23282        "produces": [
23283          "application/json",
23284          "application/yaml",
23285          "application/vnd.kubernetes.protobuf"
23286        ],
23287        "responses": {
23288          "200": {
23289            "description": "OK",
23290            "schema": {
23291              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23292            }
23293          },
23294          "201": {
23295            "description": "Created",
23296            "schema": {
23297              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim"
23298            }
23299          },
23300          "401": {
23301            "description": "Unauthorized"
23302          }
23303        },
23304        "schemes": [
23305          "https"
23306        ],
23307        "tags": [
23308          "core_v1"
23309        ],
23310        "x-kubernetes-action": "put",
23311        "x-kubernetes-group-version-kind": {
23312          "group": "",
23313          "kind": "PersistentVolumeClaim",
23314          "version": "v1"
23315        }
23316      }
23317    },
23318    "/api/v1/namespaces/{namespace}/pods": {
23319      "delete": {
23320        "consumes": [
23321          "*/*"
23322        ],
23323        "description": "delete collection of Pod",
23324        "operationId": "deleteCoreV1CollectionNamespacedPod",
23325        "parameters": [
23326          {
23327            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
23328            "in": "query",
23329            "name": "allowWatchBookmarks",
23330            "type": "boolean",
23331            "uniqueItems": true
23332          },
23333          {
23334            "in": "body",
23335            "name": "body",
23336            "schema": {
23337              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23338            }
23339          },
23340          {
23341            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23342            "in": "query",
23343            "name": "continue",
23344            "type": "string",
23345            "uniqueItems": true
23346          },
23347          {
23348            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23349            "in": "query",
23350            "name": "dryRun",
23351            "type": "string",
23352            "uniqueItems": true
23353          },
23354          {
23355            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23356            "in": "query",
23357            "name": "fieldSelector",
23358            "type": "string",
23359            "uniqueItems": true
23360          },
23361          {
23362            "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.",
23363            "in": "query",
23364            "name": "gracePeriodSeconds",
23365            "type": "integer",
23366            "uniqueItems": true
23367          },
23368          {
23369            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23370            "in": "query",
23371            "name": "labelSelector",
23372            "type": "string",
23373            "uniqueItems": true
23374          },
23375          {
23376            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23377            "in": "query",
23378            "name": "limit",
23379            "type": "integer",
23380            "uniqueItems": true
23381          },
23382          {
23383            "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.",
23384            "in": "query",
23385            "name": "orphanDependents",
23386            "type": "boolean",
23387            "uniqueItems": true
23388          },
23389          {
23390            "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.",
23391            "in": "query",
23392            "name": "propagationPolicy",
23393            "type": "string",
23394            "uniqueItems": true
23395          },
23396          {
23397            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
23398            "in": "query",
23399            "name": "resourceVersion",
23400            "type": "string",
23401            "uniqueItems": true
23402          },
23403          {
23404            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23405            "in": "query",
23406            "name": "timeoutSeconds",
23407            "type": "integer",
23408            "uniqueItems": true
23409          },
23410          {
23411            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23412            "in": "query",
23413            "name": "watch",
23414            "type": "boolean",
23415            "uniqueItems": true
23416          }
23417        ],
23418        "produces": [
23419          "application/json",
23420          "application/yaml",
23421          "application/vnd.kubernetes.protobuf"
23422        ],
23423        "responses": {
23424          "200": {
23425            "description": "OK",
23426            "schema": {
23427              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23428            }
23429          },
23430          "401": {
23431            "description": "Unauthorized"
23432          }
23433        },
23434        "schemes": [
23435          "https"
23436        ],
23437        "tags": [
23438          "core_v1"
23439        ],
23440        "x-kubernetes-action": "deletecollection",
23441        "x-kubernetes-group-version-kind": {
23442          "group": "",
23443          "kind": "Pod",
23444          "version": "v1"
23445        }
23446      },
23447      "get": {
23448        "consumes": [
23449          "*/*"
23450        ],
23451        "description": "list or watch objects of kind Pod",
23452        "operationId": "listCoreV1NamespacedPod",
23453        "parameters": [
23454          {
23455            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
23456            "in": "query",
23457            "name": "allowWatchBookmarks",
23458            "type": "boolean",
23459            "uniqueItems": true
23460          },
23461          {
23462            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
23463            "in": "query",
23464            "name": "continue",
23465            "type": "string",
23466            "uniqueItems": true
23467          },
23468          {
23469            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
23470            "in": "query",
23471            "name": "fieldSelector",
23472            "type": "string",
23473            "uniqueItems": true
23474          },
23475          {
23476            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
23477            "in": "query",
23478            "name": "labelSelector",
23479            "type": "string",
23480            "uniqueItems": true
23481          },
23482          {
23483            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
23484            "in": "query",
23485            "name": "limit",
23486            "type": "integer",
23487            "uniqueItems": true
23488          },
23489          {
23490            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
23491            "in": "query",
23492            "name": "resourceVersion",
23493            "type": "string",
23494            "uniqueItems": true
23495          },
23496          {
23497            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
23498            "in": "query",
23499            "name": "timeoutSeconds",
23500            "type": "integer",
23501            "uniqueItems": true
23502          },
23503          {
23504            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
23505            "in": "query",
23506            "name": "watch",
23507            "type": "boolean",
23508            "uniqueItems": true
23509          }
23510        ],
23511        "produces": [
23512          "application/json",
23513          "application/yaml",
23514          "application/vnd.kubernetes.protobuf",
23515          "application/json;stream=watch",
23516          "application/vnd.kubernetes.protobuf;stream=watch"
23517        ],
23518        "responses": {
23519          "200": {
23520            "description": "OK",
23521            "schema": {
23522              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
23523            }
23524          },
23525          "401": {
23526            "description": "Unauthorized"
23527          }
23528        },
23529        "schemes": [
23530          "https"
23531        ],
23532        "tags": [
23533          "core_v1"
23534        ],
23535        "x-kubernetes-action": "list",
23536        "x-kubernetes-group-version-kind": {
23537          "group": "",
23538          "kind": "Pod",
23539          "version": "v1"
23540        }
23541      },
23542      "parameters": [
23543        {
23544          "description": "object name and auth scope, such as for teams and projects",
23545          "in": "path",
23546          "name": "namespace",
23547          "required": true,
23548          "type": "string",
23549          "uniqueItems": true
23550        },
23551        {
23552          "description": "If 'true', then the output is pretty printed.",
23553          "in": "query",
23554          "name": "pretty",
23555          "type": "string",
23556          "uniqueItems": true
23557        }
23558      ],
23559      "post": {
23560        "consumes": [
23561          "*/*"
23562        ],
23563        "description": "create a Pod",
23564        "operationId": "createCoreV1NamespacedPod",
23565        "parameters": [
23566          {
23567            "in": "body",
23568            "name": "body",
23569            "required": true,
23570            "schema": {
23571              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23572            }
23573          },
23574          {
23575            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23576            "in": "query",
23577            "name": "dryRun",
23578            "type": "string",
23579            "uniqueItems": true
23580          },
23581          {
23582            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23583            "in": "query",
23584            "name": "fieldManager",
23585            "type": "string",
23586            "uniqueItems": true
23587          }
23588        ],
23589        "produces": [
23590          "application/json",
23591          "application/yaml",
23592          "application/vnd.kubernetes.protobuf"
23593        ],
23594        "responses": {
23595          "200": {
23596            "description": "OK",
23597            "schema": {
23598              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23599            }
23600          },
23601          "201": {
23602            "description": "Created",
23603            "schema": {
23604              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23605            }
23606          },
23607          "202": {
23608            "description": "Accepted",
23609            "schema": {
23610              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23611            }
23612          },
23613          "401": {
23614            "description": "Unauthorized"
23615          }
23616        },
23617        "schemes": [
23618          "https"
23619        ],
23620        "tags": [
23621          "core_v1"
23622        ],
23623        "x-kubernetes-action": "post",
23624        "x-kubernetes-group-version-kind": {
23625          "group": "",
23626          "kind": "Pod",
23627          "version": "v1"
23628        }
23629      }
23630    },
23631    "/api/v1/namespaces/{namespace}/pods/{name}": {
23632      "delete": {
23633        "consumes": [
23634          "*/*"
23635        ],
23636        "description": "delete a Pod",
23637        "operationId": "deleteCoreV1NamespacedPod",
23638        "parameters": [
23639          {
23640            "in": "body",
23641            "name": "body",
23642            "schema": {
23643              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
23644            }
23645          },
23646          {
23647            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23648            "in": "query",
23649            "name": "dryRun",
23650            "type": "string",
23651            "uniqueItems": true
23652          },
23653          {
23654            "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.",
23655            "in": "query",
23656            "name": "gracePeriodSeconds",
23657            "type": "integer",
23658            "uniqueItems": true
23659          },
23660          {
23661            "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.",
23662            "in": "query",
23663            "name": "orphanDependents",
23664            "type": "boolean",
23665            "uniqueItems": true
23666          },
23667          {
23668            "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.",
23669            "in": "query",
23670            "name": "propagationPolicy",
23671            "type": "string",
23672            "uniqueItems": true
23673          }
23674        ],
23675        "produces": [
23676          "application/json",
23677          "application/yaml",
23678          "application/vnd.kubernetes.protobuf"
23679        ],
23680        "responses": {
23681          "200": {
23682            "description": "OK",
23683            "schema": {
23684              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23685            }
23686          },
23687          "202": {
23688            "description": "Accepted",
23689            "schema": {
23690              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
23691            }
23692          },
23693          "401": {
23694            "description": "Unauthorized"
23695          }
23696        },
23697        "schemes": [
23698          "https"
23699        ],
23700        "tags": [
23701          "core_v1"
23702        ],
23703        "x-kubernetes-action": "delete",
23704        "x-kubernetes-group-version-kind": {
23705          "group": "",
23706          "kind": "Pod",
23707          "version": "v1"
23708        }
23709      },
23710      "get": {
23711        "consumes": [
23712          "*/*"
23713        ],
23714        "description": "read the specified Pod",
23715        "operationId": "readCoreV1NamespacedPod",
23716        "parameters": [
23717          {
23718            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
23719            "in": "query",
23720            "name": "exact",
23721            "type": "boolean",
23722            "uniqueItems": true
23723          },
23724          {
23725            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
23726            "in": "query",
23727            "name": "export",
23728            "type": "boolean",
23729            "uniqueItems": true
23730          }
23731        ],
23732        "produces": [
23733          "application/json",
23734          "application/yaml",
23735          "application/vnd.kubernetes.protobuf"
23736        ],
23737        "responses": {
23738          "200": {
23739            "description": "OK",
23740            "schema": {
23741              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23742            }
23743          },
23744          "401": {
23745            "description": "Unauthorized"
23746          }
23747        },
23748        "schemes": [
23749          "https"
23750        ],
23751        "tags": [
23752          "core_v1"
23753        ],
23754        "x-kubernetes-action": "get",
23755        "x-kubernetes-group-version-kind": {
23756          "group": "",
23757          "kind": "Pod",
23758          "version": "v1"
23759        }
23760      },
23761      "parameters": [
23762        {
23763          "description": "name of the Pod",
23764          "in": "path",
23765          "name": "name",
23766          "required": true,
23767          "type": "string",
23768          "uniqueItems": true
23769        },
23770        {
23771          "description": "object name and auth scope, such as for teams and projects",
23772          "in": "path",
23773          "name": "namespace",
23774          "required": true,
23775          "type": "string",
23776          "uniqueItems": true
23777        },
23778        {
23779          "description": "If 'true', then the output is pretty printed.",
23780          "in": "query",
23781          "name": "pretty",
23782          "type": "string",
23783          "uniqueItems": true
23784        }
23785      ],
23786      "patch": {
23787        "consumes": [
23788          "application/json-patch+json",
23789          "application/merge-patch+json",
23790          "application/strategic-merge-patch+json"
23791        ],
23792        "description": "partially update the specified Pod",
23793        "operationId": "patchCoreV1NamespacedPod",
23794        "parameters": [
23795          {
23796            "in": "body",
23797            "name": "body",
23798            "required": true,
23799            "schema": {
23800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
23801            }
23802          },
23803          {
23804            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23805            "in": "query",
23806            "name": "dryRun",
23807            "type": "string",
23808            "uniqueItems": true
23809          },
23810          {
23811            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
23812            "in": "query",
23813            "name": "fieldManager",
23814            "type": "string",
23815            "uniqueItems": true
23816          },
23817          {
23818            "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.",
23819            "in": "query",
23820            "name": "force",
23821            "type": "boolean",
23822            "uniqueItems": true
23823          }
23824        ],
23825        "produces": [
23826          "application/json",
23827          "application/yaml",
23828          "application/vnd.kubernetes.protobuf"
23829        ],
23830        "responses": {
23831          "200": {
23832            "description": "OK",
23833            "schema": {
23834              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23835            }
23836          },
23837          "401": {
23838            "description": "Unauthorized"
23839          }
23840        },
23841        "schemes": [
23842          "https"
23843        ],
23844        "tags": [
23845          "core_v1"
23846        ],
23847        "x-kubernetes-action": "patch",
23848        "x-kubernetes-group-version-kind": {
23849          "group": "",
23850          "kind": "Pod",
23851          "version": "v1"
23852        }
23853      },
23854      "put": {
23855        "consumes": [
23856          "*/*"
23857        ],
23858        "description": "replace the specified Pod",
23859        "operationId": "replaceCoreV1NamespacedPod",
23860        "parameters": [
23861          {
23862            "in": "body",
23863            "name": "body",
23864            "required": true,
23865            "schema": {
23866              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23867            }
23868          },
23869          {
23870            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
23871            "in": "query",
23872            "name": "dryRun",
23873            "type": "string",
23874            "uniqueItems": true
23875          },
23876          {
23877            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
23878            "in": "query",
23879            "name": "fieldManager",
23880            "type": "string",
23881            "uniqueItems": true
23882          }
23883        ],
23884        "produces": [
23885          "application/json",
23886          "application/yaml",
23887          "application/vnd.kubernetes.protobuf"
23888        ],
23889        "responses": {
23890          "200": {
23891            "description": "OK",
23892            "schema": {
23893              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23894            }
23895          },
23896          "201": {
23897            "description": "Created",
23898            "schema": {
23899              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
23900            }
23901          },
23902          "401": {
23903            "description": "Unauthorized"
23904          }
23905        },
23906        "schemes": [
23907          "https"
23908        ],
23909        "tags": [
23910          "core_v1"
23911        ],
23912        "x-kubernetes-action": "put",
23913        "x-kubernetes-group-version-kind": {
23914          "group": "",
23915          "kind": "Pod",
23916          "version": "v1"
23917        }
23918      }
23919    },
23920    "/api/v1/namespaces/{namespace}/pods/{name}/attach": {
23921      "get": {
23922        "consumes": [
23923          "*/*"
23924        ],
23925        "description": "connect GET requests to attach of Pod",
23926        "operationId": "connectCoreV1GetNamespacedPodAttach",
23927        "produces": [
23928          "*/*"
23929        ],
23930        "responses": {
23931          "200": {
23932            "description": "OK",
23933            "schema": {
23934              "type": "string"
23935            }
23936          },
23937          "401": {
23938            "description": "Unauthorized"
23939          }
23940        },
23941        "schemes": [
23942          "https"
23943        ],
23944        "tags": [
23945          "core_v1"
23946        ],
23947        "x-kubernetes-action": "connect",
23948        "x-kubernetes-group-version-kind": {
23949          "group": "",
23950          "kind": "PodAttachOptions",
23951          "version": "v1"
23952        }
23953      },
23954      "parameters": [
23955        {
23956          "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.",
23957          "in": "query",
23958          "name": "container",
23959          "type": "string",
23960          "uniqueItems": true
23961        },
23962        {
23963          "description": "name of the PodAttachOptions",
23964          "in": "path",
23965          "name": "name",
23966          "required": true,
23967          "type": "string",
23968          "uniqueItems": true
23969        },
23970        {
23971          "description": "object name and auth scope, such as for teams and projects",
23972          "in": "path",
23973          "name": "namespace",
23974          "required": true,
23975          "type": "string",
23976          "uniqueItems": true
23977        },
23978        {
23979          "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
23980          "in": "query",
23981          "name": "stderr",
23982          "type": "boolean",
23983          "uniqueItems": true
23984        },
23985        {
23986          "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
23987          "in": "query",
23988          "name": "stdin",
23989          "type": "boolean",
23990          "uniqueItems": true
23991        },
23992        {
23993          "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
23994          "in": "query",
23995          "name": "stdout",
23996          "type": "boolean",
23997          "uniqueItems": true
23998        },
23999        {
24000          "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.",
24001          "in": "query",
24002          "name": "tty",
24003          "type": "boolean",
24004          "uniqueItems": true
24005        }
24006      ],
24007      "post": {
24008        "consumes": [
24009          "*/*"
24010        ],
24011        "description": "connect POST requests to attach of Pod",
24012        "operationId": "connectCoreV1PostNamespacedPodAttach",
24013        "produces": [
24014          "*/*"
24015        ],
24016        "responses": {
24017          "200": {
24018            "description": "OK",
24019            "schema": {
24020              "type": "string"
24021            }
24022          },
24023          "401": {
24024            "description": "Unauthorized"
24025          }
24026        },
24027        "schemes": [
24028          "https"
24029        ],
24030        "tags": [
24031          "core_v1"
24032        ],
24033        "x-kubernetes-action": "connect",
24034        "x-kubernetes-group-version-kind": {
24035          "group": "",
24036          "kind": "PodAttachOptions",
24037          "version": "v1"
24038        }
24039      }
24040    },
24041    "/api/v1/namespaces/{namespace}/pods/{name}/binding": {
24042      "parameters": [
24043        {
24044          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24045          "in": "query",
24046          "name": "dryRun",
24047          "type": "string",
24048          "uniqueItems": true
24049        },
24050        {
24051          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24052          "in": "query",
24053          "name": "fieldManager",
24054          "type": "string",
24055          "uniqueItems": true
24056        },
24057        {
24058          "description": "name of the Binding",
24059          "in": "path",
24060          "name": "name",
24061          "required": true,
24062          "type": "string",
24063          "uniqueItems": true
24064        },
24065        {
24066          "description": "object name and auth scope, such as for teams and projects",
24067          "in": "path",
24068          "name": "namespace",
24069          "required": true,
24070          "type": "string",
24071          "uniqueItems": true
24072        },
24073        {
24074          "description": "If 'true', then the output is pretty printed.",
24075          "in": "query",
24076          "name": "pretty",
24077          "type": "string",
24078          "uniqueItems": true
24079        }
24080      ],
24081      "post": {
24082        "consumes": [
24083          "*/*"
24084        ],
24085        "description": "create binding of a Pod",
24086        "operationId": "createCoreV1NamespacedPodBinding",
24087        "parameters": [
24088          {
24089            "in": "body",
24090            "name": "body",
24091            "required": true,
24092            "schema": {
24093              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24094            }
24095          }
24096        ],
24097        "produces": [
24098          "application/json",
24099          "application/yaml",
24100          "application/vnd.kubernetes.protobuf"
24101        ],
24102        "responses": {
24103          "200": {
24104            "description": "OK",
24105            "schema": {
24106              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24107            }
24108          },
24109          "201": {
24110            "description": "Created",
24111            "schema": {
24112              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24113            }
24114          },
24115          "202": {
24116            "description": "Accepted",
24117            "schema": {
24118              "$ref": "#/definitions/io.k8s.api.core.v1.Binding"
24119            }
24120          },
24121          "401": {
24122            "description": "Unauthorized"
24123          }
24124        },
24125        "schemes": [
24126          "https"
24127        ],
24128        "tags": [
24129          "core_v1"
24130        ],
24131        "x-kubernetes-action": "post",
24132        "x-kubernetes-group-version-kind": {
24133          "group": "",
24134          "kind": "Binding",
24135          "version": "v1"
24136        }
24137      }
24138    },
24139    "/api/v1/namespaces/{namespace}/pods/{name}/eviction": {
24140      "parameters": [
24141        {
24142          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
24143          "in": "query",
24144          "name": "dryRun",
24145          "type": "string",
24146          "uniqueItems": true
24147        },
24148        {
24149          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
24150          "in": "query",
24151          "name": "fieldManager",
24152          "type": "string",
24153          "uniqueItems": true
24154        },
24155        {
24156          "description": "name of the Eviction",
24157          "in": "path",
24158          "name": "name",
24159          "required": true,
24160          "type": "string",
24161          "uniqueItems": true
24162        },
24163        {
24164          "description": "object name and auth scope, such as for teams and projects",
24165          "in": "path",
24166          "name": "namespace",
24167          "required": true,
24168          "type": "string",
24169          "uniqueItems": true
24170        },
24171        {
24172          "description": "If 'true', then the output is pretty printed.",
24173          "in": "query",
24174          "name": "pretty",
24175          "type": "string",
24176          "uniqueItems": true
24177        }
24178      ],
24179      "post": {
24180        "consumes": [
24181          "*/*"
24182        ],
24183        "description": "create eviction of a Pod",
24184        "operationId": "createCoreV1NamespacedPodEviction",
24185        "parameters": [
24186          {
24187            "in": "body",
24188            "name": "body",
24189            "required": true,
24190            "schema": {
24191              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
24192            }
24193          }
24194        ],
24195        "produces": [
24196          "application/json",
24197          "application/yaml",
24198          "application/vnd.kubernetes.protobuf"
24199        ],
24200        "responses": {
24201          "200": {
24202            "description": "OK",
24203            "schema": {
24204              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
24205            }
24206          },
24207          "201": {
24208            "description": "Created",
24209            "schema": {
24210              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
24211            }
24212          },
24213          "202": {
24214            "description": "Accepted",
24215            "schema": {
24216              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.Eviction"
24217            }
24218          },
24219          "401": {
24220            "description": "Unauthorized"
24221          }
24222        },
24223        "schemes": [
24224          "https"
24225        ],
24226        "tags": [
24227          "core_v1"
24228        ],
24229        "x-kubernetes-action": "post",
24230        "x-kubernetes-group-version-kind": {
24231          "group": "policy",
24232          "kind": "Eviction",
24233          "version": "v1beta1"
24234        }
24235      }
24236    },
24237    "/api/v1/namespaces/{namespace}/pods/{name}/exec": {
24238      "get": {
24239        "consumes": [
24240          "*/*"
24241        ],
24242        "description": "connect GET requests to exec of Pod",
24243        "operationId": "connectCoreV1GetNamespacedPodExec",
24244        "produces": [
24245          "*/*"
24246        ],
24247        "responses": {
24248          "200": {
24249            "description": "OK",
24250            "schema": {
24251              "type": "string"
24252            }
24253          },
24254          "401": {
24255            "description": "Unauthorized"
24256          }
24257        },
24258        "schemes": [
24259          "https"
24260        ],
24261        "tags": [
24262          "core_v1"
24263        ],
24264        "x-kubernetes-action": "connect",
24265        "x-kubernetes-group-version-kind": {
24266          "group": "",
24267          "kind": "PodExecOptions",
24268          "version": "v1"
24269        }
24270      },
24271      "parameters": [
24272        {
24273          "description": "Command is the remote command to execute. argv array. Not executed within a shell.",
24274          "in": "query",
24275          "name": "command",
24276          "type": "string",
24277          "uniqueItems": true
24278        },
24279        {
24280          "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.",
24281          "in": "query",
24282          "name": "container",
24283          "type": "string",
24284          "uniqueItems": true
24285        },
24286        {
24287          "description": "name of the PodExecOptions",
24288          "in": "path",
24289          "name": "name",
24290          "required": true,
24291          "type": "string",
24292          "uniqueItems": true
24293        },
24294        {
24295          "description": "object name and auth scope, such as for teams and projects",
24296          "in": "path",
24297          "name": "namespace",
24298          "required": true,
24299          "type": "string",
24300          "uniqueItems": true
24301        },
24302        {
24303          "description": "Redirect the standard error stream of the pod for this call. Defaults to true.",
24304          "in": "query",
24305          "name": "stderr",
24306          "type": "boolean",
24307          "uniqueItems": true
24308        },
24309        {
24310          "description": "Redirect the standard input stream of the pod for this call. Defaults to false.",
24311          "in": "query",
24312          "name": "stdin",
24313          "type": "boolean",
24314          "uniqueItems": true
24315        },
24316        {
24317          "description": "Redirect the standard output stream of the pod for this call. Defaults to true.",
24318          "in": "query",
24319          "name": "stdout",
24320          "type": "boolean",
24321          "uniqueItems": true
24322        },
24323        {
24324          "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
24325          "in": "query",
24326          "name": "tty",
24327          "type": "boolean",
24328          "uniqueItems": true
24329        }
24330      ],
24331      "post": {
24332        "consumes": [
24333          "*/*"
24334        ],
24335        "description": "connect POST requests to exec of Pod",
24336        "operationId": "connectCoreV1PostNamespacedPodExec",
24337        "produces": [
24338          "*/*"
24339        ],
24340        "responses": {
24341          "200": {
24342            "description": "OK",
24343            "schema": {
24344              "type": "string"
24345            }
24346          },
24347          "401": {
24348            "description": "Unauthorized"
24349          }
24350        },
24351        "schemes": [
24352          "https"
24353        ],
24354        "tags": [
24355          "core_v1"
24356        ],
24357        "x-kubernetes-action": "connect",
24358        "x-kubernetes-group-version-kind": {
24359          "group": "",
24360          "kind": "PodExecOptions",
24361          "version": "v1"
24362        }
24363      }
24364    },
24365    "/api/v1/namespaces/{namespace}/pods/{name}/log": {
24366      "get": {
24367        "consumes": [
24368          "*/*"
24369        ],
24370        "description": "read log of the specified Pod",
24371        "operationId": "readCoreV1NamespacedPodLog",
24372        "produces": [
24373          "text/plain",
24374          "application/json",
24375          "application/yaml",
24376          "application/vnd.kubernetes.protobuf"
24377        ],
24378        "responses": {
24379          "200": {
24380            "description": "OK",
24381            "schema": {
24382              "type": "string"
24383            }
24384          },
24385          "401": {
24386            "description": "Unauthorized"
24387          }
24388        },
24389        "schemes": [
24390          "https"
24391        ],
24392        "tags": [
24393          "core_v1"
24394        ],
24395        "x-kubernetes-action": "get",
24396        "x-kubernetes-group-version-kind": {
24397          "group": "",
24398          "kind": "Pod",
24399          "version": "v1"
24400        }
24401      },
24402      "parameters": [
24403        {
24404          "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
24405          "in": "query",
24406          "name": "container",
24407          "type": "string",
24408          "uniqueItems": true
24409        },
24410        {
24411          "description": "Follow the log stream of the pod. Defaults to false.",
24412          "in": "query",
24413          "name": "follow",
24414          "type": "boolean",
24415          "uniqueItems": true
24416        },
24417        {
24418          "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.",
24419          "in": "query",
24420          "name": "limitBytes",
24421          "type": "integer",
24422          "uniqueItems": true
24423        },
24424        {
24425          "description": "name of the Pod",
24426          "in": "path",
24427          "name": "name",
24428          "required": true,
24429          "type": "string",
24430          "uniqueItems": true
24431        },
24432        {
24433          "description": "object name and auth scope, such as for teams and projects",
24434          "in": "path",
24435          "name": "namespace",
24436          "required": true,
24437          "type": "string",
24438          "uniqueItems": true
24439        },
24440        {
24441          "description": "If 'true', then the output is pretty printed.",
24442          "in": "query",
24443          "name": "pretty",
24444          "type": "string",
24445          "uniqueItems": true
24446        },
24447        {
24448          "description": "Return previous terminated container logs. Defaults to false.",
24449          "in": "query",
24450          "name": "previous",
24451          "type": "boolean",
24452          "uniqueItems": true
24453        },
24454        {
24455          "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.",
24456          "in": "query",
24457          "name": "sinceSeconds",
24458          "type": "integer",
24459          "uniqueItems": true
24460        },
24461        {
24462          "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",
24463          "in": "query",
24464          "name": "tailLines",
24465          "type": "integer",
24466          "uniqueItems": true
24467        },
24468        {
24469          "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
24470          "in": "query",
24471          "name": "timestamps",
24472          "type": "boolean",
24473          "uniqueItems": true
24474        }
24475      ]
24476    },
24477    "/api/v1/namespaces/{namespace}/pods/{name}/portforward": {
24478      "get": {
24479        "consumes": [
24480          "*/*"
24481        ],
24482        "description": "connect GET requests to portforward of Pod",
24483        "operationId": "connectCoreV1GetNamespacedPodPortforward",
24484        "produces": [
24485          "*/*"
24486        ],
24487        "responses": {
24488          "200": {
24489            "description": "OK",
24490            "schema": {
24491              "type": "string"
24492            }
24493          },
24494          "401": {
24495            "description": "Unauthorized"
24496          }
24497        },
24498        "schemes": [
24499          "https"
24500        ],
24501        "tags": [
24502          "core_v1"
24503        ],
24504        "x-kubernetes-action": "connect",
24505        "x-kubernetes-group-version-kind": {
24506          "group": "",
24507          "kind": "PodPortForwardOptions",
24508          "version": "v1"
24509        }
24510      },
24511      "parameters": [
24512        {
24513          "description": "name of the PodPortForwardOptions",
24514          "in": "path",
24515          "name": "name",
24516          "required": true,
24517          "type": "string",
24518          "uniqueItems": true
24519        },
24520        {
24521          "description": "object name and auth scope, such as for teams and projects",
24522          "in": "path",
24523          "name": "namespace",
24524          "required": true,
24525          "type": "string",
24526          "uniqueItems": true
24527        },
24528        {
24529          "description": "List of ports to forward Required when using WebSockets",
24530          "in": "query",
24531          "name": "ports",
24532          "type": "integer",
24533          "uniqueItems": true
24534        }
24535      ],
24536      "post": {
24537        "consumes": [
24538          "*/*"
24539        ],
24540        "description": "connect POST requests to portforward of Pod",
24541        "operationId": "connectCoreV1PostNamespacedPodPortforward",
24542        "produces": [
24543          "*/*"
24544        ],
24545        "responses": {
24546          "200": {
24547            "description": "OK",
24548            "schema": {
24549              "type": "string"
24550            }
24551          },
24552          "401": {
24553            "description": "Unauthorized"
24554          }
24555        },
24556        "schemes": [
24557          "https"
24558        ],
24559        "tags": [
24560          "core_v1"
24561        ],
24562        "x-kubernetes-action": "connect",
24563        "x-kubernetes-group-version-kind": {
24564          "group": "",
24565          "kind": "PodPortForwardOptions",
24566          "version": "v1"
24567        }
24568      }
24569    },
24570    "/api/v1/namespaces/{namespace}/pods/{name}/proxy": {
24571      "delete": {
24572        "consumes": [
24573          "*/*"
24574        ],
24575        "description": "connect DELETE requests to proxy of Pod",
24576        "operationId": "connectCoreV1DeleteNamespacedPodProxy",
24577        "produces": [
24578          "*/*"
24579        ],
24580        "responses": {
24581          "200": {
24582            "description": "OK",
24583            "schema": {
24584              "type": "string"
24585            }
24586          },
24587          "401": {
24588            "description": "Unauthorized"
24589          }
24590        },
24591        "schemes": [
24592          "https"
24593        ],
24594        "tags": [
24595          "core_v1"
24596        ],
24597        "x-kubernetes-action": "connect",
24598        "x-kubernetes-group-version-kind": {
24599          "group": "",
24600          "kind": "PodProxyOptions",
24601          "version": "v1"
24602        }
24603      },
24604      "get": {
24605        "consumes": [
24606          "*/*"
24607        ],
24608        "description": "connect GET requests to proxy of Pod",
24609        "operationId": "connectCoreV1GetNamespacedPodProxy",
24610        "produces": [
24611          "*/*"
24612        ],
24613        "responses": {
24614          "200": {
24615            "description": "OK",
24616            "schema": {
24617              "type": "string"
24618            }
24619          },
24620          "401": {
24621            "description": "Unauthorized"
24622          }
24623        },
24624        "schemes": [
24625          "https"
24626        ],
24627        "tags": [
24628          "core_v1"
24629        ],
24630        "x-kubernetes-action": "connect",
24631        "x-kubernetes-group-version-kind": {
24632          "group": "",
24633          "kind": "PodProxyOptions",
24634          "version": "v1"
24635        }
24636      },
24637      "head": {
24638        "consumes": [
24639          "*/*"
24640        ],
24641        "description": "connect HEAD requests to proxy of Pod",
24642        "operationId": "connectCoreV1HeadNamespacedPodProxy",
24643        "produces": [
24644          "*/*"
24645        ],
24646        "responses": {
24647          "200": {
24648            "description": "OK",
24649            "schema": {
24650              "type": "string"
24651            }
24652          },
24653          "401": {
24654            "description": "Unauthorized"
24655          }
24656        },
24657        "schemes": [
24658          "https"
24659        ],
24660        "tags": [
24661          "core_v1"
24662        ],
24663        "x-kubernetes-action": "connect",
24664        "x-kubernetes-group-version-kind": {
24665          "group": "",
24666          "kind": "PodProxyOptions",
24667          "version": "v1"
24668        }
24669      },
24670      "options": {
24671        "consumes": [
24672          "*/*"
24673        ],
24674        "description": "connect OPTIONS requests to proxy of Pod",
24675        "operationId": "connectCoreV1OptionsNamespacedPodProxy",
24676        "produces": [
24677          "*/*"
24678        ],
24679        "responses": {
24680          "200": {
24681            "description": "OK",
24682            "schema": {
24683              "type": "string"
24684            }
24685          },
24686          "401": {
24687            "description": "Unauthorized"
24688          }
24689        },
24690        "schemes": [
24691          "https"
24692        ],
24693        "tags": [
24694          "core_v1"
24695        ],
24696        "x-kubernetes-action": "connect",
24697        "x-kubernetes-group-version-kind": {
24698          "group": "",
24699          "kind": "PodProxyOptions",
24700          "version": "v1"
24701        }
24702      },
24703      "parameters": [
24704        {
24705          "description": "name of the PodProxyOptions",
24706          "in": "path",
24707          "name": "name",
24708          "required": true,
24709          "type": "string",
24710          "uniqueItems": true
24711        },
24712        {
24713          "description": "object name and auth scope, such as for teams and projects",
24714          "in": "path",
24715          "name": "namespace",
24716          "required": true,
24717          "type": "string",
24718          "uniqueItems": true
24719        },
24720        {
24721          "description": "Path is the URL path to use for the current proxy request to pod.",
24722          "in": "query",
24723          "name": "path",
24724          "type": "string",
24725          "uniqueItems": true
24726        }
24727      ],
24728      "patch": {
24729        "consumes": [
24730          "*/*"
24731        ],
24732        "description": "connect PATCH requests to proxy of Pod",
24733        "operationId": "connectCoreV1PatchNamespacedPodProxy",
24734        "produces": [
24735          "*/*"
24736        ],
24737        "responses": {
24738          "200": {
24739            "description": "OK",
24740            "schema": {
24741              "type": "string"
24742            }
24743          },
24744          "401": {
24745            "description": "Unauthorized"
24746          }
24747        },
24748        "schemes": [
24749          "https"
24750        ],
24751        "tags": [
24752          "core_v1"
24753        ],
24754        "x-kubernetes-action": "connect",
24755        "x-kubernetes-group-version-kind": {
24756          "group": "",
24757          "kind": "PodProxyOptions",
24758          "version": "v1"
24759        }
24760      },
24761      "post": {
24762        "consumes": [
24763          "*/*"
24764        ],
24765        "description": "connect POST requests to proxy of Pod",
24766        "operationId": "connectCoreV1PostNamespacedPodProxy",
24767        "produces": [
24768          "*/*"
24769        ],
24770        "responses": {
24771          "200": {
24772            "description": "OK",
24773            "schema": {
24774              "type": "string"
24775            }
24776          },
24777          "401": {
24778            "description": "Unauthorized"
24779          }
24780        },
24781        "schemes": [
24782          "https"
24783        ],
24784        "tags": [
24785          "core_v1"
24786        ],
24787        "x-kubernetes-action": "connect",
24788        "x-kubernetes-group-version-kind": {
24789          "group": "",
24790          "kind": "PodProxyOptions",
24791          "version": "v1"
24792        }
24793      },
24794      "put": {
24795        "consumes": [
24796          "*/*"
24797        ],
24798        "description": "connect PUT requests to proxy of Pod",
24799        "operationId": "connectCoreV1PutNamespacedPodProxy",
24800        "produces": [
24801          "*/*"
24802        ],
24803        "responses": {
24804          "200": {
24805            "description": "OK",
24806            "schema": {
24807              "type": "string"
24808            }
24809          },
24810          "401": {
24811            "description": "Unauthorized"
24812          }
24813        },
24814        "schemes": [
24815          "https"
24816        ],
24817        "tags": [
24818          "core_v1"
24819        ],
24820        "x-kubernetes-action": "connect",
24821        "x-kubernetes-group-version-kind": {
24822          "group": "",
24823          "kind": "PodProxyOptions",
24824          "version": "v1"
24825        }
24826      }
24827    },
24828    "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": {
24829      "delete": {
24830        "consumes": [
24831          "*/*"
24832        ],
24833        "description": "connect DELETE requests to proxy of Pod",
24834        "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath",
24835        "produces": [
24836          "*/*"
24837        ],
24838        "responses": {
24839          "200": {
24840            "description": "OK",
24841            "schema": {
24842              "type": "string"
24843            }
24844          },
24845          "401": {
24846            "description": "Unauthorized"
24847          }
24848        },
24849        "schemes": [
24850          "https"
24851        ],
24852        "tags": [
24853          "core_v1"
24854        ],
24855        "x-kubernetes-action": "connect",
24856        "x-kubernetes-group-version-kind": {
24857          "group": "",
24858          "kind": "PodProxyOptions",
24859          "version": "v1"
24860        }
24861      },
24862      "get": {
24863        "consumes": [
24864          "*/*"
24865        ],
24866        "description": "connect GET requests to proxy of Pod",
24867        "operationId": "connectCoreV1GetNamespacedPodProxyWithPath",
24868        "produces": [
24869          "*/*"
24870        ],
24871        "responses": {
24872          "200": {
24873            "description": "OK",
24874            "schema": {
24875              "type": "string"
24876            }
24877          },
24878          "401": {
24879            "description": "Unauthorized"
24880          }
24881        },
24882        "schemes": [
24883          "https"
24884        ],
24885        "tags": [
24886          "core_v1"
24887        ],
24888        "x-kubernetes-action": "connect",
24889        "x-kubernetes-group-version-kind": {
24890          "group": "",
24891          "kind": "PodProxyOptions",
24892          "version": "v1"
24893        }
24894      },
24895      "head": {
24896        "consumes": [
24897          "*/*"
24898        ],
24899        "description": "connect HEAD requests to proxy of Pod",
24900        "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath",
24901        "produces": [
24902          "*/*"
24903        ],
24904        "responses": {
24905          "200": {
24906            "description": "OK",
24907            "schema": {
24908              "type": "string"
24909            }
24910          },
24911          "401": {
24912            "description": "Unauthorized"
24913          }
24914        },
24915        "schemes": [
24916          "https"
24917        ],
24918        "tags": [
24919          "core_v1"
24920        ],
24921        "x-kubernetes-action": "connect",
24922        "x-kubernetes-group-version-kind": {
24923          "group": "",
24924          "kind": "PodProxyOptions",
24925          "version": "v1"
24926        }
24927      },
24928      "options": {
24929        "consumes": [
24930          "*/*"
24931        ],
24932        "description": "connect OPTIONS requests to proxy of Pod",
24933        "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath",
24934        "produces": [
24935          "*/*"
24936        ],
24937        "responses": {
24938          "200": {
24939            "description": "OK",
24940            "schema": {
24941              "type": "string"
24942            }
24943          },
24944          "401": {
24945            "description": "Unauthorized"
24946          }
24947        },
24948        "schemes": [
24949          "https"
24950        ],
24951        "tags": [
24952          "core_v1"
24953        ],
24954        "x-kubernetes-action": "connect",
24955        "x-kubernetes-group-version-kind": {
24956          "group": "",
24957          "kind": "PodProxyOptions",
24958          "version": "v1"
24959        }
24960      },
24961      "parameters": [
24962        {
24963          "description": "name of the PodProxyOptions",
24964          "in": "path",
24965          "name": "name",
24966          "required": true,
24967          "type": "string",
24968          "uniqueItems": true
24969        },
24970        {
24971          "description": "object name and auth scope, such as for teams and projects",
24972          "in": "path",
24973          "name": "namespace",
24974          "required": true,
24975          "type": "string",
24976          "uniqueItems": true
24977        },
24978        {
24979          "description": "path to the resource",
24980          "in": "path",
24981          "name": "path",
24982          "required": true,
24983          "type": "string",
24984          "uniqueItems": true
24985        },
24986        {
24987          "description": "Path is the URL path to use for the current proxy request to pod.",
24988          "in": "query",
24989          "name": "path",
24990          "type": "string",
24991          "uniqueItems": true
24992        }
24993      ],
24994      "patch": {
24995        "consumes": [
24996          "*/*"
24997        ],
24998        "description": "connect PATCH requests to proxy of Pod",
24999        "operationId": "connectCoreV1PatchNamespacedPodProxyWithPath",
25000        "produces": [
25001          "*/*"
25002        ],
25003        "responses": {
25004          "200": {
25005            "description": "OK",
25006            "schema": {
25007              "type": "string"
25008            }
25009          },
25010          "401": {
25011            "description": "Unauthorized"
25012          }
25013        },
25014        "schemes": [
25015          "https"
25016        ],
25017        "tags": [
25018          "core_v1"
25019        ],
25020        "x-kubernetes-action": "connect",
25021        "x-kubernetes-group-version-kind": {
25022          "group": "",
25023          "kind": "PodProxyOptions",
25024          "version": "v1"
25025        }
25026      },
25027      "post": {
25028        "consumes": [
25029          "*/*"
25030        ],
25031        "description": "connect POST requests to proxy of Pod",
25032        "operationId": "connectCoreV1PostNamespacedPodProxyWithPath",
25033        "produces": [
25034          "*/*"
25035        ],
25036        "responses": {
25037          "200": {
25038            "description": "OK",
25039            "schema": {
25040              "type": "string"
25041            }
25042          },
25043          "401": {
25044            "description": "Unauthorized"
25045          }
25046        },
25047        "schemes": [
25048          "https"
25049        ],
25050        "tags": [
25051          "core_v1"
25052        ],
25053        "x-kubernetes-action": "connect",
25054        "x-kubernetes-group-version-kind": {
25055          "group": "",
25056          "kind": "PodProxyOptions",
25057          "version": "v1"
25058        }
25059      },
25060      "put": {
25061        "consumes": [
25062          "*/*"
25063        ],
25064        "description": "connect PUT requests to proxy of Pod",
25065        "operationId": "connectCoreV1PutNamespacedPodProxyWithPath",
25066        "produces": [
25067          "*/*"
25068        ],
25069        "responses": {
25070          "200": {
25071            "description": "OK",
25072            "schema": {
25073              "type": "string"
25074            }
25075          },
25076          "401": {
25077            "description": "Unauthorized"
25078          }
25079        },
25080        "schemes": [
25081          "https"
25082        ],
25083        "tags": [
25084          "core_v1"
25085        ],
25086        "x-kubernetes-action": "connect",
25087        "x-kubernetes-group-version-kind": {
25088          "group": "",
25089          "kind": "PodProxyOptions",
25090          "version": "v1"
25091        }
25092      }
25093    },
25094    "/api/v1/namespaces/{namespace}/pods/{name}/status": {
25095      "get": {
25096        "consumes": [
25097          "*/*"
25098        ],
25099        "description": "read status of the specified Pod",
25100        "operationId": "readCoreV1NamespacedPodStatus",
25101        "produces": [
25102          "application/json",
25103          "application/yaml",
25104          "application/vnd.kubernetes.protobuf"
25105        ],
25106        "responses": {
25107          "200": {
25108            "description": "OK",
25109            "schema": {
25110              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25111            }
25112          },
25113          "401": {
25114            "description": "Unauthorized"
25115          }
25116        },
25117        "schemes": [
25118          "https"
25119        ],
25120        "tags": [
25121          "core_v1"
25122        ],
25123        "x-kubernetes-action": "get",
25124        "x-kubernetes-group-version-kind": {
25125          "group": "",
25126          "kind": "Pod",
25127          "version": "v1"
25128        }
25129      },
25130      "parameters": [
25131        {
25132          "description": "name of the Pod",
25133          "in": "path",
25134          "name": "name",
25135          "required": true,
25136          "type": "string",
25137          "uniqueItems": true
25138        },
25139        {
25140          "description": "object name and auth scope, such as for teams and projects",
25141          "in": "path",
25142          "name": "namespace",
25143          "required": true,
25144          "type": "string",
25145          "uniqueItems": true
25146        },
25147        {
25148          "description": "If 'true', then the output is pretty printed.",
25149          "in": "query",
25150          "name": "pretty",
25151          "type": "string",
25152          "uniqueItems": true
25153        }
25154      ],
25155      "patch": {
25156        "consumes": [
25157          "application/json-patch+json",
25158          "application/merge-patch+json",
25159          "application/strategic-merge-patch+json"
25160        ],
25161        "description": "partially update status of the specified Pod",
25162        "operationId": "patchCoreV1NamespacedPodStatus",
25163        "parameters": [
25164          {
25165            "in": "body",
25166            "name": "body",
25167            "required": true,
25168            "schema": {
25169              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25170            }
25171          },
25172          {
25173            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25174            "in": "query",
25175            "name": "dryRun",
25176            "type": "string",
25177            "uniqueItems": true
25178          },
25179          {
25180            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
25181            "in": "query",
25182            "name": "fieldManager",
25183            "type": "string",
25184            "uniqueItems": true
25185          },
25186          {
25187            "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.",
25188            "in": "query",
25189            "name": "force",
25190            "type": "boolean",
25191            "uniqueItems": true
25192          }
25193        ],
25194        "produces": [
25195          "application/json",
25196          "application/yaml",
25197          "application/vnd.kubernetes.protobuf"
25198        ],
25199        "responses": {
25200          "200": {
25201            "description": "OK",
25202            "schema": {
25203              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25204            }
25205          },
25206          "401": {
25207            "description": "Unauthorized"
25208          }
25209        },
25210        "schemes": [
25211          "https"
25212        ],
25213        "tags": [
25214          "core_v1"
25215        ],
25216        "x-kubernetes-action": "patch",
25217        "x-kubernetes-group-version-kind": {
25218          "group": "",
25219          "kind": "Pod",
25220          "version": "v1"
25221        }
25222      },
25223      "put": {
25224        "consumes": [
25225          "*/*"
25226        ],
25227        "description": "replace status of the specified Pod",
25228        "operationId": "replaceCoreV1NamespacedPodStatus",
25229        "parameters": [
25230          {
25231            "in": "body",
25232            "name": "body",
25233            "required": true,
25234            "schema": {
25235              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25236            }
25237          },
25238          {
25239            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25240            "in": "query",
25241            "name": "dryRun",
25242            "type": "string",
25243            "uniqueItems": true
25244          },
25245          {
25246            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25247            "in": "query",
25248            "name": "fieldManager",
25249            "type": "string",
25250            "uniqueItems": true
25251          }
25252        ],
25253        "produces": [
25254          "application/json",
25255          "application/yaml",
25256          "application/vnd.kubernetes.protobuf"
25257        ],
25258        "responses": {
25259          "200": {
25260            "description": "OK",
25261            "schema": {
25262              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25263            }
25264          },
25265          "201": {
25266            "description": "Created",
25267            "schema": {
25268              "$ref": "#/definitions/io.k8s.api.core.v1.Pod"
25269            }
25270          },
25271          "401": {
25272            "description": "Unauthorized"
25273          }
25274        },
25275        "schemes": [
25276          "https"
25277        ],
25278        "tags": [
25279          "core_v1"
25280        ],
25281        "x-kubernetes-action": "put",
25282        "x-kubernetes-group-version-kind": {
25283          "group": "",
25284          "kind": "Pod",
25285          "version": "v1"
25286        }
25287      }
25288    },
25289    "/api/v1/namespaces/{namespace}/podtemplates": {
25290      "delete": {
25291        "consumes": [
25292          "*/*"
25293        ],
25294        "description": "delete collection of PodTemplate",
25295        "operationId": "deleteCoreV1CollectionNamespacedPodTemplate",
25296        "parameters": [
25297          {
25298            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
25299            "in": "query",
25300            "name": "allowWatchBookmarks",
25301            "type": "boolean",
25302            "uniqueItems": true
25303          },
25304          {
25305            "in": "body",
25306            "name": "body",
25307            "schema": {
25308              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25309            }
25310          },
25311          {
25312            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25313            "in": "query",
25314            "name": "continue",
25315            "type": "string",
25316            "uniqueItems": true
25317          },
25318          {
25319            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25320            "in": "query",
25321            "name": "dryRun",
25322            "type": "string",
25323            "uniqueItems": true
25324          },
25325          {
25326            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25327            "in": "query",
25328            "name": "fieldSelector",
25329            "type": "string",
25330            "uniqueItems": true
25331          },
25332          {
25333            "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.",
25334            "in": "query",
25335            "name": "gracePeriodSeconds",
25336            "type": "integer",
25337            "uniqueItems": true
25338          },
25339          {
25340            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25341            "in": "query",
25342            "name": "labelSelector",
25343            "type": "string",
25344            "uniqueItems": true
25345          },
25346          {
25347            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25348            "in": "query",
25349            "name": "limit",
25350            "type": "integer",
25351            "uniqueItems": true
25352          },
25353          {
25354            "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.",
25355            "in": "query",
25356            "name": "orphanDependents",
25357            "type": "boolean",
25358            "uniqueItems": true
25359          },
25360          {
25361            "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.",
25362            "in": "query",
25363            "name": "propagationPolicy",
25364            "type": "string",
25365            "uniqueItems": true
25366          },
25367          {
25368            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
25369            "in": "query",
25370            "name": "resourceVersion",
25371            "type": "string",
25372            "uniqueItems": true
25373          },
25374          {
25375            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25376            "in": "query",
25377            "name": "timeoutSeconds",
25378            "type": "integer",
25379            "uniqueItems": true
25380          },
25381          {
25382            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
25383            "in": "query",
25384            "name": "watch",
25385            "type": "boolean",
25386            "uniqueItems": true
25387          }
25388        ],
25389        "produces": [
25390          "application/json",
25391          "application/yaml",
25392          "application/vnd.kubernetes.protobuf"
25393        ],
25394        "responses": {
25395          "200": {
25396            "description": "OK",
25397            "schema": {
25398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25399            }
25400          },
25401          "401": {
25402            "description": "Unauthorized"
25403          }
25404        },
25405        "schemes": [
25406          "https"
25407        ],
25408        "tags": [
25409          "core_v1"
25410        ],
25411        "x-kubernetes-action": "deletecollection",
25412        "x-kubernetes-group-version-kind": {
25413          "group": "",
25414          "kind": "PodTemplate",
25415          "version": "v1"
25416        }
25417      },
25418      "get": {
25419        "consumes": [
25420          "*/*"
25421        ],
25422        "description": "list or watch objects of kind PodTemplate",
25423        "operationId": "listCoreV1NamespacedPodTemplate",
25424        "parameters": [
25425          {
25426            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
25427            "in": "query",
25428            "name": "allowWatchBookmarks",
25429            "type": "boolean",
25430            "uniqueItems": true
25431          },
25432          {
25433            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25434            "in": "query",
25435            "name": "continue",
25436            "type": "string",
25437            "uniqueItems": true
25438          },
25439          {
25440            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25441            "in": "query",
25442            "name": "fieldSelector",
25443            "type": "string",
25444            "uniqueItems": true
25445          },
25446          {
25447            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25448            "in": "query",
25449            "name": "labelSelector",
25450            "type": "string",
25451            "uniqueItems": true
25452          },
25453          {
25454            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25455            "in": "query",
25456            "name": "limit",
25457            "type": "integer",
25458            "uniqueItems": true
25459          },
25460          {
25461            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
25462            "in": "query",
25463            "name": "resourceVersion",
25464            "type": "string",
25465            "uniqueItems": true
25466          },
25467          {
25468            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25469            "in": "query",
25470            "name": "timeoutSeconds",
25471            "type": "integer",
25472            "uniqueItems": true
25473          },
25474          {
25475            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
25476            "in": "query",
25477            "name": "watch",
25478            "type": "boolean",
25479            "uniqueItems": true
25480          }
25481        ],
25482        "produces": [
25483          "application/json",
25484          "application/yaml",
25485          "application/vnd.kubernetes.protobuf",
25486          "application/json;stream=watch",
25487          "application/vnd.kubernetes.protobuf;stream=watch"
25488        ],
25489        "responses": {
25490          "200": {
25491            "description": "OK",
25492            "schema": {
25493              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
25494            }
25495          },
25496          "401": {
25497            "description": "Unauthorized"
25498          }
25499        },
25500        "schemes": [
25501          "https"
25502        ],
25503        "tags": [
25504          "core_v1"
25505        ],
25506        "x-kubernetes-action": "list",
25507        "x-kubernetes-group-version-kind": {
25508          "group": "",
25509          "kind": "PodTemplate",
25510          "version": "v1"
25511        }
25512      },
25513      "parameters": [
25514        {
25515          "description": "object name and auth scope, such as for teams and projects",
25516          "in": "path",
25517          "name": "namespace",
25518          "required": true,
25519          "type": "string",
25520          "uniqueItems": true
25521        },
25522        {
25523          "description": "If 'true', then the output is pretty printed.",
25524          "in": "query",
25525          "name": "pretty",
25526          "type": "string",
25527          "uniqueItems": true
25528        }
25529      ],
25530      "post": {
25531        "consumes": [
25532          "*/*"
25533        ],
25534        "description": "create a PodTemplate",
25535        "operationId": "createCoreV1NamespacedPodTemplate",
25536        "parameters": [
25537          {
25538            "in": "body",
25539            "name": "body",
25540            "required": true,
25541            "schema": {
25542              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25543            }
25544          },
25545          {
25546            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25547            "in": "query",
25548            "name": "dryRun",
25549            "type": "string",
25550            "uniqueItems": true
25551          },
25552          {
25553            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25554            "in": "query",
25555            "name": "fieldManager",
25556            "type": "string",
25557            "uniqueItems": true
25558          }
25559        ],
25560        "produces": [
25561          "application/json",
25562          "application/yaml",
25563          "application/vnd.kubernetes.protobuf"
25564        ],
25565        "responses": {
25566          "200": {
25567            "description": "OK",
25568            "schema": {
25569              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25570            }
25571          },
25572          "201": {
25573            "description": "Created",
25574            "schema": {
25575              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25576            }
25577          },
25578          "202": {
25579            "description": "Accepted",
25580            "schema": {
25581              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25582            }
25583          },
25584          "401": {
25585            "description": "Unauthorized"
25586          }
25587        },
25588        "schemes": [
25589          "https"
25590        ],
25591        "tags": [
25592          "core_v1"
25593        ],
25594        "x-kubernetes-action": "post",
25595        "x-kubernetes-group-version-kind": {
25596          "group": "",
25597          "kind": "PodTemplate",
25598          "version": "v1"
25599        }
25600      }
25601    },
25602    "/api/v1/namespaces/{namespace}/podtemplates/{name}": {
25603      "delete": {
25604        "consumes": [
25605          "*/*"
25606        ],
25607        "description": "delete a PodTemplate",
25608        "operationId": "deleteCoreV1NamespacedPodTemplate",
25609        "parameters": [
25610          {
25611            "in": "body",
25612            "name": "body",
25613            "schema": {
25614              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25615            }
25616          },
25617          {
25618            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25619            "in": "query",
25620            "name": "dryRun",
25621            "type": "string",
25622            "uniqueItems": true
25623          },
25624          {
25625            "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.",
25626            "in": "query",
25627            "name": "gracePeriodSeconds",
25628            "type": "integer",
25629            "uniqueItems": true
25630          },
25631          {
25632            "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.",
25633            "in": "query",
25634            "name": "orphanDependents",
25635            "type": "boolean",
25636            "uniqueItems": true
25637          },
25638          {
25639            "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.",
25640            "in": "query",
25641            "name": "propagationPolicy",
25642            "type": "string",
25643            "uniqueItems": true
25644          }
25645        ],
25646        "produces": [
25647          "application/json",
25648          "application/yaml",
25649          "application/vnd.kubernetes.protobuf"
25650        ],
25651        "responses": {
25652          "200": {
25653            "description": "OK",
25654            "schema": {
25655              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25656            }
25657          },
25658          "202": {
25659            "description": "Accepted",
25660            "schema": {
25661              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
25662            }
25663          },
25664          "401": {
25665            "description": "Unauthorized"
25666          }
25667        },
25668        "schemes": [
25669          "https"
25670        ],
25671        "tags": [
25672          "core_v1"
25673        ],
25674        "x-kubernetes-action": "delete",
25675        "x-kubernetes-group-version-kind": {
25676          "group": "",
25677          "kind": "PodTemplate",
25678          "version": "v1"
25679        }
25680      },
25681      "get": {
25682        "consumes": [
25683          "*/*"
25684        ],
25685        "description": "read the specified PodTemplate",
25686        "operationId": "readCoreV1NamespacedPodTemplate",
25687        "parameters": [
25688          {
25689            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
25690            "in": "query",
25691            "name": "exact",
25692            "type": "boolean",
25693            "uniqueItems": true
25694          },
25695          {
25696            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
25697            "in": "query",
25698            "name": "export",
25699            "type": "boolean",
25700            "uniqueItems": true
25701          }
25702        ],
25703        "produces": [
25704          "application/json",
25705          "application/yaml",
25706          "application/vnd.kubernetes.protobuf"
25707        ],
25708        "responses": {
25709          "200": {
25710            "description": "OK",
25711            "schema": {
25712              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25713            }
25714          },
25715          "401": {
25716            "description": "Unauthorized"
25717          }
25718        },
25719        "schemes": [
25720          "https"
25721        ],
25722        "tags": [
25723          "core_v1"
25724        ],
25725        "x-kubernetes-action": "get",
25726        "x-kubernetes-group-version-kind": {
25727          "group": "",
25728          "kind": "PodTemplate",
25729          "version": "v1"
25730        }
25731      },
25732      "parameters": [
25733        {
25734          "description": "name of the PodTemplate",
25735          "in": "path",
25736          "name": "name",
25737          "required": true,
25738          "type": "string",
25739          "uniqueItems": true
25740        },
25741        {
25742          "description": "object name and auth scope, such as for teams and projects",
25743          "in": "path",
25744          "name": "namespace",
25745          "required": true,
25746          "type": "string",
25747          "uniqueItems": true
25748        },
25749        {
25750          "description": "If 'true', then the output is pretty printed.",
25751          "in": "query",
25752          "name": "pretty",
25753          "type": "string",
25754          "uniqueItems": true
25755        }
25756      ],
25757      "patch": {
25758        "consumes": [
25759          "application/json-patch+json",
25760          "application/merge-patch+json",
25761          "application/strategic-merge-patch+json"
25762        ],
25763        "description": "partially update the specified PodTemplate",
25764        "operationId": "patchCoreV1NamespacedPodTemplate",
25765        "parameters": [
25766          {
25767            "in": "body",
25768            "name": "body",
25769            "required": true,
25770            "schema": {
25771              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
25772            }
25773          },
25774          {
25775            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25776            "in": "query",
25777            "name": "dryRun",
25778            "type": "string",
25779            "uniqueItems": true
25780          },
25781          {
25782            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
25783            "in": "query",
25784            "name": "fieldManager",
25785            "type": "string",
25786            "uniqueItems": true
25787          },
25788          {
25789            "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.",
25790            "in": "query",
25791            "name": "force",
25792            "type": "boolean",
25793            "uniqueItems": true
25794          }
25795        ],
25796        "produces": [
25797          "application/json",
25798          "application/yaml",
25799          "application/vnd.kubernetes.protobuf"
25800        ],
25801        "responses": {
25802          "200": {
25803            "description": "OK",
25804            "schema": {
25805              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25806            }
25807          },
25808          "401": {
25809            "description": "Unauthorized"
25810          }
25811        },
25812        "schemes": [
25813          "https"
25814        ],
25815        "tags": [
25816          "core_v1"
25817        ],
25818        "x-kubernetes-action": "patch",
25819        "x-kubernetes-group-version-kind": {
25820          "group": "",
25821          "kind": "PodTemplate",
25822          "version": "v1"
25823        }
25824      },
25825      "put": {
25826        "consumes": [
25827          "*/*"
25828        ],
25829        "description": "replace the specified PodTemplate",
25830        "operationId": "replaceCoreV1NamespacedPodTemplate",
25831        "parameters": [
25832          {
25833            "in": "body",
25834            "name": "body",
25835            "required": true,
25836            "schema": {
25837              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25838            }
25839          },
25840          {
25841            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25842            "in": "query",
25843            "name": "dryRun",
25844            "type": "string",
25845            "uniqueItems": true
25846          },
25847          {
25848            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
25849            "in": "query",
25850            "name": "fieldManager",
25851            "type": "string",
25852            "uniqueItems": true
25853          }
25854        ],
25855        "produces": [
25856          "application/json",
25857          "application/yaml",
25858          "application/vnd.kubernetes.protobuf"
25859        ],
25860        "responses": {
25861          "200": {
25862            "description": "OK",
25863            "schema": {
25864              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25865            }
25866          },
25867          "201": {
25868            "description": "Created",
25869            "schema": {
25870              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate"
25871            }
25872          },
25873          "401": {
25874            "description": "Unauthorized"
25875          }
25876        },
25877        "schemes": [
25878          "https"
25879        ],
25880        "tags": [
25881          "core_v1"
25882        ],
25883        "x-kubernetes-action": "put",
25884        "x-kubernetes-group-version-kind": {
25885          "group": "",
25886          "kind": "PodTemplate",
25887          "version": "v1"
25888        }
25889      }
25890    },
25891    "/api/v1/namespaces/{namespace}/replicationcontrollers": {
25892      "delete": {
25893        "consumes": [
25894          "*/*"
25895        ],
25896        "description": "delete collection of ReplicationController",
25897        "operationId": "deleteCoreV1CollectionNamespacedReplicationController",
25898        "parameters": [
25899          {
25900            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
25901            "in": "query",
25902            "name": "allowWatchBookmarks",
25903            "type": "boolean",
25904            "uniqueItems": true
25905          },
25906          {
25907            "in": "body",
25908            "name": "body",
25909            "schema": {
25910              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
25911            }
25912          },
25913          {
25914            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
25915            "in": "query",
25916            "name": "continue",
25917            "type": "string",
25918            "uniqueItems": true
25919          },
25920          {
25921            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
25922            "in": "query",
25923            "name": "dryRun",
25924            "type": "string",
25925            "uniqueItems": true
25926          },
25927          {
25928            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
25929            "in": "query",
25930            "name": "fieldSelector",
25931            "type": "string",
25932            "uniqueItems": true
25933          },
25934          {
25935            "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.",
25936            "in": "query",
25937            "name": "gracePeriodSeconds",
25938            "type": "integer",
25939            "uniqueItems": true
25940          },
25941          {
25942            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
25943            "in": "query",
25944            "name": "labelSelector",
25945            "type": "string",
25946            "uniqueItems": true
25947          },
25948          {
25949            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
25950            "in": "query",
25951            "name": "limit",
25952            "type": "integer",
25953            "uniqueItems": true
25954          },
25955          {
25956            "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.",
25957            "in": "query",
25958            "name": "orphanDependents",
25959            "type": "boolean",
25960            "uniqueItems": true
25961          },
25962          {
25963            "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.",
25964            "in": "query",
25965            "name": "propagationPolicy",
25966            "type": "string",
25967            "uniqueItems": true
25968          },
25969          {
25970            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
25971            "in": "query",
25972            "name": "resourceVersion",
25973            "type": "string",
25974            "uniqueItems": true
25975          },
25976          {
25977            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
25978            "in": "query",
25979            "name": "timeoutSeconds",
25980            "type": "integer",
25981            "uniqueItems": true
25982          },
25983          {
25984            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
25985            "in": "query",
25986            "name": "watch",
25987            "type": "boolean",
25988            "uniqueItems": true
25989          }
25990        ],
25991        "produces": [
25992          "application/json",
25993          "application/yaml",
25994          "application/vnd.kubernetes.protobuf"
25995        ],
25996        "responses": {
25997          "200": {
25998            "description": "OK",
25999            "schema": {
26000              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26001            }
26002          },
26003          "401": {
26004            "description": "Unauthorized"
26005          }
26006        },
26007        "schemes": [
26008          "https"
26009        ],
26010        "tags": [
26011          "core_v1"
26012        ],
26013        "x-kubernetes-action": "deletecollection",
26014        "x-kubernetes-group-version-kind": {
26015          "group": "",
26016          "kind": "ReplicationController",
26017          "version": "v1"
26018        }
26019      },
26020      "get": {
26021        "consumes": [
26022          "*/*"
26023        ],
26024        "description": "list or watch objects of kind ReplicationController",
26025        "operationId": "listCoreV1NamespacedReplicationController",
26026        "parameters": [
26027          {
26028            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
26029            "in": "query",
26030            "name": "allowWatchBookmarks",
26031            "type": "boolean",
26032            "uniqueItems": true
26033          },
26034          {
26035            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26036            "in": "query",
26037            "name": "continue",
26038            "type": "string",
26039            "uniqueItems": true
26040          },
26041          {
26042            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26043            "in": "query",
26044            "name": "fieldSelector",
26045            "type": "string",
26046            "uniqueItems": true
26047          },
26048          {
26049            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26050            "in": "query",
26051            "name": "labelSelector",
26052            "type": "string",
26053            "uniqueItems": true
26054          },
26055          {
26056            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26057            "in": "query",
26058            "name": "limit",
26059            "type": "integer",
26060            "uniqueItems": true
26061          },
26062          {
26063            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
26064            "in": "query",
26065            "name": "resourceVersion",
26066            "type": "string",
26067            "uniqueItems": true
26068          },
26069          {
26070            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26071            "in": "query",
26072            "name": "timeoutSeconds",
26073            "type": "integer",
26074            "uniqueItems": true
26075          },
26076          {
26077            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26078            "in": "query",
26079            "name": "watch",
26080            "type": "boolean",
26081            "uniqueItems": true
26082          }
26083        ],
26084        "produces": [
26085          "application/json",
26086          "application/yaml",
26087          "application/vnd.kubernetes.protobuf",
26088          "application/json;stream=watch",
26089          "application/vnd.kubernetes.protobuf;stream=watch"
26090        ],
26091        "responses": {
26092          "200": {
26093            "description": "OK",
26094            "schema": {
26095              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
26096            }
26097          },
26098          "401": {
26099            "description": "Unauthorized"
26100          }
26101        },
26102        "schemes": [
26103          "https"
26104        ],
26105        "tags": [
26106          "core_v1"
26107        ],
26108        "x-kubernetes-action": "list",
26109        "x-kubernetes-group-version-kind": {
26110          "group": "",
26111          "kind": "ReplicationController",
26112          "version": "v1"
26113        }
26114      },
26115      "parameters": [
26116        {
26117          "description": "object name and auth scope, such as for teams and projects",
26118          "in": "path",
26119          "name": "namespace",
26120          "required": true,
26121          "type": "string",
26122          "uniqueItems": true
26123        },
26124        {
26125          "description": "If 'true', then the output is pretty printed.",
26126          "in": "query",
26127          "name": "pretty",
26128          "type": "string",
26129          "uniqueItems": true
26130        }
26131      ],
26132      "post": {
26133        "consumes": [
26134          "*/*"
26135        ],
26136        "description": "create a ReplicationController",
26137        "operationId": "createCoreV1NamespacedReplicationController",
26138        "parameters": [
26139          {
26140            "in": "body",
26141            "name": "body",
26142            "required": true,
26143            "schema": {
26144              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26145            }
26146          },
26147          {
26148            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26149            "in": "query",
26150            "name": "dryRun",
26151            "type": "string",
26152            "uniqueItems": true
26153          },
26154          {
26155            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26156            "in": "query",
26157            "name": "fieldManager",
26158            "type": "string",
26159            "uniqueItems": true
26160          }
26161        ],
26162        "produces": [
26163          "application/json",
26164          "application/yaml",
26165          "application/vnd.kubernetes.protobuf"
26166        ],
26167        "responses": {
26168          "200": {
26169            "description": "OK",
26170            "schema": {
26171              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26172            }
26173          },
26174          "201": {
26175            "description": "Created",
26176            "schema": {
26177              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26178            }
26179          },
26180          "202": {
26181            "description": "Accepted",
26182            "schema": {
26183              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26184            }
26185          },
26186          "401": {
26187            "description": "Unauthorized"
26188          }
26189        },
26190        "schemes": [
26191          "https"
26192        ],
26193        "tags": [
26194          "core_v1"
26195        ],
26196        "x-kubernetes-action": "post",
26197        "x-kubernetes-group-version-kind": {
26198          "group": "",
26199          "kind": "ReplicationController",
26200          "version": "v1"
26201        }
26202      }
26203    },
26204    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": {
26205      "delete": {
26206        "consumes": [
26207          "*/*"
26208        ],
26209        "description": "delete a ReplicationController",
26210        "operationId": "deleteCoreV1NamespacedReplicationController",
26211        "parameters": [
26212          {
26213            "in": "body",
26214            "name": "body",
26215            "schema": {
26216              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26217            }
26218          },
26219          {
26220            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26221            "in": "query",
26222            "name": "dryRun",
26223            "type": "string",
26224            "uniqueItems": true
26225          },
26226          {
26227            "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.",
26228            "in": "query",
26229            "name": "gracePeriodSeconds",
26230            "type": "integer",
26231            "uniqueItems": true
26232          },
26233          {
26234            "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.",
26235            "in": "query",
26236            "name": "orphanDependents",
26237            "type": "boolean",
26238            "uniqueItems": true
26239          },
26240          {
26241            "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.",
26242            "in": "query",
26243            "name": "propagationPolicy",
26244            "type": "string",
26245            "uniqueItems": true
26246          }
26247        ],
26248        "produces": [
26249          "application/json",
26250          "application/yaml",
26251          "application/vnd.kubernetes.protobuf"
26252        ],
26253        "responses": {
26254          "200": {
26255            "description": "OK",
26256            "schema": {
26257              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26258            }
26259          },
26260          "202": {
26261            "description": "Accepted",
26262            "schema": {
26263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26264            }
26265          },
26266          "401": {
26267            "description": "Unauthorized"
26268          }
26269        },
26270        "schemes": [
26271          "https"
26272        ],
26273        "tags": [
26274          "core_v1"
26275        ],
26276        "x-kubernetes-action": "delete",
26277        "x-kubernetes-group-version-kind": {
26278          "group": "",
26279          "kind": "ReplicationController",
26280          "version": "v1"
26281        }
26282      },
26283      "get": {
26284        "consumes": [
26285          "*/*"
26286        ],
26287        "description": "read the specified ReplicationController",
26288        "operationId": "readCoreV1NamespacedReplicationController",
26289        "parameters": [
26290          {
26291            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
26292            "in": "query",
26293            "name": "exact",
26294            "type": "boolean",
26295            "uniqueItems": true
26296          },
26297          {
26298            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
26299            "in": "query",
26300            "name": "export",
26301            "type": "boolean",
26302            "uniqueItems": true
26303          }
26304        ],
26305        "produces": [
26306          "application/json",
26307          "application/yaml",
26308          "application/vnd.kubernetes.protobuf"
26309        ],
26310        "responses": {
26311          "200": {
26312            "description": "OK",
26313            "schema": {
26314              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26315            }
26316          },
26317          "401": {
26318            "description": "Unauthorized"
26319          }
26320        },
26321        "schemes": [
26322          "https"
26323        ],
26324        "tags": [
26325          "core_v1"
26326        ],
26327        "x-kubernetes-action": "get",
26328        "x-kubernetes-group-version-kind": {
26329          "group": "",
26330          "kind": "ReplicationController",
26331          "version": "v1"
26332        }
26333      },
26334      "parameters": [
26335        {
26336          "description": "name of the ReplicationController",
26337          "in": "path",
26338          "name": "name",
26339          "required": true,
26340          "type": "string",
26341          "uniqueItems": true
26342        },
26343        {
26344          "description": "object name and auth scope, such as for teams and projects",
26345          "in": "path",
26346          "name": "namespace",
26347          "required": true,
26348          "type": "string",
26349          "uniqueItems": true
26350        },
26351        {
26352          "description": "If 'true', then the output is pretty printed.",
26353          "in": "query",
26354          "name": "pretty",
26355          "type": "string",
26356          "uniqueItems": true
26357        }
26358      ],
26359      "patch": {
26360        "consumes": [
26361          "application/json-patch+json",
26362          "application/merge-patch+json",
26363          "application/strategic-merge-patch+json"
26364        ],
26365        "description": "partially update the specified ReplicationController",
26366        "operationId": "patchCoreV1NamespacedReplicationController",
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.ReplicationController"
26408            }
26409          },
26410          "401": {
26411            "description": "Unauthorized"
26412          }
26413        },
26414        "schemes": [
26415          "https"
26416        ],
26417        "tags": [
26418          "core_v1"
26419        ],
26420        "x-kubernetes-action": "patch",
26421        "x-kubernetes-group-version-kind": {
26422          "group": "",
26423          "kind": "ReplicationController",
26424          "version": "v1"
26425        }
26426      },
26427      "put": {
26428        "consumes": [
26429          "*/*"
26430        ],
26431        "description": "replace the specified ReplicationController",
26432        "operationId": "replaceCoreV1NamespacedReplicationController",
26433        "parameters": [
26434          {
26435            "in": "body",
26436            "name": "body",
26437            "required": true,
26438            "schema": {
26439              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26440            }
26441          },
26442          {
26443            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26444            "in": "query",
26445            "name": "dryRun",
26446            "type": "string",
26447            "uniqueItems": true
26448          },
26449          {
26450            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26451            "in": "query",
26452            "name": "fieldManager",
26453            "type": "string",
26454            "uniqueItems": true
26455          }
26456        ],
26457        "produces": [
26458          "application/json",
26459          "application/yaml",
26460          "application/vnd.kubernetes.protobuf"
26461        ],
26462        "responses": {
26463          "200": {
26464            "description": "OK",
26465            "schema": {
26466              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26467            }
26468          },
26469          "201": {
26470            "description": "Created",
26471            "schema": {
26472              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26473            }
26474          },
26475          "401": {
26476            "description": "Unauthorized"
26477          }
26478        },
26479        "schemes": [
26480          "https"
26481        ],
26482        "tags": [
26483          "core_v1"
26484        ],
26485        "x-kubernetes-action": "put",
26486        "x-kubernetes-group-version-kind": {
26487          "group": "",
26488          "kind": "ReplicationController",
26489          "version": "v1"
26490        }
26491      }
26492    },
26493    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
26494      "get": {
26495        "consumes": [
26496          "*/*"
26497        ],
26498        "description": "read scale of the specified ReplicationController",
26499        "operationId": "readCoreV1NamespacedReplicationControllerScale",
26500        "produces": [
26501          "application/json",
26502          "application/yaml",
26503          "application/vnd.kubernetes.protobuf"
26504        ],
26505        "responses": {
26506          "200": {
26507            "description": "OK",
26508            "schema": {
26509              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
26510            }
26511          },
26512          "401": {
26513            "description": "Unauthorized"
26514          }
26515        },
26516        "schemes": [
26517          "https"
26518        ],
26519        "tags": [
26520          "core_v1"
26521        ],
26522        "x-kubernetes-action": "get",
26523        "x-kubernetes-group-version-kind": {
26524          "group": "autoscaling",
26525          "kind": "Scale",
26526          "version": "v1"
26527        }
26528      },
26529      "parameters": [
26530        {
26531          "description": "name of the Scale",
26532          "in": "path",
26533          "name": "name",
26534          "required": true,
26535          "type": "string",
26536          "uniqueItems": true
26537        },
26538        {
26539          "description": "object name and auth scope, such as for teams and projects",
26540          "in": "path",
26541          "name": "namespace",
26542          "required": true,
26543          "type": "string",
26544          "uniqueItems": true
26545        },
26546        {
26547          "description": "If 'true', then the output is pretty printed.",
26548          "in": "query",
26549          "name": "pretty",
26550          "type": "string",
26551          "uniqueItems": true
26552        }
26553      ],
26554      "patch": {
26555        "consumes": [
26556          "application/json-patch+json",
26557          "application/merge-patch+json",
26558          "application/strategic-merge-patch+json"
26559        ],
26560        "description": "partially update scale of the specified ReplicationController",
26561        "operationId": "patchCoreV1NamespacedReplicationControllerScale",
26562        "parameters": [
26563          {
26564            "in": "body",
26565            "name": "body",
26566            "required": true,
26567            "schema": {
26568              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26569            }
26570          },
26571          {
26572            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26573            "in": "query",
26574            "name": "dryRun",
26575            "type": "string",
26576            "uniqueItems": true
26577          },
26578          {
26579            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
26580            "in": "query",
26581            "name": "fieldManager",
26582            "type": "string",
26583            "uniqueItems": true
26584          },
26585          {
26586            "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.",
26587            "in": "query",
26588            "name": "force",
26589            "type": "boolean",
26590            "uniqueItems": true
26591          }
26592        ],
26593        "produces": [
26594          "application/json",
26595          "application/yaml",
26596          "application/vnd.kubernetes.protobuf"
26597        ],
26598        "responses": {
26599          "200": {
26600            "description": "OK",
26601            "schema": {
26602              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
26603            }
26604          },
26605          "401": {
26606            "description": "Unauthorized"
26607          }
26608        },
26609        "schemes": [
26610          "https"
26611        ],
26612        "tags": [
26613          "core_v1"
26614        ],
26615        "x-kubernetes-action": "patch",
26616        "x-kubernetes-group-version-kind": {
26617          "group": "autoscaling",
26618          "kind": "Scale",
26619          "version": "v1"
26620        }
26621      },
26622      "put": {
26623        "consumes": [
26624          "*/*"
26625        ],
26626        "description": "replace scale of the specified ReplicationController",
26627        "operationId": "replaceCoreV1NamespacedReplicationControllerScale",
26628        "parameters": [
26629          {
26630            "in": "body",
26631            "name": "body",
26632            "required": true,
26633            "schema": {
26634              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
26635            }
26636          },
26637          {
26638            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26639            "in": "query",
26640            "name": "dryRun",
26641            "type": "string",
26642            "uniqueItems": true
26643          },
26644          {
26645            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26646            "in": "query",
26647            "name": "fieldManager",
26648            "type": "string",
26649            "uniqueItems": true
26650          }
26651        ],
26652        "produces": [
26653          "application/json",
26654          "application/yaml",
26655          "application/vnd.kubernetes.protobuf"
26656        ],
26657        "responses": {
26658          "200": {
26659            "description": "OK",
26660            "schema": {
26661              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
26662            }
26663          },
26664          "201": {
26665            "description": "Created",
26666            "schema": {
26667              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
26668            }
26669          },
26670          "401": {
26671            "description": "Unauthorized"
26672          }
26673        },
26674        "schemes": [
26675          "https"
26676        ],
26677        "tags": [
26678          "core_v1"
26679        ],
26680        "x-kubernetes-action": "put",
26681        "x-kubernetes-group-version-kind": {
26682          "group": "autoscaling",
26683          "kind": "Scale",
26684          "version": "v1"
26685        }
26686      }
26687    },
26688    "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": {
26689      "get": {
26690        "consumes": [
26691          "*/*"
26692        ],
26693        "description": "read status of the specified ReplicationController",
26694        "operationId": "readCoreV1NamespacedReplicationControllerStatus",
26695        "produces": [
26696          "application/json",
26697          "application/yaml",
26698          "application/vnd.kubernetes.protobuf"
26699        ],
26700        "responses": {
26701          "200": {
26702            "description": "OK",
26703            "schema": {
26704              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26705            }
26706          },
26707          "401": {
26708            "description": "Unauthorized"
26709          }
26710        },
26711        "schemes": [
26712          "https"
26713        ],
26714        "tags": [
26715          "core_v1"
26716        ],
26717        "x-kubernetes-action": "get",
26718        "x-kubernetes-group-version-kind": {
26719          "group": "",
26720          "kind": "ReplicationController",
26721          "version": "v1"
26722        }
26723      },
26724      "parameters": [
26725        {
26726          "description": "name of the ReplicationController",
26727          "in": "path",
26728          "name": "name",
26729          "required": true,
26730          "type": "string",
26731          "uniqueItems": true
26732        },
26733        {
26734          "description": "object name and auth scope, such as for teams and projects",
26735          "in": "path",
26736          "name": "namespace",
26737          "required": true,
26738          "type": "string",
26739          "uniqueItems": true
26740        },
26741        {
26742          "description": "If 'true', then the output is pretty printed.",
26743          "in": "query",
26744          "name": "pretty",
26745          "type": "string",
26746          "uniqueItems": true
26747        }
26748      ],
26749      "patch": {
26750        "consumes": [
26751          "application/json-patch+json",
26752          "application/merge-patch+json",
26753          "application/strategic-merge-patch+json"
26754        ],
26755        "description": "partially update status of the specified ReplicationController",
26756        "operationId": "patchCoreV1NamespacedReplicationControllerStatus",
26757        "parameters": [
26758          {
26759            "in": "body",
26760            "name": "body",
26761            "required": true,
26762            "schema": {
26763              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
26764            }
26765          },
26766          {
26767            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26768            "in": "query",
26769            "name": "dryRun",
26770            "type": "string",
26771            "uniqueItems": true
26772          },
26773          {
26774            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
26775            "in": "query",
26776            "name": "fieldManager",
26777            "type": "string",
26778            "uniqueItems": true
26779          },
26780          {
26781            "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.",
26782            "in": "query",
26783            "name": "force",
26784            "type": "boolean",
26785            "uniqueItems": true
26786          }
26787        ],
26788        "produces": [
26789          "application/json",
26790          "application/yaml",
26791          "application/vnd.kubernetes.protobuf"
26792        ],
26793        "responses": {
26794          "200": {
26795            "description": "OK",
26796            "schema": {
26797              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26798            }
26799          },
26800          "401": {
26801            "description": "Unauthorized"
26802          }
26803        },
26804        "schemes": [
26805          "https"
26806        ],
26807        "tags": [
26808          "core_v1"
26809        ],
26810        "x-kubernetes-action": "patch",
26811        "x-kubernetes-group-version-kind": {
26812          "group": "",
26813          "kind": "ReplicationController",
26814          "version": "v1"
26815        }
26816      },
26817      "put": {
26818        "consumes": [
26819          "*/*"
26820        ],
26821        "description": "replace status of the specified ReplicationController",
26822        "operationId": "replaceCoreV1NamespacedReplicationControllerStatus",
26823        "parameters": [
26824          {
26825            "in": "body",
26826            "name": "body",
26827            "required": true,
26828            "schema": {
26829              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26830            }
26831          },
26832          {
26833            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26834            "in": "query",
26835            "name": "dryRun",
26836            "type": "string",
26837            "uniqueItems": true
26838          },
26839          {
26840            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
26841            "in": "query",
26842            "name": "fieldManager",
26843            "type": "string",
26844            "uniqueItems": true
26845          }
26846        ],
26847        "produces": [
26848          "application/json",
26849          "application/yaml",
26850          "application/vnd.kubernetes.protobuf"
26851        ],
26852        "responses": {
26853          "200": {
26854            "description": "OK",
26855            "schema": {
26856              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26857            }
26858          },
26859          "201": {
26860            "description": "Created",
26861            "schema": {
26862              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController"
26863            }
26864          },
26865          "401": {
26866            "description": "Unauthorized"
26867          }
26868        },
26869        "schemes": [
26870          "https"
26871        ],
26872        "tags": [
26873          "core_v1"
26874        ],
26875        "x-kubernetes-action": "put",
26876        "x-kubernetes-group-version-kind": {
26877          "group": "",
26878          "kind": "ReplicationController",
26879          "version": "v1"
26880        }
26881      }
26882    },
26883    "/api/v1/namespaces/{namespace}/resourcequotas": {
26884      "delete": {
26885        "consumes": [
26886          "*/*"
26887        ],
26888        "description": "delete collection of ResourceQuota",
26889        "operationId": "deleteCoreV1CollectionNamespacedResourceQuota",
26890        "parameters": [
26891          {
26892            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
26893            "in": "query",
26894            "name": "allowWatchBookmarks",
26895            "type": "boolean",
26896            "uniqueItems": true
26897          },
26898          {
26899            "in": "body",
26900            "name": "body",
26901            "schema": {
26902              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
26903            }
26904          },
26905          {
26906            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
26907            "in": "query",
26908            "name": "continue",
26909            "type": "string",
26910            "uniqueItems": true
26911          },
26912          {
26913            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
26914            "in": "query",
26915            "name": "dryRun",
26916            "type": "string",
26917            "uniqueItems": true
26918          },
26919          {
26920            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
26921            "in": "query",
26922            "name": "fieldSelector",
26923            "type": "string",
26924            "uniqueItems": true
26925          },
26926          {
26927            "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.",
26928            "in": "query",
26929            "name": "gracePeriodSeconds",
26930            "type": "integer",
26931            "uniqueItems": true
26932          },
26933          {
26934            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
26935            "in": "query",
26936            "name": "labelSelector",
26937            "type": "string",
26938            "uniqueItems": true
26939          },
26940          {
26941            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
26942            "in": "query",
26943            "name": "limit",
26944            "type": "integer",
26945            "uniqueItems": true
26946          },
26947          {
26948            "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.",
26949            "in": "query",
26950            "name": "orphanDependents",
26951            "type": "boolean",
26952            "uniqueItems": true
26953          },
26954          {
26955            "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.",
26956            "in": "query",
26957            "name": "propagationPolicy",
26958            "type": "string",
26959            "uniqueItems": true
26960          },
26961          {
26962            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
26963            "in": "query",
26964            "name": "resourceVersion",
26965            "type": "string",
26966            "uniqueItems": true
26967          },
26968          {
26969            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
26970            "in": "query",
26971            "name": "timeoutSeconds",
26972            "type": "integer",
26973            "uniqueItems": true
26974          },
26975          {
26976            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
26977            "in": "query",
26978            "name": "watch",
26979            "type": "boolean",
26980            "uniqueItems": true
26981          }
26982        ],
26983        "produces": [
26984          "application/json",
26985          "application/yaml",
26986          "application/vnd.kubernetes.protobuf"
26987        ],
26988        "responses": {
26989          "200": {
26990            "description": "OK",
26991            "schema": {
26992              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
26993            }
26994          },
26995          "401": {
26996            "description": "Unauthorized"
26997          }
26998        },
26999        "schemes": [
27000          "https"
27001        ],
27002        "tags": [
27003          "core_v1"
27004        ],
27005        "x-kubernetes-action": "deletecollection",
27006        "x-kubernetes-group-version-kind": {
27007          "group": "",
27008          "kind": "ResourceQuota",
27009          "version": "v1"
27010        }
27011      },
27012      "get": {
27013        "consumes": [
27014          "*/*"
27015        ],
27016        "description": "list or watch objects of kind ResourceQuota",
27017        "operationId": "listCoreV1NamespacedResourceQuota",
27018        "parameters": [
27019          {
27020            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
27021            "in": "query",
27022            "name": "allowWatchBookmarks",
27023            "type": "boolean",
27024            "uniqueItems": true
27025          },
27026          {
27027            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27028            "in": "query",
27029            "name": "continue",
27030            "type": "string",
27031            "uniqueItems": true
27032          },
27033          {
27034            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27035            "in": "query",
27036            "name": "fieldSelector",
27037            "type": "string",
27038            "uniqueItems": true
27039          },
27040          {
27041            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27042            "in": "query",
27043            "name": "labelSelector",
27044            "type": "string",
27045            "uniqueItems": true
27046          },
27047          {
27048            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27049            "in": "query",
27050            "name": "limit",
27051            "type": "integer",
27052            "uniqueItems": true
27053          },
27054          {
27055            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
27056            "in": "query",
27057            "name": "resourceVersion",
27058            "type": "string",
27059            "uniqueItems": true
27060          },
27061          {
27062            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27063            "in": "query",
27064            "name": "timeoutSeconds",
27065            "type": "integer",
27066            "uniqueItems": true
27067          },
27068          {
27069            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27070            "in": "query",
27071            "name": "watch",
27072            "type": "boolean",
27073            "uniqueItems": true
27074          }
27075        ],
27076        "produces": [
27077          "application/json",
27078          "application/yaml",
27079          "application/vnd.kubernetes.protobuf",
27080          "application/json;stream=watch",
27081          "application/vnd.kubernetes.protobuf;stream=watch"
27082        ],
27083        "responses": {
27084          "200": {
27085            "description": "OK",
27086            "schema": {
27087              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
27088            }
27089          },
27090          "401": {
27091            "description": "Unauthorized"
27092          }
27093        },
27094        "schemes": [
27095          "https"
27096        ],
27097        "tags": [
27098          "core_v1"
27099        ],
27100        "x-kubernetes-action": "list",
27101        "x-kubernetes-group-version-kind": {
27102          "group": "",
27103          "kind": "ResourceQuota",
27104          "version": "v1"
27105        }
27106      },
27107      "parameters": [
27108        {
27109          "description": "object name and auth scope, such as for teams and projects",
27110          "in": "path",
27111          "name": "namespace",
27112          "required": true,
27113          "type": "string",
27114          "uniqueItems": true
27115        },
27116        {
27117          "description": "If 'true', then the output is pretty printed.",
27118          "in": "query",
27119          "name": "pretty",
27120          "type": "string",
27121          "uniqueItems": true
27122        }
27123      ],
27124      "post": {
27125        "consumes": [
27126          "*/*"
27127        ],
27128        "description": "create a ResourceQuota",
27129        "operationId": "createCoreV1NamespacedResourceQuota",
27130        "parameters": [
27131          {
27132            "in": "body",
27133            "name": "body",
27134            "required": true,
27135            "schema": {
27136              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27137            }
27138          },
27139          {
27140            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27141            "in": "query",
27142            "name": "dryRun",
27143            "type": "string",
27144            "uniqueItems": true
27145          },
27146          {
27147            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27148            "in": "query",
27149            "name": "fieldManager",
27150            "type": "string",
27151            "uniqueItems": true
27152          }
27153        ],
27154        "produces": [
27155          "application/json",
27156          "application/yaml",
27157          "application/vnd.kubernetes.protobuf"
27158        ],
27159        "responses": {
27160          "200": {
27161            "description": "OK",
27162            "schema": {
27163              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27164            }
27165          },
27166          "201": {
27167            "description": "Created",
27168            "schema": {
27169              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27170            }
27171          },
27172          "202": {
27173            "description": "Accepted",
27174            "schema": {
27175              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27176            }
27177          },
27178          "401": {
27179            "description": "Unauthorized"
27180          }
27181        },
27182        "schemes": [
27183          "https"
27184        ],
27185        "tags": [
27186          "core_v1"
27187        ],
27188        "x-kubernetes-action": "post",
27189        "x-kubernetes-group-version-kind": {
27190          "group": "",
27191          "kind": "ResourceQuota",
27192          "version": "v1"
27193        }
27194      }
27195    },
27196    "/api/v1/namespaces/{namespace}/resourcequotas/{name}": {
27197      "delete": {
27198        "consumes": [
27199          "*/*"
27200        ],
27201        "description": "delete a ResourceQuota",
27202        "operationId": "deleteCoreV1NamespacedResourceQuota",
27203        "parameters": [
27204          {
27205            "in": "body",
27206            "name": "body",
27207            "schema": {
27208              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27209            }
27210          },
27211          {
27212            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27213            "in": "query",
27214            "name": "dryRun",
27215            "type": "string",
27216            "uniqueItems": true
27217          },
27218          {
27219            "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.",
27220            "in": "query",
27221            "name": "gracePeriodSeconds",
27222            "type": "integer",
27223            "uniqueItems": true
27224          },
27225          {
27226            "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.",
27227            "in": "query",
27228            "name": "orphanDependents",
27229            "type": "boolean",
27230            "uniqueItems": true
27231          },
27232          {
27233            "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.",
27234            "in": "query",
27235            "name": "propagationPolicy",
27236            "type": "string",
27237            "uniqueItems": true
27238          }
27239        ],
27240        "produces": [
27241          "application/json",
27242          "application/yaml",
27243          "application/vnd.kubernetes.protobuf"
27244        ],
27245        "responses": {
27246          "200": {
27247            "description": "OK",
27248            "schema": {
27249              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27250            }
27251          },
27252          "202": {
27253            "description": "Accepted",
27254            "schema": {
27255              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27256            }
27257          },
27258          "401": {
27259            "description": "Unauthorized"
27260          }
27261        },
27262        "schemes": [
27263          "https"
27264        ],
27265        "tags": [
27266          "core_v1"
27267        ],
27268        "x-kubernetes-action": "delete",
27269        "x-kubernetes-group-version-kind": {
27270          "group": "",
27271          "kind": "ResourceQuota",
27272          "version": "v1"
27273        }
27274      },
27275      "get": {
27276        "consumes": [
27277          "*/*"
27278        ],
27279        "description": "read the specified ResourceQuota",
27280        "operationId": "readCoreV1NamespacedResourceQuota",
27281        "parameters": [
27282          {
27283            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
27284            "in": "query",
27285            "name": "exact",
27286            "type": "boolean",
27287            "uniqueItems": true
27288          },
27289          {
27290            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
27291            "in": "query",
27292            "name": "export",
27293            "type": "boolean",
27294            "uniqueItems": true
27295          }
27296        ],
27297        "produces": [
27298          "application/json",
27299          "application/yaml",
27300          "application/vnd.kubernetes.protobuf"
27301        ],
27302        "responses": {
27303          "200": {
27304            "description": "OK",
27305            "schema": {
27306              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27307            }
27308          },
27309          "401": {
27310            "description": "Unauthorized"
27311          }
27312        },
27313        "schemes": [
27314          "https"
27315        ],
27316        "tags": [
27317          "core_v1"
27318        ],
27319        "x-kubernetes-action": "get",
27320        "x-kubernetes-group-version-kind": {
27321          "group": "",
27322          "kind": "ResourceQuota",
27323          "version": "v1"
27324        }
27325      },
27326      "parameters": [
27327        {
27328          "description": "name of the ResourceQuota",
27329          "in": "path",
27330          "name": "name",
27331          "required": true,
27332          "type": "string",
27333          "uniqueItems": true
27334        },
27335        {
27336          "description": "object name and auth scope, such as for teams and projects",
27337          "in": "path",
27338          "name": "namespace",
27339          "required": true,
27340          "type": "string",
27341          "uniqueItems": true
27342        },
27343        {
27344          "description": "If 'true', then the output is pretty printed.",
27345          "in": "query",
27346          "name": "pretty",
27347          "type": "string",
27348          "uniqueItems": true
27349        }
27350      ],
27351      "patch": {
27352        "consumes": [
27353          "application/json-patch+json",
27354          "application/merge-patch+json",
27355          "application/strategic-merge-patch+json"
27356        ],
27357        "description": "partially update the specified ResourceQuota",
27358        "operationId": "patchCoreV1NamespacedResourceQuota",
27359        "parameters": [
27360          {
27361            "in": "body",
27362            "name": "body",
27363            "required": true,
27364            "schema": {
27365              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27366            }
27367          },
27368          {
27369            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27370            "in": "query",
27371            "name": "dryRun",
27372            "type": "string",
27373            "uniqueItems": true
27374          },
27375          {
27376            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
27377            "in": "query",
27378            "name": "fieldManager",
27379            "type": "string",
27380            "uniqueItems": true
27381          },
27382          {
27383            "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.",
27384            "in": "query",
27385            "name": "force",
27386            "type": "boolean",
27387            "uniqueItems": true
27388          }
27389        ],
27390        "produces": [
27391          "application/json",
27392          "application/yaml",
27393          "application/vnd.kubernetes.protobuf"
27394        ],
27395        "responses": {
27396          "200": {
27397            "description": "OK",
27398            "schema": {
27399              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27400            }
27401          },
27402          "401": {
27403            "description": "Unauthorized"
27404          }
27405        },
27406        "schemes": [
27407          "https"
27408        ],
27409        "tags": [
27410          "core_v1"
27411        ],
27412        "x-kubernetes-action": "patch",
27413        "x-kubernetes-group-version-kind": {
27414          "group": "",
27415          "kind": "ResourceQuota",
27416          "version": "v1"
27417        }
27418      },
27419      "put": {
27420        "consumes": [
27421          "*/*"
27422        ],
27423        "description": "replace the specified ResourceQuota",
27424        "operationId": "replaceCoreV1NamespacedResourceQuota",
27425        "parameters": [
27426          {
27427            "in": "body",
27428            "name": "body",
27429            "required": true,
27430            "schema": {
27431              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27432            }
27433          },
27434          {
27435            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27436            "in": "query",
27437            "name": "dryRun",
27438            "type": "string",
27439            "uniqueItems": true
27440          },
27441          {
27442            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27443            "in": "query",
27444            "name": "fieldManager",
27445            "type": "string",
27446            "uniqueItems": true
27447          }
27448        ],
27449        "produces": [
27450          "application/json",
27451          "application/yaml",
27452          "application/vnd.kubernetes.protobuf"
27453        ],
27454        "responses": {
27455          "200": {
27456            "description": "OK",
27457            "schema": {
27458              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27459            }
27460          },
27461          "201": {
27462            "description": "Created",
27463            "schema": {
27464              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27465            }
27466          },
27467          "401": {
27468            "description": "Unauthorized"
27469          }
27470        },
27471        "schemes": [
27472          "https"
27473        ],
27474        "tags": [
27475          "core_v1"
27476        ],
27477        "x-kubernetes-action": "put",
27478        "x-kubernetes-group-version-kind": {
27479          "group": "",
27480          "kind": "ResourceQuota",
27481          "version": "v1"
27482        }
27483      }
27484    },
27485    "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": {
27486      "get": {
27487        "consumes": [
27488          "*/*"
27489        ],
27490        "description": "read status of the specified ResourceQuota",
27491        "operationId": "readCoreV1NamespacedResourceQuotaStatus",
27492        "produces": [
27493          "application/json",
27494          "application/yaml",
27495          "application/vnd.kubernetes.protobuf"
27496        ],
27497        "responses": {
27498          "200": {
27499            "description": "OK",
27500            "schema": {
27501              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27502            }
27503          },
27504          "401": {
27505            "description": "Unauthorized"
27506          }
27507        },
27508        "schemes": [
27509          "https"
27510        ],
27511        "tags": [
27512          "core_v1"
27513        ],
27514        "x-kubernetes-action": "get",
27515        "x-kubernetes-group-version-kind": {
27516          "group": "",
27517          "kind": "ResourceQuota",
27518          "version": "v1"
27519        }
27520      },
27521      "parameters": [
27522        {
27523          "description": "name of the ResourceQuota",
27524          "in": "path",
27525          "name": "name",
27526          "required": true,
27527          "type": "string",
27528          "uniqueItems": true
27529        },
27530        {
27531          "description": "object name and auth scope, such as for teams and projects",
27532          "in": "path",
27533          "name": "namespace",
27534          "required": true,
27535          "type": "string",
27536          "uniqueItems": true
27537        },
27538        {
27539          "description": "If 'true', then the output is pretty printed.",
27540          "in": "query",
27541          "name": "pretty",
27542          "type": "string",
27543          "uniqueItems": true
27544        }
27545      ],
27546      "patch": {
27547        "consumes": [
27548          "application/json-patch+json",
27549          "application/merge-patch+json",
27550          "application/strategic-merge-patch+json"
27551        ],
27552        "description": "partially update status of the specified ResourceQuota",
27553        "operationId": "patchCoreV1NamespacedResourceQuotaStatus",
27554        "parameters": [
27555          {
27556            "in": "body",
27557            "name": "body",
27558            "required": true,
27559            "schema": {
27560              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
27561            }
27562          },
27563          {
27564            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27565            "in": "query",
27566            "name": "dryRun",
27567            "type": "string",
27568            "uniqueItems": true
27569          },
27570          {
27571            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
27572            "in": "query",
27573            "name": "fieldManager",
27574            "type": "string",
27575            "uniqueItems": true
27576          },
27577          {
27578            "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.",
27579            "in": "query",
27580            "name": "force",
27581            "type": "boolean",
27582            "uniqueItems": true
27583          }
27584        ],
27585        "produces": [
27586          "application/json",
27587          "application/yaml",
27588          "application/vnd.kubernetes.protobuf"
27589        ],
27590        "responses": {
27591          "200": {
27592            "description": "OK",
27593            "schema": {
27594              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27595            }
27596          },
27597          "401": {
27598            "description": "Unauthorized"
27599          }
27600        },
27601        "schemes": [
27602          "https"
27603        ],
27604        "tags": [
27605          "core_v1"
27606        ],
27607        "x-kubernetes-action": "patch",
27608        "x-kubernetes-group-version-kind": {
27609          "group": "",
27610          "kind": "ResourceQuota",
27611          "version": "v1"
27612        }
27613      },
27614      "put": {
27615        "consumes": [
27616          "*/*"
27617        ],
27618        "description": "replace status of the specified ResourceQuota",
27619        "operationId": "replaceCoreV1NamespacedResourceQuotaStatus",
27620        "parameters": [
27621          {
27622            "in": "body",
27623            "name": "body",
27624            "required": true,
27625            "schema": {
27626              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27627            }
27628          },
27629          {
27630            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27631            "in": "query",
27632            "name": "dryRun",
27633            "type": "string",
27634            "uniqueItems": true
27635          },
27636          {
27637            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27638            "in": "query",
27639            "name": "fieldManager",
27640            "type": "string",
27641            "uniqueItems": true
27642          }
27643        ],
27644        "produces": [
27645          "application/json",
27646          "application/yaml",
27647          "application/vnd.kubernetes.protobuf"
27648        ],
27649        "responses": {
27650          "200": {
27651            "description": "OK",
27652            "schema": {
27653              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27654            }
27655          },
27656          "201": {
27657            "description": "Created",
27658            "schema": {
27659              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota"
27660            }
27661          },
27662          "401": {
27663            "description": "Unauthorized"
27664          }
27665        },
27666        "schemes": [
27667          "https"
27668        ],
27669        "tags": [
27670          "core_v1"
27671        ],
27672        "x-kubernetes-action": "put",
27673        "x-kubernetes-group-version-kind": {
27674          "group": "",
27675          "kind": "ResourceQuota",
27676          "version": "v1"
27677        }
27678      }
27679    },
27680    "/api/v1/namespaces/{namespace}/secrets": {
27681      "delete": {
27682        "consumes": [
27683          "*/*"
27684        ],
27685        "description": "delete collection of Secret",
27686        "operationId": "deleteCoreV1CollectionNamespacedSecret",
27687        "parameters": [
27688          {
27689            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
27690            "in": "query",
27691            "name": "allowWatchBookmarks",
27692            "type": "boolean",
27693            "uniqueItems": true
27694          },
27695          {
27696            "in": "body",
27697            "name": "body",
27698            "schema": {
27699              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
27700            }
27701          },
27702          {
27703            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27704            "in": "query",
27705            "name": "continue",
27706            "type": "string",
27707            "uniqueItems": true
27708          },
27709          {
27710            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27711            "in": "query",
27712            "name": "dryRun",
27713            "type": "string",
27714            "uniqueItems": true
27715          },
27716          {
27717            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27718            "in": "query",
27719            "name": "fieldSelector",
27720            "type": "string",
27721            "uniqueItems": true
27722          },
27723          {
27724            "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.",
27725            "in": "query",
27726            "name": "gracePeriodSeconds",
27727            "type": "integer",
27728            "uniqueItems": true
27729          },
27730          {
27731            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27732            "in": "query",
27733            "name": "labelSelector",
27734            "type": "string",
27735            "uniqueItems": true
27736          },
27737          {
27738            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27739            "in": "query",
27740            "name": "limit",
27741            "type": "integer",
27742            "uniqueItems": true
27743          },
27744          {
27745            "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.",
27746            "in": "query",
27747            "name": "orphanDependents",
27748            "type": "boolean",
27749            "uniqueItems": true
27750          },
27751          {
27752            "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.",
27753            "in": "query",
27754            "name": "propagationPolicy",
27755            "type": "string",
27756            "uniqueItems": true
27757          },
27758          {
27759            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
27760            "in": "query",
27761            "name": "resourceVersion",
27762            "type": "string",
27763            "uniqueItems": true
27764          },
27765          {
27766            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27767            "in": "query",
27768            "name": "timeoutSeconds",
27769            "type": "integer",
27770            "uniqueItems": true
27771          },
27772          {
27773            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27774            "in": "query",
27775            "name": "watch",
27776            "type": "boolean",
27777            "uniqueItems": true
27778          }
27779        ],
27780        "produces": [
27781          "application/json",
27782          "application/yaml",
27783          "application/vnd.kubernetes.protobuf"
27784        ],
27785        "responses": {
27786          "200": {
27787            "description": "OK",
27788            "schema": {
27789              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
27790            }
27791          },
27792          "401": {
27793            "description": "Unauthorized"
27794          }
27795        },
27796        "schemes": [
27797          "https"
27798        ],
27799        "tags": [
27800          "core_v1"
27801        ],
27802        "x-kubernetes-action": "deletecollection",
27803        "x-kubernetes-group-version-kind": {
27804          "group": "",
27805          "kind": "Secret",
27806          "version": "v1"
27807        }
27808      },
27809      "get": {
27810        "consumes": [
27811          "*/*"
27812        ],
27813        "description": "list or watch objects of kind Secret",
27814        "operationId": "listCoreV1NamespacedSecret",
27815        "parameters": [
27816          {
27817            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
27818            "in": "query",
27819            "name": "allowWatchBookmarks",
27820            "type": "boolean",
27821            "uniqueItems": true
27822          },
27823          {
27824            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
27825            "in": "query",
27826            "name": "continue",
27827            "type": "string",
27828            "uniqueItems": true
27829          },
27830          {
27831            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
27832            "in": "query",
27833            "name": "fieldSelector",
27834            "type": "string",
27835            "uniqueItems": true
27836          },
27837          {
27838            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
27839            "in": "query",
27840            "name": "labelSelector",
27841            "type": "string",
27842            "uniqueItems": true
27843          },
27844          {
27845            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
27846            "in": "query",
27847            "name": "limit",
27848            "type": "integer",
27849            "uniqueItems": true
27850          },
27851          {
27852            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
27853            "in": "query",
27854            "name": "resourceVersion",
27855            "type": "string",
27856            "uniqueItems": true
27857          },
27858          {
27859            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
27860            "in": "query",
27861            "name": "timeoutSeconds",
27862            "type": "integer",
27863            "uniqueItems": true
27864          },
27865          {
27866            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
27867            "in": "query",
27868            "name": "watch",
27869            "type": "boolean",
27870            "uniqueItems": true
27871          }
27872        ],
27873        "produces": [
27874          "application/json",
27875          "application/yaml",
27876          "application/vnd.kubernetes.protobuf",
27877          "application/json;stream=watch",
27878          "application/vnd.kubernetes.protobuf;stream=watch"
27879        ],
27880        "responses": {
27881          "200": {
27882            "description": "OK",
27883            "schema": {
27884              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
27885            }
27886          },
27887          "401": {
27888            "description": "Unauthorized"
27889          }
27890        },
27891        "schemes": [
27892          "https"
27893        ],
27894        "tags": [
27895          "core_v1"
27896        ],
27897        "x-kubernetes-action": "list",
27898        "x-kubernetes-group-version-kind": {
27899          "group": "",
27900          "kind": "Secret",
27901          "version": "v1"
27902        }
27903      },
27904      "parameters": [
27905        {
27906          "description": "object name and auth scope, such as for teams and projects",
27907          "in": "path",
27908          "name": "namespace",
27909          "required": true,
27910          "type": "string",
27911          "uniqueItems": true
27912        },
27913        {
27914          "description": "If 'true', then the output is pretty printed.",
27915          "in": "query",
27916          "name": "pretty",
27917          "type": "string",
27918          "uniqueItems": true
27919        }
27920      ],
27921      "post": {
27922        "consumes": [
27923          "*/*"
27924        ],
27925        "description": "create a Secret",
27926        "operationId": "createCoreV1NamespacedSecret",
27927        "parameters": [
27928          {
27929            "in": "body",
27930            "name": "body",
27931            "required": true,
27932            "schema": {
27933              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
27934            }
27935          },
27936          {
27937            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
27938            "in": "query",
27939            "name": "dryRun",
27940            "type": "string",
27941            "uniqueItems": true
27942          },
27943          {
27944            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
27945            "in": "query",
27946            "name": "fieldManager",
27947            "type": "string",
27948            "uniqueItems": true
27949          }
27950        ],
27951        "produces": [
27952          "application/json",
27953          "application/yaml",
27954          "application/vnd.kubernetes.protobuf"
27955        ],
27956        "responses": {
27957          "200": {
27958            "description": "OK",
27959            "schema": {
27960              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
27961            }
27962          },
27963          "201": {
27964            "description": "Created",
27965            "schema": {
27966              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
27967            }
27968          },
27969          "202": {
27970            "description": "Accepted",
27971            "schema": {
27972              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
27973            }
27974          },
27975          "401": {
27976            "description": "Unauthorized"
27977          }
27978        },
27979        "schemes": [
27980          "https"
27981        ],
27982        "tags": [
27983          "core_v1"
27984        ],
27985        "x-kubernetes-action": "post",
27986        "x-kubernetes-group-version-kind": {
27987          "group": "",
27988          "kind": "Secret",
27989          "version": "v1"
27990        }
27991      }
27992    },
27993    "/api/v1/namespaces/{namespace}/secrets/{name}": {
27994      "delete": {
27995        "consumes": [
27996          "*/*"
27997        ],
27998        "description": "delete a Secret",
27999        "operationId": "deleteCoreV1NamespacedSecret",
28000        "parameters": [
28001          {
28002            "in": "body",
28003            "name": "body",
28004            "schema": {
28005              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28006            }
28007          },
28008          {
28009            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28010            "in": "query",
28011            "name": "dryRun",
28012            "type": "string",
28013            "uniqueItems": true
28014          },
28015          {
28016            "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.",
28017            "in": "query",
28018            "name": "gracePeriodSeconds",
28019            "type": "integer",
28020            "uniqueItems": true
28021          },
28022          {
28023            "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.",
28024            "in": "query",
28025            "name": "orphanDependents",
28026            "type": "boolean",
28027            "uniqueItems": true
28028          },
28029          {
28030            "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.",
28031            "in": "query",
28032            "name": "propagationPolicy",
28033            "type": "string",
28034            "uniqueItems": true
28035          }
28036        ],
28037        "produces": [
28038          "application/json",
28039          "application/yaml",
28040          "application/vnd.kubernetes.protobuf"
28041        ],
28042        "responses": {
28043          "200": {
28044            "description": "OK",
28045            "schema": {
28046              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28047            }
28048          },
28049          "202": {
28050            "description": "Accepted",
28051            "schema": {
28052              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28053            }
28054          },
28055          "401": {
28056            "description": "Unauthorized"
28057          }
28058        },
28059        "schemes": [
28060          "https"
28061        ],
28062        "tags": [
28063          "core_v1"
28064        ],
28065        "x-kubernetes-action": "delete",
28066        "x-kubernetes-group-version-kind": {
28067          "group": "",
28068          "kind": "Secret",
28069          "version": "v1"
28070        }
28071      },
28072      "get": {
28073        "consumes": [
28074          "*/*"
28075        ],
28076        "description": "read the specified Secret",
28077        "operationId": "readCoreV1NamespacedSecret",
28078        "parameters": [
28079          {
28080            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
28081            "in": "query",
28082            "name": "exact",
28083            "type": "boolean",
28084            "uniqueItems": true
28085          },
28086          {
28087            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
28088            "in": "query",
28089            "name": "export",
28090            "type": "boolean",
28091            "uniqueItems": true
28092          }
28093        ],
28094        "produces": [
28095          "application/json",
28096          "application/yaml",
28097          "application/vnd.kubernetes.protobuf"
28098        ],
28099        "responses": {
28100          "200": {
28101            "description": "OK",
28102            "schema": {
28103              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28104            }
28105          },
28106          "401": {
28107            "description": "Unauthorized"
28108          }
28109        },
28110        "schemes": [
28111          "https"
28112        ],
28113        "tags": [
28114          "core_v1"
28115        ],
28116        "x-kubernetes-action": "get",
28117        "x-kubernetes-group-version-kind": {
28118          "group": "",
28119          "kind": "Secret",
28120          "version": "v1"
28121        }
28122      },
28123      "parameters": [
28124        {
28125          "description": "name of the Secret",
28126          "in": "path",
28127          "name": "name",
28128          "required": true,
28129          "type": "string",
28130          "uniqueItems": true
28131        },
28132        {
28133          "description": "object name and auth scope, such as for teams and projects",
28134          "in": "path",
28135          "name": "namespace",
28136          "required": true,
28137          "type": "string",
28138          "uniqueItems": true
28139        },
28140        {
28141          "description": "If 'true', then the output is pretty printed.",
28142          "in": "query",
28143          "name": "pretty",
28144          "type": "string",
28145          "uniqueItems": true
28146        }
28147      ],
28148      "patch": {
28149        "consumes": [
28150          "application/json-patch+json",
28151          "application/merge-patch+json",
28152          "application/strategic-merge-patch+json"
28153        ],
28154        "description": "partially update the specified Secret",
28155        "operationId": "patchCoreV1NamespacedSecret",
28156        "parameters": [
28157          {
28158            "in": "body",
28159            "name": "body",
28160            "required": true,
28161            "schema": {
28162              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28163            }
28164          },
28165          {
28166            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28167            "in": "query",
28168            "name": "dryRun",
28169            "type": "string",
28170            "uniqueItems": true
28171          },
28172          {
28173            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
28174            "in": "query",
28175            "name": "fieldManager",
28176            "type": "string",
28177            "uniqueItems": true
28178          },
28179          {
28180            "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.",
28181            "in": "query",
28182            "name": "force",
28183            "type": "boolean",
28184            "uniqueItems": true
28185          }
28186        ],
28187        "produces": [
28188          "application/json",
28189          "application/yaml",
28190          "application/vnd.kubernetes.protobuf"
28191        ],
28192        "responses": {
28193          "200": {
28194            "description": "OK",
28195            "schema": {
28196              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28197            }
28198          },
28199          "401": {
28200            "description": "Unauthorized"
28201          }
28202        },
28203        "schemes": [
28204          "https"
28205        ],
28206        "tags": [
28207          "core_v1"
28208        ],
28209        "x-kubernetes-action": "patch",
28210        "x-kubernetes-group-version-kind": {
28211          "group": "",
28212          "kind": "Secret",
28213          "version": "v1"
28214        }
28215      },
28216      "put": {
28217        "consumes": [
28218          "*/*"
28219        ],
28220        "description": "replace the specified Secret",
28221        "operationId": "replaceCoreV1NamespacedSecret",
28222        "parameters": [
28223          {
28224            "in": "body",
28225            "name": "body",
28226            "required": true,
28227            "schema": {
28228              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28229            }
28230          },
28231          {
28232            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28233            "in": "query",
28234            "name": "dryRun",
28235            "type": "string",
28236            "uniqueItems": true
28237          },
28238          {
28239            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28240            "in": "query",
28241            "name": "fieldManager",
28242            "type": "string",
28243            "uniqueItems": true
28244          }
28245        ],
28246        "produces": [
28247          "application/json",
28248          "application/yaml",
28249          "application/vnd.kubernetes.protobuf"
28250        ],
28251        "responses": {
28252          "200": {
28253            "description": "OK",
28254            "schema": {
28255              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28256            }
28257          },
28258          "201": {
28259            "description": "Created",
28260            "schema": {
28261              "$ref": "#/definitions/io.k8s.api.core.v1.Secret"
28262            }
28263          },
28264          "401": {
28265            "description": "Unauthorized"
28266          }
28267        },
28268        "schemes": [
28269          "https"
28270        ],
28271        "tags": [
28272          "core_v1"
28273        ],
28274        "x-kubernetes-action": "put",
28275        "x-kubernetes-group-version-kind": {
28276          "group": "",
28277          "kind": "Secret",
28278          "version": "v1"
28279        }
28280      }
28281    },
28282    "/api/v1/namespaces/{namespace}/serviceaccounts": {
28283      "delete": {
28284        "consumes": [
28285          "*/*"
28286        ],
28287        "description": "delete collection of ServiceAccount",
28288        "operationId": "deleteCoreV1CollectionNamespacedServiceAccount",
28289        "parameters": [
28290          {
28291            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
28292            "in": "query",
28293            "name": "allowWatchBookmarks",
28294            "type": "boolean",
28295            "uniqueItems": true
28296          },
28297          {
28298            "in": "body",
28299            "name": "body",
28300            "schema": {
28301              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28302            }
28303          },
28304          {
28305            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28306            "in": "query",
28307            "name": "continue",
28308            "type": "string",
28309            "uniqueItems": true
28310          },
28311          {
28312            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28313            "in": "query",
28314            "name": "dryRun",
28315            "type": "string",
28316            "uniqueItems": true
28317          },
28318          {
28319            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28320            "in": "query",
28321            "name": "fieldSelector",
28322            "type": "string",
28323            "uniqueItems": true
28324          },
28325          {
28326            "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.",
28327            "in": "query",
28328            "name": "gracePeriodSeconds",
28329            "type": "integer",
28330            "uniqueItems": true
28331          },
28332          {
28333            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28334            "in": "query",
28335            "name": "labelSelector",
28336            "type": "string",
28337            "uniqueItems": true
28338          },
28339          {
28340            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28341            "in": "query",
28342            "name": "limit",
28343            "type": "integer",
28344            "uniqueItems": true
28345          },
28346          {
28347            "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.",
28348            "in": "query",
28349            "name": "orphanDependents",
28350            "type": "boolean",
28351            "uniqueItems": true
28352          },
28353          {
28354            "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.",
28355            "in": "query",
28356            "name": "propagationPolicy",
28357            "type": "string",
28358            "uniqueItems": true
28359          },
28360          {
28361            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
28362            "in": "query",
28363            "name": "resourceVersion",
28364            "type": "string",
28365            "uniqueItems": true
28366          },
28367          {
28368            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28369            "in": "query",
28370            "name": "timeoutSeconds",
28371            "type": "integer",
28372            "uniqueItems": true
28373          },
28374          {
28375            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28376            "in": "query",
28377            "name": "watch",
28378            "type": "boolean",
28379            "uniqueItems": true
28380          }
28381        ],
28382        "produces": [
28383          "application/json",
28384          "application/yaml",
28385          "application/vnd.kubernetes.protobuf"
28386        ],
28387        "responses": {
28388          "200": {
28389            "description": "OK",
28390            "schema": {
28391              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28392            }
28393          },
28394          "401": {
28395            "description": "Unauthorized"
28396          }
28397        },
28398        "schemes": [
28399          "https"
28400        ],
28401        "tags": [
28402          "core_v1"
28403        ],
28404        "x-kubernetes-action": "deletecollection",
28405        "x-kubernetes-group-version-kind": {
28406          "group": "",
28407          "kind": "ServiceAccount",
28408          "version": "v1"
28409        }
28410      },
28411      "get": {
28412        "consumes": [
28413          "*/*"
28414        ],
28415        "description": "list or watch objects of kind ServiceAccount",
28416        "operationId": "listCoreV1NamespacedServiceAccount",
28417        "parameters": [
28418          {
28419            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
28420            "in": "query",
28421            "name": "allowWatchBookmarks",
28422            "type": "boolean",
28423            "uniqueItems": true
28424          },
28425          {
28426            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28427            "in": "query",
28428            "name": "continue",
28429            "type": "string",
28430            "uniqueItems": true
28431          },
28432          {
28433            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
28434            "in": "query",
28435            "name": "fieldSelector",
28436            "type": "string",
28437            "uniqueItems": true
28438          },
28439          {
28440            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
28441            "in": "query",
28442            "name": "labelSelector",
28443            "type": "string",
28444            "uniqueItems": true
28445          },
28446          {
28447            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
28448            "in": "query",
28449            "name": "limit",
28450            "type": "integer",
28451            "uniqueItems": true
28452          },
28453          {
28454            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
28455            "in": "query",
28456            "name": "resourceVersion",
28457            "type": "string",
28458            "uniqueItems": true
28459          },
28460          {
28461            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
28462            "in": "query",
28463            "name": "timeoutSeconds",
28464            "type": "integer",
28465            "uniqueItems": true
28466          },
28467          {
28468            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
28469            "in": "query",
28470            "name": "watch",
28471            "type": "boolean",
28472            "uniqueItems": true
28473          }
28474        ],
28475        "produces": [
28476          "application/json",
28477          "application/yaml",
28478          "application/vnd.kubernetes.protobuf",
28479          "application/json;stream=watch",
28480          "application/vnd.kubernetes.protobuf;stream=watch"
28481        ],
28482        "responses": {
28483          "200": {
28484            "description": "OK",
28485            "schema": {
28486              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
28487            }
28488          },
28489          "401": {
28490            "description": "Unauthorized"
28491          }
28492        },
28493        "schemes": [
28494          "https"
28495        ],
28496        "tags": [
28497          "core_v1"
28498        ],
28499        "x-kubernetes-action": "list",
28500        "x-kubernetes-group-version-kind": {
28501          "group": "",
28502          "kind": "ServiceAccount",
28503          "version": "v1"
28504        }
28505      },
28506      "parameters": [
28507        {
28508          "description": "object name and auth scope, such as for teams and projects",
28509          "in": "path",
28510          "name": "namespace",
28511          "required": true,
28512          "type": "string",
28513          "uniqueItems": true
28514        },
28515        {
28516          "description": "If 'true', then the output is pretty printed.",
28517          "in": "query",
28518          "name": "pretty",
28519          "type": "string",
28520          "uniqueItems": true
28521        }
28522      ],
28523      "post": {
28524        "consumes": [
28525          "*/*"
28526        ],
28527        "description": "create a ServiceAccount",
28528        "operationId": "createCoreV1NamespacedServiceAccount",
28529        "parameters": [
28530          {
28531            "in": "body",
28532            "name": "body",
28533            "required": true,
28534            "schema": {
28535              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28536            }
28537          },
28538          {
28539            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28540            "in": "query",
28541            "name": "dryRun",
28542            "type": "string",
28543            "uniqueItems": true
28544          },
28545          {
28546            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28547            "in": "query",
28548            "name": "fieldManager",
28549            "type": "string",
28550            "uniqueItems": true
28551          }
28552        ],
28553        "produces": [
28554          "application/json",
28555          "application/yaml",
28556          "application/vnd.kubernetes.protobuf"
28557        ],
28558        "responses": {
28559          "200": {
28560            "description": "OK",
28561            "schema": {
28562              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28563            }
28564          },
28565          "201": {
28566            "description": "Created",
28567            "schema": {
28568              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28569            }
28570          },
28571          "202": {
28572            "description": "Accepted",
28573            "schema": {
28574              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28575            }
28576          },
28577          "401": {
28578            "description": "Unauthorized"
28579          }
28580        },
28581        "schemes": [
28582          "https"
28583        ],
28584        "tags": [
28585          "core_v1"
28586        ],
28587        "x-kubernetes-action": "post",
28588        "x-kubernetes-group-version-kind": {
28589          "group": "",
28590          "kind": "ServiceAccount",
28591          "version": "v1"
28592        }
28593      }
28594    },
28595    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
28596      "delete": {
28597        "consumes": [
28598          "*/*"
28599        ],
28600        "description": "delete a ServiceAccount",
28601        "operationId": "deleteCoreV1NamespacedServiceAccount",
28602        "parameters": [
28603          {
28604            "in": "body",
28605            "name": "body",
28606            "schema": {
28607              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
28608            }
28609          },
28610          {
28611            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28612            "in": "query",
28613            "name": "dryRun",
28614            "type": "string",
28615            "uniqueItems": true
28616          },
28617          {
28618            "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.",
28619            "in": "query",
28620            "name": "gracePeriodSeconds",
28621            "type": "integer",
28622            "uniqueItems": true
28623          },
28624          {
28625            "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.",
28626            "in": "query",
28627            "name": "orphanDependents",
28628            "type": "boolean",
28629            "uniqueItems": true
28630          },
28631          {
28632            "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.",
28633            "in": "query",
28634            "name": "propagationPolicy",
28635            "type": "string",
28636            "uniqueItems": true
28637          }
28638        ],
28639        "produces": [
28640          "application/json",
28641          "application/yaml",
28642          "application/vnd.kubernetes.protobuf"
28643        ],
28644        "responses": {
28645          "200": {
28646            "description": "OK",
28647            "schema": {
28648              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28649            }
28650          },
28651          "202": {
28652            "description": "Accepted",
28653            "schema": {
28654              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
28655            }
28656          },
28657          "401": {
28658            "description": "Unauthorized"
28659          }
28660        },
28661        "schemes": [
28662          "https"
28663        ],
28664        "tags": [
28665          "core_v1"
28666        ],
28667        "x-kubernetes-action": "delete",
28668        "x-kubernetes-group-version-kind": {
28669          "group": "",
28670          "kind": "ServiceAccount",
28671          "version": "v1"
28672        }
28673      },
28674      "get": {
28675        "consumes": [
28676          "*/*"
28677        ],
28678        "description": "read the specified ServiceAccount",
28679        "operationId": "readCoreV1NamespacedServiceAccount",
28680        "parameters": [
28681          {
28682            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
28683            "in": "query",
28684            "name": "exact",
28685            "type": "boolean",
28686            "uniqueItems": true
28687          },
28688          {
28689            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
28690            "in": "query",
28691            "name": "export",
28692            "type": "boolean",
28693            "uniqueItems": true
28694          }
28695        ],
28696        "produces": [
28697          "application/json",
28698          "application/yaml",
28699          "application/vnd.kubernetes.protobuf"
28700        ],
28701        "responses": {
28702          "200": {
28703            "description": "OK",
28704            "schema": {
28705              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28706            }
28707          },
28708          "401": {
28709            "description": "Unauthorized"
28710          }
28711        },
28712        "schemes": [
28713          "https"
28714        ],
28715        "tags": [
28716          "core_v1"
28717        ],
28718        "x-kubernetes-action": "get",
28719        "x-kubernetes-group-version-kind": {
28720          "group": "",
28721          "kind": "ServiceAccount",
28722          "version": "v1"
28723        }
28724      },
28725      "parameters": [
28726        {
28727          "description": "name of the ServiceAccount",
28728          "in": "path",
28729          "name": "name",
28730          "required": true,
28731          "type": "string",
28732          "uniqueItems": true
28733        },
28734        {
28735          "description": "object name and auth scope, such as for teams and projects",
28736          "in": "path",
28737          "name": "namespace",
28738          "required": true,
28739          "type": "string",
28740          "uniqueItems": true
28741        },
28742        {
28743          "description": "If 'true', then the output is pretty printed.",
28744          "in": "query",
28745          "name": "pretty",
28746          "type": "string",
28747          "uniqueItems": true
28748        }
28749      ],
28750      "patch": {
28751        "consumes": [
28752          "application/json-patch+json",
28753          "application/merge-patch+json",
28754          "application/strategic-merge-patch+json"
28755        ],
28756        "description": "partially update the specified ServiceAccount",
28757        "operationId": "patchCoreV1NamespacedServiceAccount",
28758        "parameters": [
28759          {
28760            "in": "body",
28761            "name": "body",
28762            "required": true,
28763            "schema": {
28764              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
28765            }
28766          },
28767          {
28768            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28769            "in": "query",
28770            "name": "dryRun",
28771            "type": "string",
28772            "uniqueItems": true
28773          },
28774          {
28775            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
28776            "in": "query",
28777            "name": "fieldManager",
28778            "type": "string",
28779            "uniqueItems": true
28780          },
28781          {
28782            "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.",
28783            "in": "query",
28784            "name": "force",
28785            "type": "boolean",
28786            "uniqueItems": true
28787          }
28788        ],
28789        "produces": [
28790          "application/json",
28791          "application/yaml",
28792          "application/vnd.kubernetes.protobuf"
28793        ],
28794        "responses": {
28795          "200": {
28796            "description": "OK",
28797            "schema": {
28798              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28799            }
28800          },
28801          "401": {
28802            "description": "Unauthorized"
28803          }
28804        },
28805        "schemes": [
28806          "https"
28807        ],
28808        "tags": [
28809          "core_v1"
28810        ],
28811        "x-kubernetes-action": "patch",
28812        "x-kubernetes-group-version-kind": {
28813          "group": "",
28814          "kind": "ServiceAccount",
28815          "version": "v1"
28816        }
28817      },
28818      "put": {
28819        "consumes": [
28820          "*/*"
28821        ],
28822        "description": "replace the specified ServiceAccount",
28823        "operationId": "replaceCoreV1NamespacedServiceAccount",
28824        "parameters": [
28825          {
28826            "in": "body",
28827            "name": "body",
28828            "required": true,
28829            "schema": {
28830              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28831            }
28832          },
28833          {
28834            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28835            "in": "query",
28836            "name": "dryRun",
28837            "type": "string",
28838            "uniqueItems": true
28839          },
28840          {
28841            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28842            "in": "query",
28843            "name": "fieldManager",
28844            "type": "string",
28845            "uniqueItems": true
28846          }
28847        ],
28848        "produces": [
28849          "application/json",
28850          "application/yaml",
28851          "application/vnd.kubernetes.protobuf"
28852        ],
28853        "responses": {
28854          "200": {
28855            "description": "OK",
28856            "schema": {
28857              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28858            }
28859          },
28860          "201": {
28861            "description": "Created",
28862            "schema": {
28863              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount"
28864            }
28865          },
28866          "401": {
28867            "description": "Unauthorized"
28868          }
28869        },
28870        "schemes": [
28871          "https"
28872        ],
28873        "tags": [
28874          "core_v1"
28875        ],
28876        "x-kubernetes-action": "put",
28877        "x-kubernetes-group-version-kind": {
28878          "group": "",
28879          "kind": "ServiceAccount",
28880          "version": "v1"
28881        }
28882      }
28883    },
28884    "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token": {
28885      "parameters": [
28886        {
28887          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
28888          "in": "query",
28889          "name": "dryRun",
28890          "type": "string",
28891          "uniqueItems": true
28892        },
28893        {
28894          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
28895          "in": "query",
28896          "name": "fieldManager",
28897          "type": "string",
28898          "uniqueItems": true
28899        },
28900        {
28901          "description": "name of the TokenRequest",
28902          "in": "path",
28903          "name": "name",
28904          "required": true,
28905          "type": "string",
28906          "uniqueItems": true
28907        },
28908        {
28909          "description": "object name and auth scope, such as for teams and projects",
28910          "in": "path",
28911          "name": "namespace",
28912          "required": true,
28913          "type": "string",
28914          "uniqueItems": true
28915        },
28916        {
28917          "description": "If 'true', then the output is pretty printed.",
28918          "in": "query",
28919          "name": "pretty",
28920          "type": "string",
28921          "uniqueItems": true
28922        }
28923      ],
28924      "post": {
28925        "consumes": [
28926          "*/*"
28927        ],
28928        "description": "create token of a ServiceAccount",
28929        "operationId": "createCoreV1NamespacedServiceAccountToken",
28930        "parameters": [
28931          {
28932            "in": "body",
28933            "name": "body",
28934            "required": true,
28935            "schema": {
28936              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
28937            }
28938          }
28939        ],
28940        "produces": [
28941          "application/json",
28942          "application/yaml",
28943          "application/vnd.kubernetes.protobuf"
28944        ],
28945        "responses": {
28946          "200": {
28947            "description": "OK",
28948            "schema": {
28949              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
28950            }
28951          },
28952          "201": {
28953            "description": "Created",
28954            "schema": {
28955              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
28956            }
28957          },
28958          "202": {
28959            "description": "Accepted",
28960            "schema": {
28961              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenRequest"
28962            }
28963          },
28964          "401": {
28965            "description": "Unauthorized"
28966          }
28967        },
28968        "schemes": [
28969          "https"
28970        ],
28971        "tags": [
28972          "core_v1"
28973        ],
28974        "x-kubernetes-action": "post",
28975        "x-kubernetes-group-version-kind": {
28976          "group": "authentication.k8s.io",
28977          "kind": "TokenRequest",
28978          "version": "v1"
28979        }
28980      }
28981    },
28982    "/api/v1/namespaces/{namespace}/services": {
28983      "get": {
28984        "consumes": [
28985          "*/*"
28986        ],
28987        "description": "list or watch objects of kind Service",
28988        "operationId": "listCoreV1NamespacedService",
28989        "parameters": [
28990          {
28991            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
28992            "in": "query",
28993            "name": "allowWatchBookmarks",
28994            "type": "boolean",
28995            "uniqueItems": true
28996          },
28997          {
28998            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
28999            "in": "query",
29000            "name": "continue",
29001            "type": "string",
29002            "uniqueItems": true
29003          },
29004          {
29005            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
29006            "in": "query",
29007            "name": "fieldSelector",
29008            "type": "string",
29009            "uniqueItems": true
29010          },
29011          {
29012            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
29013            "in": "query",
29014            "name": "labelSelector",
29015            "type": "string",
29016            "uniqueItems": true
29017          },
29018          {
29019            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
29020            "in": "query",
29021            "name": "limit",
29022            "type": "integer",
29023            "uniqueItems": true
29024          },
29025          {
29026            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
29027            "in": "query",
29028            "name": "resourceVersion",
29029            "type": "string",
29030            "uniqueItems": true
29031          },
29032          {
29033            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
29034            "in": "query",
29035            "name": "timeoutSeconds",
29036            "type": "integer",
29037            "uniqueItems": true
29038          },
29039          {
29040            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
29041            "in": "query",
29042            "name": "watch",
29043            "type": "boolean",
29044            "uniqueItems": true
29045          }
29046        ],
29047        "produces": [
29048          "application/json",
29049          "application/yaml",
29050          "application/vnd.kubernetes.protobuf",
29051          "application/json;stream=watch",
29052          "application/vnd.kubernetes.protobuf;stream=watch"
29053        ],
29054        "responses": {
29055          "200": {
29056            "description": "OK",
29057            "schema": {
29058              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
29059            }
29060          },
29061          "401": {
29062            "description": "Unauthorized"
29063          }
29064        },
29065        "schemes": [
29066          "https"
29067        ],
29068        "tags": [
29069          "core_v1"
29070        ],
29071        "x-kubernetes-action": "list",
29072        "x-kubernetes-group-version-kind": {
29073          "group": "",
29074          "kind": "Service",
29075          "version": "v1"
29076        }
29077      },
29078      "parameters": [
29079        {
29080          "description": "object name and auth scope, such as for teams and projects",
29081          "in": "path",
29082          "name": "namespace",
29083          "required": true,
29084          "type": "string",
29085          "uniqueItems": true
29086        },
29087        {
29088          "description": "If 'true', then the output is pretty printed.",
29089          "in": "query",
29090          "name": "pretty",
29091          "type": "string",
29092          "uniqueItems": true
29093        }
29094      ],
29095      "post": {
29096        "consumes": [
29097          "*/*"
29098        ],
29099        "description": "create a Service",
29100        "operationId": "createCoreV1NamespacedService",
29101        "parameters": [
29102          {
29103            "in": "body",
29104            "name": "body",
29105            "required": true,
29106            "schema": {
29107              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29108            }
29109          },
29110          {
29111            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29112            "in": "query",
29113            "name": "dryRun",
29114            "type": "string",
29115            "uniqueItems": true
29116          },
29117          {
29118            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29119            "in": "query",
29120            "name": "fieldManager",
29121            "type": "string",
29122            "uniqueItems": true
29123          }
29124        ],
29125        "produces": [
29126          "application/json",
29127          "application/yaml",
29128          "application/vnd.kubernetes.protobuf"
29129        ],
29130        "responses": {
29131          "200": {
29132            "description": "OK",
29133            "schema": {
29134              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29135            }
29136          },
29137          "201": {
29138            "description": "Created",
29139            "schema": {
29140              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29141            }
29142          },
29143          "202": {
29144            "description": "Accepted",
29145            "schema": {
29146              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29147            }
29148          },
29149          "401": {
29150            "description": "Unauthorized"
29151          }
29152        },
29153        "schemes": [
29154          "https"
29155        ],
29156        "tags": [
29157          "core_v1"
29158        ],
29159        "x-kubernetes-action": "post",
29160        "x-kubernetes-group-version-kind": {
29161          "group": "",
29162          "kind": "Service",
29163          "version": "v1"
29164        }
29165      }
29166    },
29167    "/api/v1/namespaces/{namespace}/services/{name}": {
29168      "delete": {
29169        "consumes": [
29170          "*/*"
29171        ],
29172        "description": "delete a Service",
29173        "operationId": "deleteCoreV1NamespacedService",
29174        "parameters": [
29175          {
29176            "in": "body",
29177            "name": "body",
29178            "schema": {
29179              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
29180            }
29181          },
29182          {
29183            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29184            "in": "query",
29185            "name": "dryRun",
29186            "type": "string",
29187            "uniqueItems": true
29188          },
29189          {
29190            "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.",
29191            "in": "query",
29192            "name": "gracePeriodSeconds",
29193            "type": "integer",
29194            "uniqueItems": true
29195          },
29196          {
29197            "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.",
29198            "in": "query",
29199            "name": "orphanDependents",
29200            "type": "boolean",
29201            "uniqueItems": true
29202          },
29203          {
29204            "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.",
29205            "in": "query",
29206            "name": "propagationPolicy",
29207            "type": "string",
29208            "uniqueItems": true
29209          }
29210        ],
29211        "produces": [
29212          "application/json",
29213          "application/yaml",
29214          "application/vnd.kubernetes.protobuf"
29215        ],
29216        "responses": {
29217          "200": {
29218            "description": "OK",
29219            "schema": {
29220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
29221            }
29222          },
29223          "202": {
29224            "description": "Accepted",
29225            "schema": {
29226              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
29227            }
29228          },
29229          "401": {
29230            "description": "Unauthorized"
29231          }
29232        },
29233        "schemes": [
29234          "https"
29235        ],
29236        "tags": [
29237          "core_v1"
29238        ],
29239        "x-kubernetes-action": "delete",
29240        "x-kubernetes-group-version-kind": {
29241          "group": "",
29242          "kind": "Service",
29243          "version": "v1"
29244        }
29245      },
29246      "get": {
29247        "consumes": [
29248          "*/*"
29249        ],
29250        "description": "read the specified Service",
29251        "operationId": "readCoreV1NamespacedService",
29252        "parameters": [
29253          {
29254            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
29255            "in": "query",
29256            "name": "exact",
29257            "type": "boolean",
29258            "uniqueItems": true
29259          },
29260          {
29261            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
29262            "in": "query",
29263            "name": "export",
29264            "type": "boolean",
29265            "uniqueItems": true
29266          }
29267        ],
29268        "produces": [
29269          "application/json",
29270          "application/yaml",
29271          "application/vnd.kubernetes.protobuf"
29272        ],
29273        "responses": {
29274          "200": {
29275            "description": "OK",
29276            "schema": {
29277              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29278            }
29279          },
29280          "401": {
29281            "description": "Unauthorized"
29282          }
29283        },
29284        "schemes": [
29285          "https"
29286        ],
29287        "tags": [
29288          "core_v1"
29289        ],
29290        "x-kubernetes-action": "get",
29291        "x-kubernetes-group-version-kind": {
29292          "group": "",
29293          "kind": "Service",
29294          "version": "v1"
29295        }
29296      },
29297      "parameters": [
29298        {
29299          "description": "name of the Service",
29300          "in": "path",
29301          "name": "name",
29302          "required": true,
29303          "type": "string",
29304          "uniqueItems": true
29305        },
29306        {
29307          "description": "object name and auth scope, such as for teams and projects",
29308          "in": "path",
29309          "name": "namespace",
29310          "required": true,
29311          "type": "string",
29312          "uniqueItems": true
29313        },
29314        {
29315          "description": "If 'true', then the output is pretty printed.",
29316          "in": "query",
29317          "name": "pretty",
29318          "type": "string",
29319          "uniqueItems": true
29320        }
29321      ],
29322      "patch": {
29323        "consumes": [
29324          "application/json-patch+json",
29325          "application/merge-patch+json",
29326          "application/strategic-merge-patch+json"
29327        ],
29328        "description": "partially update the specified Service",
29329        "operationId": "patchCoreV1NamespacedService",
29330        "parameters": [
29331          {
29332            "in": "body",
29333            "name": "body",
29334            "required": true,
29335            "schema": {
29336              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
29337            }
29338          },
29339          {
29340            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29341            "in": "query",
29342            "name": "dryRun",
29343            "type": "string",
29344            "uniqueItems": true
29345          },
29346          {
29347            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
29348            "in": "query",
29349            "name": "fieldManager",
29350            "type": "string",
29351            "uniqueItems": true
29352          },
29353          {
29354            "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.",
29355            "in": "query",
29356            "name": "force",
29357            "type": "boolean",
29358            "uniqueItems": true
29359          }
29360        ],
29361        "produces": [
29362          "application/json",
29363          "application/yaml",
29364          "application/vnd.kubernetes.protobuf"
29365        ],
29366        "responses": {
29367          "200": {
29368            "description": "OK",
29369            "schema": {
29370              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29371            }
29372          },
29373          "401": {
29374            "description": "Unauthorized"
29375          }
29376        },
29377        "schemes": [
29378          "https"
29379        ],
29380        "tags": [
29381          "core_v1"
29382        ],
29383        "x-kubernetes-action": "patch",
29384        "x-kubernetes-group-version-kind": {
29385          "group": "",
29386          "kind": "Service",
29387          "version": "v1"
29388        }
29389      },
29390      "put": {
29391        "consumes": [
29392          "*/*"
29393        ],
29394        "description": "replace the specified Service",
29395        "operationId": "replaceCoreV1NamespacedService",
29396        "parameters": [
29397          {
29398            "in": "body",
29399            "name": "body",
29400            "required": true,
29401            "schema": {
29402              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29403            }
29404          },
29405          {
29406            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
29407            "in": "query",
29408            "name": "dryRun",
29409            "type": "string",
29410            "uniqueItems": true
29411          },
29412          {
29413            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
29414            "in": "query",
29415            "name": "fieldManager",
29416            "type": "string",
29417            "uniqueItems": true
29418          }
29419        ],
29420        "produces": [
29421          "application/json",
29422          "application/yaml",
29423          "application/vnd.kubernetes.protobuf"
29424        ],
29425        "responses": {
29426          "200": {
29427            "description": "OK",
29428            "schema": {
29429              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29430            }
29431          },
29432          "201": {
29433            "description": "Created",
29434            "schema": {
29435              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29436            }
29437          },
29438          "401": {
29439            "description": "Unauthorized"
29440          }
29441        },
29442        "schemes": [
29443          "https"
29444        ],
29445        "tags": [
29446          "core_v1"
29447        ],
29448        "x-kubernetes-action": "put",
29449        "x-kubernetes-group-version-kind": {
29450          "group": "",
29451          "kind": "Service",
29452          "version": "v1"
29453        }
29454      }
29455    },
29456    "/api/v1/namespaces/{namespace}/services/{name}/proxy": {
29457      "delete": {
29458        "consumes": [
29459          "*/*"
29460        ],
29461        "description": "connect DELETE requests to proxy of Service",
29462        "operationId": "connectCoreV1DeleteNamespacedServiceProxy",
29463        "produces": [
29464          "*/*"
29465        ],
29466        "responses": {
29467          "200": {
29468            "description": "OK",
29469            "schema": {
29470              "type": "string"
29471            }
29472          },
29473          "401": {
29474            "description": "Unauthorized"
29475          }
29476        },
29477        "schemes": [
29478          "https"
29479        ],
29480        "tags": [
29481          "core_v1"
29482        ],
29483        "x-kubernetes-action": "connect",
29484        "x-kubernetes-group-version-kind": {
29485          "group": "",
29486          "kind": "ServiceProxyOptions",
29487          "version": "v1"
29488        }
29489      },
29490      "get": {
29491        "consumes": [
29492          "*/*"
29493        ],
29494        "description": "connect GET requests to proxy of Service",
29495        "operationId": "connectCoreV1GetNamespacedServiceProxy",
29496        "produces": [
29497          "*/*"
29498        ],
29499        "responses": {
29500          "200": {
29501            "description": "OK",
29502            "schema": {
29503              "type": "string"
29504            }
29505          },
29506          "401": {
29507            "description": "Unauthorized"
29508          }
29509        },
29510        "schemes": [
29511          "https"
29512        ],
29513        "tags": [
29514          "core_v1"
29515        ],
29516        "x-kubernetes-action": "connect",
29517        "x-kubernetes-group-version-kind": {
29518          "group": "",
29519          "kind": "ServiceProxyOptions",
29520          "version": "v1"
29521        }
29522      },
29523      "head": {
29524        "consumes": [
29525          "*/*"
29526        ],
29527        "description": "connect HEAD requests to proxy of Service",
29528        "operationId": "connectCoreV1HeadNamespacedServiceProxy",
29529        "produces": [
29530          "*/*"
29531        ],
29532        "responses": {
29533          "200": {
29534            "description": "OK",
29535            "schema": {
29536              "type": "string"
29537            }
29538          },
29539          "401": {
29540            "description": "Unauthorized"
29541          }
29542        },
29543        "schemes": [
29544          "https"
29545        ],
29546        "tags": [
29547          "core_v1"
29548        ],
29549        "x-kubernetes-action": "connect",
29550        "x-kubernetes-group-version-kind": {
29551          "group": "",
29552          "kind": "ServiceProxyOptions",
29553          "version": "v1"
29554        }
29555      },
29556      "options": {
29557        "consumes": [
29558          "*/*"
29559        ],
29560        "description": "connect OPTIONS requests to proxy of Service",
29561        "operationId": "connectCoreV1OptionsNamespacedServiceProxy",
29562        "produces": [
29563          "*/*"
29564        ],
29565        "responses": {
29566          "200": {
29567            "description": "OK",
29568            "schema": {
29569              "type": "string"
29570            }
29571          },
29572          "401": {
29573            "description": "Unauthorized"
29574          }
29575        },
29576        "schemes": [
29577          "https"
29578        ],
29579        "tags": [
29580          "core_v1"
29581        ],
29582        "x-kubernetes-action": "connect",
29583        "x-kubernetes-group-version-kind": {
29584          "group": "",
29585          "kind": "ServiceProxyOptions",
29586          "version": "v1"
29587        }
29588      },
29589      "parameters": [
29590        {
29591          "description": "name of the ServiceProxyOptions",
29592          "in": "path",
29593          "name": "name",
29594          "required": true,
29595          "type": "string",
29596          "uniqueItems": true
29597        },
29598        {
29599          "description": "object name and auth scope, such as for teams and projects",
29600          "in": "path",
29601          "name": "namespace",
29602          "required": true,
29603          "type": "string",
29604          "uniqueItems": true
29605        },
29606        {
29607          "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.",
29608          "in": "query",
29609          "name": "path",
29610          "type": "string",
29611          "uniqueItems": true
29612        }
29613      ],
29614      "patch": {
29615        "consumes": [
29616          "*/*"
29617        ],
29618        "description": "connect PATCH requests to proxy of Service",
29619        "operationId": "connectCoreV1PatchNamespacedServiceProxy",
29620        "produces": [
29621          "*/*"
29622        ],
29623        "responses": {
29624          "200": {
29625            "description": "OK",
29626            "schema": {
29627              "type": "string"
29628            }
29629          },
29630          "401": {
29631            "description": "Unauthorized"
29632          }
29633        },
29634        "schemes": [
29635          "https"
29636        ],
29637        "tags": [
29638          "core_v1"
29639        ],
29640        "x-kubernetes-action": "connect",
29641        "x-kubernetes-group-version-kind": {
29642          "group": "",
29643          "kind": "ServiceProxyOptions",
29644          "version": "v1"
29645        }
29646      },
29647      "post": {
29648        "consumes": [
29649          "*/*"
29650        ],
29651        "description": "connect POST requests to proxy of Service",
29652        "operationId": "connectCoreV1PostNamespacedServiceProxy",
29653        "produces": [
29654          "*/*"
29655        ],
29656        "responses": {
29657          "200": {
29658            "description": "OK",
29659            "schema": {
29660              "type": "string"
29661            }
29662          },
29663          "401": {
29664            "description": "Unauthorized"
29665          }
29666        },
29667        "schemes": [
29668          "https"
29669        ],
29670        "tags": [
29671          "core_v1"
29672        ],
29673        "x-kubernetes-action": "connect",
29674        "x-kubernetes-group-version-kind": {
29675          "group": "",
29676          "kind": "ServiceProxyOptions",
29677          "version": "v1"
29678        }
29679      },
29680      "put": {
29681        "consumes": [
29682          "*/*"
29683        ],
29684        "description": "connect PUT requests to proxy of Service",
29685        "operationId": "connectCoreV1PutNamespacedServiceProxy",
29686        "produces": [
29687          "*/*"
29688        ],
29689        "responses": {
29690          "200": {
29691            "description": "OK",
29692            "schema": {
29693              "type": "string"
29694            }
29695          },
29696          "401": {
29697            "description": "Unauthorized"
29698          }
29699        },
29700        "schemes": [
29701          "https"
29702        ],
29703        "tags": [
29704          "core_v1"
29705        ],
29706        "x-kubernetes-action": "connect",
29707        "x-kubernetes-group-version-kind": {
29708          "group": "",
29709          "kind": "ServiceProxyOptions",
29710          "version": "v1"
29711        }
29712      }
29713    },
29714    "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": {
29715      "delete": {
29716        "consumes": [
29717          "*/*"
29718        ],
29719        "description": "connect DELETE requests to proxy of Service",
29720        "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
29721        "produces": [
29722          "*/*"
29723        ],
29724        "responses": {
29725          "200": {
29726            "description": "OK",
29727            "schema": {
29728              "type": "string"
29729            }
29730          },
29731          "401": {
29732            "description": "Unauthorized"
29733          }
29734        },
29735        "schemes": [
29736          "https"
29737        ],
29738        "tags": [
29739          "core_v1"
29740        ],
29741        "x-kubernetes-action": "connect",
29742        "x-kubernetes-group-version-kind": {
29743          "group": "",
29744          "kind": "ServiceProxyOptions",
29745          "version": "v1"
29746        }
29747      },
29748      "get": {
29749        "consumes": [
29750          "*/*"
29751        ],
29752        "description": "connect GET requests to proxy of Service",
29753        "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath",
29754        "produces": [
29755          "*/*"
29756        ],
29757        "responses": {
29758          "200": {
29759            "description": "OK",
29760            "schema": {
29761              "type": "string"
29762            }
29763          },
29764          "401": {
29765            "description": "Unauthorized"
29766          }
29767        },
29768        "schemes": [
29769          "https"
29770        ],
29771        "tags": [
29772          "core_v1"
29773        ],
29774        "x-kubernetes-action": "connect",
29775        "x-kubernetes-group-version-kind": {
29776          "group": "",
29777          "kind": "ServiceProxyOptions",
29778          "version": "v1"
29779        }
29780      },
29781      "head": {
29782        "consumes": [
29783          "*/*"
29784        ],
29785        "description": "connect HEAD requests to proxy of Service",
29786        "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath",
29787        "produces": [
29788          "*/*"
29789        ],
29790        "responses": {
29791          "200": {
29792            "description": "OK",
29793            "schema": {
29794              "type": "string"
29795            }
29796          },
29797          "401": {
29798            "description": "Unauthorized"
29799          }
29800        },
29801        "schemes": [
29802          "https"
29803        ],
29804        "tags": [
29805          "core_v1"
29806        ],
29807        "x-kubernetes-action": "connect",
29808        "x-kubernetes-group-version-kind": {
29809          "group": "",
29810          "kind": "ServiceProxyOptions",
29811          "version": "v1"
29812        }
29813      },
29814      "options": {
29815        "consumes": [
29816          "*/*"
29817        ],
29818        "description": "connect OPTIONS requests to proxy of Service",
29819        "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
29820        "produces": [
29821          "*/*"
29822        ],
29823        "responses": {
29824          "200": {
29825            "description": "OK",
29826            "schema": {
29827              "type": "string"
29828            }
29829          },
29830          "401": {
29831            "description": "Unauthorized"
29832          }
29833        },
29834        "schemes": [
29835          "https"
29836        ],
29837        "tags": [
29838          "core_v1"
29839        ],
29840        "x-kubernetes-action": "connect",
29841        "x-kubernetes-group-version-kind": {
29842          "group": "",
29843          "kind": "ServiceProxyOptions",
29844          "version": "v1"
29845        }
29846      },
29847      "parameters": [
29848        {
29849          "description": "name of the ServiceProxyOptions",
29850          "in": "path",
29851          "name": "name",
29852          "required": true,
29853          "type": "string",
29854          "uniqueItems": true
29855        },
29856        {
29857          "description": "object name and auth scope, such as for teams and projects",
29858          "in": "path",
29859          "name": "namespace",
29860          "required": true,
29861          "type": "string",
29862          "uniqueItems": true
29863        },
29864        {
29865          "description": "path to the resource",
29866          "in": "path",
29867          "name": "path",
29868          "required": true,
29869          "type": "string",
29870          "uniqueItems": true
29871        },
29872        {
29873          "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.",
29874          "in": "query",
29875          "name": "path",
29876          "type": "string",
29877          "uniqueItems": true
29878        }
29879      ],
29880      "patch": {
29881        "consumes": [
29882          "*/*"
29883        ],
29884        "description": "connect PATCH requests to proxy of Service",
29885        "operationId": "connectCoreV1PatchNamespacedServiceProxyWithPath",
29886        "produces": [
29887          "*/*"
29888        ],
29889        "responses": {
29890          "200": {
29891            "description": "OK",
29892            "schema": {
29893              "type": "string"
29894            }
29895          },
29896          "401": {
29897            "description": "Unauthorized"
29898          }
29899        },
29900        "schemes": [
29901          "https"
29902        ],
29903        "tags": [
29904          "core_v1"
29905        ],
29906        "x-kubernetes-action": "connect",
29907        "x-kubernetes-group-version-kind": {
29908          "group": "",
29909          "kind": "ServiceProxyOptions",
29910          "version": "v1"
29911        }
29912      },
29913      "post": {
29914        "consumes": [
29915          "*/*"
29916        ],
29917        "description": "connect POST requests to proxy of Service",
29918        "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath",
29919        "produces": [
29920          "*/*"
29921        ],
29922        "responses": {
29923          "200": {
29924            "description": "OK",
29925            "schema": {
29926              "type": "string"
29927            }
29928          },
29929          "401": {
29930            "description": "Unauthorized"
29931          }
29932        },
29933        "schemes": [
29934          "https"
29935        ],
29936        "tags": [
29937          "core_v1"
29938        ],
29939        "x-kubernetes-action": "connect",
29940        "x-kubernetes-group-version-kind": {
29941          "group": "",
29942          "kind": "ServiceProxyOptions",
29943          "version": "v1"
29944        }
29945      },
29946      "put": {
29947        "consumes": [
29948          "*/*"
29949        ],
29950        "description": "connect PUT requests to proxy of Service",
29951        "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath",
29952        "produces": [
29953          "*/*"
29954        ],
29955        "responses": {
29956          "200": {
29957            "description": "OK",
29958            "schema": {
29959              "type": "string"
29960            }
29961          },
29962          "401": {
29963            "description": "Unauthorized"
29964          }
29965        },
29966        "schemes": [
29967          "https"
29968        ],
29969        "tags": [
29970          "core_v1"
29971        ],
29972        "x-kubernetes-action": "connect",
29973        "x-kubernetes-group-version-kind": {
29974          "group": "",
29975          "kind": "ServiceProxyOptions",
29976          "version": "v1"
29977        }
29978      }
29979    },
29980    "/api/v1/namespaces/{namespace}/services/{name}/status": {
29981      "get": {
29982        "consumes": [
29983          "*/*"
29984        ],
29985        "description": "read status of the specified Service",
29986        "operationId": "readCoreV1NamespacedServiceStatus",
29987        "produces": [
29988          "application/json",
29989          "application/yaml",
29990          "application/vnd.kubernetes.protobuf"
29991        ],
29992        "responses": {
29993          "200": {
29994            "description": "OK",
29995            "schema": {
29996              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
29997            }
29998          },
29999          "401": {
30000            "description": "Unauthorized"
30001          }
30002        },
30003        "schemes": [
30004          "https"
30005        ],
30006        "tags": [
30007          "core_v1"
30008        ],
30009        "x-kubernetes-action": "get",
30010        "x-kubernetes-group-version-kind": {
30011          "group": "",
30012          "kind": "Service",
30013          "version": "v1"
30014        }
30015      },
30016      "parameters": [
30017        {
30018          "description": "name of the Service",
30019          "in": "path",
30020          "name": "name",
30021          "required": true,
30022          "type": "string",
30023          "uniqueItems": true
30024        },
30025        {
30026          "description": "object name and auth scope, such as for teams and projects",
30027          "in": "path",
30028          "name": "namespace",
30029          "required": true,
30030          "type": "string",
30031          "uniqueItems": true
30032        },
30033        {
30034          "description": "If 'true', then the output is pretty printed.",
30035          "in": "query",
30036          "name": "pretty",
30037          "type": "string",
30038          "uniqueItems": true
30039        }
30040      ],
30041      "patch": {
30042        "consumes": [
30043          "application/json-patch+json",
30044          "application/merge-patch+json",
30045          "application/strategic-merge-patch+json"
30046        ],
30047        "description": "partially update status of the specified Service",
30048        "operationId": "patchCoreV1NamespacedServiceStatus",
30049        "parameters": [
30050          {
30051            "in": "body",
30052            "name": "body",
30053            "required": true,
30054            "schema": {
30055              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30056            }
30057          },
30058          {
30059            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30060            "in": "query",
30061            "name": "dryRun",
30062            "type": "string",
30063            "uniqueItems": true
30064          },
30065          {
30066            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
30067            "in": "query",
30068            "name": "fieldManager",
30069            "type": "string",
30070            "uniqueItems": true
30071          },
30072          {
30073            "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.",
30074            "in": "query",
30075            "name": "force",
30076            "type": "boolean",
30077            "uniqueItems": true
30078          }
30079        ],
30080        "produces": [
30081          "application/json",
30082          "application/yaml",
30083          "application/vnd.kubernetes.protobuf"
30084        ],
30085        "responses": {
30086          "200": {
30087            "description": "OK",
30088            "schema": {
30089              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30090            }
30091          },
30092          "401": {
30093            "description": "Unauthorized"
30094          }
30095        },
30096        "schemes": [
30097          "https"
30098        ],
30099        "tags": [
30100          "core_v1"
30101        ],
30102        "x-kubernetes-action": "patch",
30103        "x-kubernetes-group-version-kind": {
30104          "group": "",
30105          "kind": "Service",
30106          "version": "v1"
30107        }
30108      },
30109      "put": {
30110        "consumes": [
30111          "*/*"
30112        ],
30113        "description": "replace status of the specified Service",
30114        "operationId": "replaceCoreV1NamespacedServiceStatus",
30115        "parameters": [
30116          {
30117            "in": "body",
30118            "name": "body",
30119            "required": true,
30120            "schema": {
30121              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30122            }
30123          },
30124          {
30125            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30126            "in": "query",
30127            "name": "dryRun",
30128            "type": "string",
30129            "uniqueItems": true
30130          },
30131          {
30132            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30133            "in": "query",
30134            "name": "fieldManager",
30135            "type": "string",
30136            "uniqueItems": true
30137          }
30138        ],
30139        "produces": [
30140          "application/json",
30141          "application/yaml",
30142          "application/vnd.kubernetes.protobuf"
30143        ],
30144        "responses": {
30145          "200": {
30146            "description": "OK",
30147            "schema": {
30148              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30149            }
30150          },
30151          "201": {
30152            "description": "Created",
30153            "schema": {
30154              "$ref": "#/definitions/io.k8s.api.core.v1.Service"
30155            }
30156          },
30157          "401": {
30158            "description": "Unauthorized"
30159          }
30160        },
30161        "schemes": [
30162          "https"
30163        ],
30164        "tags": [
30165          "core_v1"
30166        ],
30167        "x-kubernetes-action": "put",
30168        "x-kubernetes-group-version-kind": {
30169          "group": "",
30170          "kind": "Service",
30171          "version": "v1"
30172        }
30173      }
30174    },
30175    "/api/v1/namespaces/{name}": {
30176      "delete": {
30177        "consumes": [
30178          "*/*"
30179        ],
30180        "description": "delete a Namespace",
30181        "operationId": "deleteCoreV1Namespace",
30182        "parameters": [
30183          {
30184            "in": "body",
30185            "name": "body",
30186            "schema": {
30187              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
30188            }
30189          },
30190          {
30191            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30192            "in": "query",
30193            "name": "dryRun",
30194            "type": "string",
30195            "uniqueItems": true
30196          },
30197          {
30198            "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.",
30199            "in": "query",
30200            "name": "gracePeriodSeconds",
30201            "type": "integer",
30202            "uniqueItems": true
30203          },
30204          {
30205            "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.",
30206            "in": "query",
30207            "name": "orphanDependents",
30208            "type": "boolean",
30209            "uniqueItems": true
30210          },
30211          {
30212            "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.",
30213            "in": "query",
30214            "name": "propagationPolicy",
30215            "type": "string",
30216            "uniqueItems": true
30217          }
30218        ],
30219        "produces": [
30220          "application/json",
30221          "application/yaml",
30222          "application/vnd.kubernetes.protobuf"
30223        ],
30224        "responses": {
30225          "200": {
30226            "description": "OK",
30227            "schema": {
30228              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30229            }
30230          },
30231          "202": {
30232            "description": "Accepted",
30233            "schema": {
30234              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30235            }
30236          },
30237          "401": {
30238            "description": "Unauthorized"
30239          }
30240        },
30241        "schemes": [
30242          "https"
30243        ],
30244        "tags": [
30245          "core_v1"
30246        ],
30247        "x-kubernetes-action": "delete",
30248        "x-kubernetes-group-version-kind": {
30249          "group": "",
30250          "kind": "Namespace",
30251          "version": "v1"
30252        }
30253      },
30254      "get": {
30255        "consumes": [
30256          "*/*"
30257        ],
30258        "description": "read the specified Namespace",
30259        "operationId": "readCoreV1Namespace",
30260        "parameters": [
30261          {
30262            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
30263            "in": "query",
30264            "name": "exact",
30265            "type": "boolean",
30266            "uniqueItems": true
30267          },
30268          {
30269            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
30270            "in": "query",
30271            "name": "export",
30272            "type": "boolean",
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.Namespace"
30286            }
30287          },
30288          "401": {
30289            "description": "Unauthorized"
30290          }
30291        },
30292        "schemes": [
30293          "https"
30294        ],
30295        "tags": [
30296          "core_v1"
30297        ],
30298        "x-kubernetes-action": "get",
30299        "x-kubernetes-group-version-kind": {
30300          "group": "",
30301          "kind": "Namespace",
30302          "version": "v1"
30303        }
30304      },
30305      "parameters": [
30306        {
30307          "description": "name of the Namespace",
30308          "in": "path",
30309          "name": "name",
30310          "required": true,
30311          "type": "string",
30312          "uniqueItems": true
30313        },
30314        {
30315          "description": "If 'true', then the output is pretty printed.",
30316          "in": "query",
30317          "name": "pretty",
30318          "type": "string",
30319          "uniqueItems": true
30320        }
30321      ],
30322      "patch": {
30323        "consumes": [
30324          "application/json-patch+json",
30325          "application/merge-patch+json",
30326          "application/strategic-merge-patch+json"
30327        ],
30328        "description": "partially update the specified Namespace",
30329        "operationId": "patchCoreV1Namespace",
30330        "parameters": [
30331          {
30332            "in": "body",
30333            "name": "body",
30334            "required": true,
30335            "schema": {
30336              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30337            }
30338          },
30339          {
30340            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30341            "in": "query",
30342            "name": "dryRun",
30343            "type": "string",
30344            "uniqueItems": true
30345          },
30346          {
30347            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
30348            "in": "query",
30349            "name": "fieldManager",
30350            "type": "string",
30351            "uniqueItems": true
30352          },
30353          {
30354            "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.",
30355            "in": "query",
30356            "name": "force",
30357            "type": "boolean",
30358            "uniqueItems": true
30359          }
30360        ],
30361        "produces": [
30362          "application/json",
30363          "application/yaml",
30364          "application/vnd.kubernetes.protobuf"
30365        ],
30366        "responses": {
30367          "200": {
30368            "description": "OK",
30369            "schema": {
30370              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30371            }
30372          },
30373          "401": {
30374            "description": "Unauthorized"
30375          }
30376        },
30377        "schemes": [
30378          "https"
30379        ],
30380        "tags": [
30381          "core_v1"
30382        ],
30383        "x-kubernetes-action": "patch",
30384        "x-kubernetes-group-version-kind": {
30385          "group": "",
30386          "kind": "Namespace",
30387          "version": "v1"
30388        }
30389      },
30390      "put": {
30391        "consumes": [
30392          "*/*"
30393        ],
30394        "description": "replace the specified Namespace",
30395        "operationId": "replaceCoreV1Namespace",
30396        "parameters": [
30397          {
30398            "in": "body",
30399            "name": "body",
30400            "required": true,
30401            "schema": {
30402              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30403            }
30404          },
30405          {
30406            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30407            "in": "query",
30408            "name": "dryRun",
30409            "type": "string",
30410            "uniqueItems": true
30411          },
30412          {
30413            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30414            "in": "query",
30415            "name": "fieldManager",
30416            "type": "string",
30417            "uniqueItems": true
30418          }
30419        ],
30420        "produces": [
30421          "application/json",
30422          "application/yaml",
30423          "application/vnd.kubernetes.protobuf"
30424        ],
30425        "responses": {
30426          "200": {
30427            "description": "OK",
30428            "schema": {
30429              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30430            }
30431          },
30432          "201": {
30433            "description": "Created",
30434            "schema": {
30435              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30436            }
30437          },
30438          "401": {
30439            "description": "Unauthorized"
30440          }
30441        },
30442        "schemes": [
30443          "https"
30444        ],
30445        "tags": [
30446          "core_v1"
30447        ],
30448        "x-kubernetes-action": "put",
30449        "x-kubernetes-group-version-kind": {
30450          "group": "",
30451          "kind": "Namespace",
30452          "version": "v1"
30453        }
30454      }
30455    },
30456    "/api/v1/namespaces/{name}/finalize": {
30457      "parameters": [
30458        {
30459          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30460          "in": "query",
30461          "name": "dryRun",
30462          "type": "string",
30463          "uniqueItems": true
30464        },
30465        {
30466          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30467          "in": "query",
30468          "name": "fieldManager",
30469          "type": "string",
30470          "uniqueItems": true
30471        },
30472        {
30473          "description": "name of the Namespace",
30474          "in": "path",
30475          "name": "name",
30476          "required": true,
30477          "type": "string",
30478          "uniqueItems": true
30479        },
30480        {
30481          "description": "If 'true', then the output is pretty printed.",
30482          "in": "query",
30483          "name": "pretty",
30484          "type": "string",
30485          "uniqueItems": true
30486        }
30487      ],
30488      "put": {
30489        "consumes": [
30490          "*/*"
30491        ],
30492        "description": "replace finalize of the specified Namespace",
30493        "operationId": "replaceCoreV1NamespaceFinalize",
30494        "parameters": [
30495          {
30496            "in": "body",
30497            "name": "body",
30498            "required": true,
30499            "schema": {
30500              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30501            }
30502          }
30503        ],
30504        "produces": [
30505          "application/json",
30506          "application/yaml",
30507          "application/vnd.kubernetes.protobuf"
30508        ],
30509        "responses": {
30510          "200": {
30511            "description": "OK",
30512            "schema": {
30513              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30514            }
30515          },
30516          "201": {
30517            "description": "Created",
30518            "schema": {
30519              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30520            }
30521          },
30522          "401": {
30523            "description": "Unauthorized"
30524          }
30525        },
30526        "schemes": [
30527          "https"
30528        ],
30529        "tags": [
30530          "core_v1"
30531        ],
30532        "x-kubernetes-action": "put",
30533        "x-kubernetes-group-version-kind": {
30534          "group": "",
30535          "kind": "Namespace",
30536          "version": "v1"
30537        }
30538      }
30539    },
30540    "/api/v1/namespaces/{name}/status": {
30541      "get": {
30542        "consumes": [
30543          "*/*"
30544        ],
30545        "description": "read status of the specified Namespace",
30546        "operationId": "readCoreV1NamespaceStatus",
30547        "produces": [
30548          "application/json",
30549          "application/yaml",
30550          "application/vnd.kubernetes.protobuf"
30551        ],
30552        "responses": {
30553          "200": {
30554            "description": "OK",
30555            "schema": {
30556              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30557            }
30558          },
30559          "401": {
30560            "description": "Unauthorized"
30561          }
30562        },
30563        "schemes": [
30564          "https"
30565        ],
30566        "tags": [
30567          "core_v1"
30568        ],
30569        "x-kubernetes-action": "get",
30570        "x-kubernetes-group-version-kind": {
30571          "group": "",
30572          "kind": "Namespace",
30573          "version": "v1"
30574        }
30575      },
30576      "parameters": [
30577        {
30578          "description": "name of the Namespace",
30579          "in": "path",
30580          "name": "name",
30581          "required": true,
30582          "type": "string",
30583          "uniqueItems": true
30584        },
30585        {
30586          "description": "If 'true', then the output is pretty printed.",
30587          "in": "query",
30588          "name": "pretty",
30589          "type": "string",
30590          "uniqueItems": true
30591        }
30592      ],
30593      "patch": {
30594        "consumes": [
30595          "application/json-patch+json",
30596          "application/merge-patch+json",
30597          "application/strategic-merge-patch+json"
30598        ],
30599        "description": "partially update status of the specified Namespace",
30600        "operationId": "patchCoreV1NamespaceStatus",
30601        "parameters": [
30602          {
30603            "in": "body",
30604            "name": "body",
30605            "required": true,
30606            "schema": {
30607              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
30608            }
30609          },
30610          {
30611            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30612            "in": "query",
30613            "name": "dryRun",
30614            "type": "string",
30615            "uniqueItems": true
30616          },
30617          {
30618            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
30619            "in": "query",
30620            "name": "fieldManager",
30621            "type": "string",
30622            "uniqueItems": true
30623          },
30624          {
30625            "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.",
30626            "in": "query",
30627            "name": "force",
30628            "type": "boolean",
30629            "uniqueItems": true
30630          }
30631        ],
30632        "produces": [
30633          "application/json",
30634          "application/yaml",
30635          "application/vnd.kubernetes.protobuf"
30636        ],
30637        "responses": {
30638          "200": {
30639            "description": "OK",
30640            "schema": {
30641              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30642            }
30643          },
30644          "401": {
30645            "description": "Unauthorized"
30646          }
30647        },
30648        "schemes": [
30649          "https"
30650        ],
30651        "tags": [
30652          "core_v1"
30653        ],
30654        "x-kubernetes-action": "patch",
30655        "x-kubernetes-group-version-kind": {
30656          "group": "",
30657          "kind": "Namespace",
30658          "version": "v1"
30659        }
30660      },
30661      "put": {
30662        "consumes": [
30663          "*/*"
30664        ],
30665        "description": "replace status of the specified Namespace",
30666        "operationId": "replaceCoreV1NamespaceStatus",
30667        "parameters": [
30668          {
30669            "in": "body",
30670            "name": "body",
30671            "required": true,
30672            "schema": {
30673              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30674            }
30675          },
30676          {
30677            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30678            "in": "query",
30679            "name": "dryRun",
30680            "type": "string",
30681            "uniqueItems": true
30682          },
30683          {
30684            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30685            "in": "query",
30686            "name": "fieldManager",
30687            "type": "string",
30688            "uniqueItems": true
30689          }
30690        ],
30691        "produces": [
30692          "application/json",
30693          "application/yaml",
30694          "application/vnd.kubernetes.protobuf"
30695        ],
30696        "responses": {
30697          "200": {
30698            "description": "OK",
30699            "schema": {
30700              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30701            }
30702          },
30703          "201": {
30704            "description": "Created",
30705            "schema": {
30706              "$ref": "#/definitions/io.k8s.api.core.v1.Namespace"
30707            }
30708          },
30709          "401": {
30710            "description": "Unauthorized"
30711          }
30712        },
30713        "schemes": [
30714          "https"
30715        ],
30716        "tags": [
30717          "core_v1"
30718        ],
30719        "x-kubernetes-action": "put",
30720        "x-kubernetes-group-version-kind": {
30721          "group": "",
30722          "kind": "Namespace",
30723          "version": "v1"
30724        }
30725      }
30726    },
30727    "/api/v1/nodes": {
30728      "delete": {
30729        "consumes": [
30730          "*/*"
30731        ],
30732        "description": "delete collection of Node",
30733        "operationId": "deleteCoreV1CollectionNode",
30734        "parameters": [
30735          {
30736            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
30737            "in": "query",
30738            "name": "allowWatchBookmarks",
30739            "type": "boolean",
30740            "uniqueItems": true
30741          },
30742          {
30743            "in": "body",
30744            "name": "body",
30745            "schema": {
30746              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
30747            }
30748          },
30749          {
30750            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30751            "in": "query",
30752            "name": "continue",
30753            "type": "string",
30754            "uniqueItems": true
30755          },
30756          {
30757            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30758            "in": "query",
30759            "name": "dryRun",
30760            "type": "string",
30761            "uniqueItems": true
30762          },
30763          {
30764            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30765            "in": "query",
30766            "name": "fieldSelector",
30767            "type": "string",
30768            "uniqueItems": true
30769          },
30770          {
30771            "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.",
30772            "in": "query",
30773            "name": "gracePeriodSeconds",
30774            "type": "integer",
30775            "uniqueItems": true
30776          },
30777          {
30778            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30779            "in": "query",
30780            "name": "labelSelector",
30781            "type": "string",
30782            "uniqueItems": true
30783          },
30784          {
30785            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30786            "in": "query",
30787            "name": "limit",
30788            "type": "integer",
30789            "uniqueItems": true
30790          },
30791          {
30792            "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.",
30793            "in": "query",
30794            "name": "orphanDependents",
30795            "type": "boolean",
30796            "uniqueItems": true
30797          },
30798          {
30799            "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.",
30800            "in": "query",
30801            "name": "propagationPolicy",
30802            "type": "string",
30803            "uniqueItems": true
30804          },
30805          {
30806            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
30807            "in": "query",
30808            "name": "resourceVersion",
30809            "type": "string",
30810            "uniqueItems": true
30811          },
30812          {
30813            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30814            "in": "query",
30815            "name": "timeoutSeconds",
30816            "type": "integer",
30817            "uniqueItems": true
30818          },
30819          {
30820            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30821            "in": "query",
30822            "name": "watch",
30823            "type": "boolean",
30824            "uniqueItems": true
30825          }
30826        ],
30827        "produces": [
30828          "application/json",
30829          "application/yaml",
30830          "application/vnd.kubernetes.protobuf"
30831        ],
30832        "responses": {
30833          "200": {
30834            "description": "OK",
30835            "schema": {
30836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
30837            }
30838          },
30839          "401": {
30840            "description": "Unauthorized"
30841          }
30842        },
30843        "schemes": [
30844          "https"
30845        ],
30846        "tags": [
30847          "core_v1"
30848        ],
30849        "x-kubernetes-action": "deletecollection",
30850        "x-kubernetes-group-version-kind": {
30851          "group": "",
30852          "kind": "Node",
30853          "version": "v1"
30854        }
30855      },
30856      "get": {
30857        "consumes": [
30858          "*/*"
30859        ],
30860        "description": "list or watch objects of kind Node",
30861        "operationId": "listCoreV1Node",
30862        "parameters": [
30863          {
30864            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
30865            "in": "query",
30866            "name": "allowWatchBookmarks",
30867            "type": "boolean",
30868            "uniqueItems": true
30869          },
30870          {
30871            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
30872            "in": "query",
30873            "name": "continue",
30874            "type": "string",
30875            "uniqueItems": true
30876          },
30877          {
30878            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
30879            "in": "query",
30880            "name": "fieldSelector",
30881            "type": "string",
30882            "uniqueItems": true
30883          },
30884          {
30885            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
30886            "in": "query",
30887            "name": "labelSelector",
30888            "type": "string",
30889            "uniqueItems": true
30890          },
30891          {
30892            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
30893            "in": "query",
30894            "name": "limit",
30895            "type": "integer",
30896            "uniqueItems": true
30897          },
30898          {
30899            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
30900            "in": "query",
30901            "name": "resourceVersion",
30902            "type": "string",
30903            "uniqueItems": true
30904          },
30905          {
30906            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
30907            "in": "query",
30908            "name": "timeoutSeconds",
30909            "type": "integer",
30910            "uniqueItems": true
30911          },
30912          {
30913            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
30914            "in": "query",
30915            "name": "watch",
30916            "type": "boolean",
30917            "uniqueItems": true
30918          }
30919        ],
30920        "produces": [
30921          "application/json",
30922          "application/yaml",
30923          "application/vnd.kubernetes.protobuf",
30924          "application/json;stream=watch",
30925          "application/vnd.kubernetes.protobuf;stream=watch"
30926        ],
30927        "responses": {
30928          "200": {
30929            "description": "OK",
30930            "schema": {
30931              "$ref": "#/definitions/io.k8s.api.core.v1.NodeList"
30932            }
30933          },
30934          "401": {
30935            "description": "Unauthorized"
30936          }
30937        },
30938        "schemes": [
30939          "https"
30940        ],
30941        "tags": [
30942          "core_v1"
30943        ],
30944        "x-kubernetes-action": "list",
30945        "x-kubernetes-group-version-kind": {
30946          "group": "",
30947          "kind": "Node",
30948          "version": "v1"
30949        }
30950      },
30951      "parameters": [
30952        {
30953          "description": "If 'true', then the output is pretty printed.",
30954          "in": "query",
30955          "name": "pretty",
30956          "type": "string",
30957          "uniqueItems": true
30958        }
30959      ],
30960      "post": {
30961        "consumes": [
30962          "*/*"
30963        ],
30964        "description": "create a Node",
30965        "operationId": "createCoreV1Node",
30966        "parameters": [
30967          {
30968            "in": "body",
30969            "name": "body",
30970            "required": true,
30971            "schema": {
30972              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
30973            }
30974          },
30975          {
30976            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
30977            "in": "query",
30978            "name": "dryRun",
30979            "type": "string",
30980            "uniqueItems": true
30981          },
30982          {
30983            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
30984            "in": "query",
30985            "name": "fieldManager",
30986            "type": "string",
30987            "uniqueItems": true
30988          }
30989        ],
30990        "produces": [
30991          "application/json",
30992          "application/yaml",
30993          "application/vnd.kubernetes.protobuf"
30994        ],
30995        "responses": {
30996          "200": {
30997            "description": "OK",
30998            "schema": {
30999              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31000            }
31001          },
31002          "201": {
31003            "description": "Created",
31004            "schema": {
31005              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31006            }
31007          },
31008          "202": {
31009            "description": "Accepted",
31010            "schema": {
31011              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31012            }
31013          },
31014          "401": {
31015            "description": "Unauthorized"
31016          }
31017        },
31018        "schemes": [
31019          "https"
31020        ],
31021        "tags": [
31022          "core_v1"
31023        ],
31024        "x-kubernetes-action": "post",
31025        "x-kubernetes-group-version-kind": {
31026          "group": "",
31027          "kind": "Node",
31028          "version": "v1"
31029        }
31030      }
31031    },
31032    "/api/v1/nodes/{name}": {
31033      "delete": {
31034        "consumes": [
31035          "*/*"
31036        ],
31037        "description": "delete a Node",
31038        "operationId": "deleteCoreV1Node",
31039        "parameters": [
31040          {
31041            "in": "body",
31042            "name": "body",
31043            "schema": {
31044              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
31045            }
31046          },
31047          {
31048            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31049            "in": "query",
31050            "name": "dryRun",
31051            "type": "string",
31052            "uniqueItems": true
31053          },
31054          {
31055            "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.",
31056            "in": "query",
31057            "name": "gracePeriodSeconds",
31058            "type": "integer",
31059            "uniqueItems": true
31060          },
31061          {
31062            "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.",
31063            "in": "query",
31064            "name": "orphanDependents",
31065            "type": "boolean",
31066            "uniqueItems": true
31067          },
31068          {
31069            "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.",
31070            "in": "query",
31071            "name": "propagationPolicy",
31072            "type": "string",
31073            "uniqueItems": true
31074          }
31075        ],
31076        "produces": [
31077          "application/json",
31078          "application/yaml",
31079          "application/vnd.kubernetes.protobuf"
31080        ],
31081        "responses": {
31082          "200": {
31083            "description": "OK",
31084            "schema": {
31085              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31086            }
31087          },
31088          "202": {
31089            "description": "Accepted",
31090            "schema": {
31091              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
31092            }
31093          },
31094          "401": {
31095            "description": "Unauthorized"
31096          }
31097        },
31098        "schemes": [
31099          "https"
31100        ],
31101        "tags": [
31102          "core_v1"
31103        ],
31104        "x-kubernetes-action": "delete",
31105        "x-kubernetes-group-version-kind": {
31106          "group": "",
31107          "kind": "Node",
31108          "version": "v1"
31109        }
31110      },
31111      "get": {
31112        "consumes": [
31113          "*/*"
31114        ],
31115        "description": "read the specified Node",
31116        "operationId": "readCoreV1Node",
31117        "parameters": [
31118          {
31119            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
31120            "in": "query",
31121            "name": "exact",
31122            "type": "boolean",
31123            "uniqueItems": true
31124          },
31125          {
31126            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
31127            "in": "query",
31128            "name": "export",
31129            "type": "boolean",
31130            "uniqueItems": true
31131          }
31132        ],
31133        "produces": [
31134          "application/json",
31135          "application/yaml",
31136          "application/vnd.kubernetes.protobuf"
31137        ],
31138        "responses": {
31139          "200": {
31140            "description": "OK",
31141            "schema": {
31142              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31143            }
31144          },
31145          "401": {
31146            "description": "Unauthorized"
31147          }
31148        },
31149        "schemes": [
31150          "https"
31151        ],
31152        "tags": [
31153          "core_v1"
31154        ],
31155        "x-kubernetes-action": "get",
31156        "x-kubernetes-group-version-kind": {
31157          "group": "",
31158          "kind": "Node",
31159          "version": "v1"
31160        }
31161      },
31162      "parameters": [
31163        {
31164          "description": "name of the Node",
31165          "in": "path",
31166          "name": "name",
31167          "required": true,
31168          "type": "string",
31169          "uniqueItems": true
31170        },
31171        {
31172          "description": "If 'true', then the output is pretty printed.",
31173          "in": "query",
31174          "name": "pretty",
31175          "type": "string",
31176          "uniqueItems": true
31177        }
31178      ],
31179      "patch": {
31180        "consumes": [
31181          "application/json-patch+json",
31182          "application/merge-patch+json",
31183          "application/strategic-merge-patch+json"
31184        ],
31185        "description": "partially update the specified Node",
31186        "operationId": "patchCoreV1Node",
31187        "parameters": [
31188          {
31189            "in": "body",
31190            "name": "body",
31191            "required": true,
31192            "schema": {
31193              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31194            }
31195          },
31196          {
31197            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31198            "in": "query",
31199            "name": "dryRun",
31200            "type": "string",
31201            "uniqueItems": true
31202          },
31203          {
31204            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
31205            "in": "query",
31206            "name": "fieldManager",
31207            "type": "string",
31208            "uniqueItems": true
31209          },
31210          {
31211            "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.",
31212            "in": "query",
31213            "name": "force",
31214            "type": "boolean",
31215            "uniqueItems": true
31216          }
31217        ],
31218        "produces": [
31219          "application/json",
31220          "application/yaml",
31221          "application/vnd.kubernetes.protobuf"
31222        ],
31223        "responses": {
31224          "200": {
31225            "description": "OK",
31226            "schema": {
31227              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31228            }
31229          },
31230          "401": {
31231            "description": "Unauthorized"
31232          }
31233        },
31234        "schemes": [
31235          "https"
31236        ],
31237        "tags": [
31238          "core_v1"
31239        ],
31240        "x-kubernetes-action": "patch",
31241        "x-kubernetes-group-version-kind": {
31242          "group": "",
31243          "kind": "Node",
31244          "version": "v1"
31245        }
31246      },
31247      "put": {
31248        "consumes": [
31249          "*/*"
31250        ],
31251        "description": "replace the specified Node",
31252        "operationId": "replaceCoreV1Node",
31253        "parameters": [
31254          {
31255            "in": "body",
31256            "name": "body",
31257            "required": true,
31258            "schema": {
31259              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31260            }
31261          },
31262          {
31263            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31264            "in": "query",
31265            "name": "dryRun",
31266            "type": "string",
31267            "uniqueItems": true
31268          },
31269          {
31270            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31271            "in": "query",
31272            "name": "fieldManager",
31273            "type": "string",
31274            "uniqueItems": true
31275          }
31276        ],
31277        "produces": [
31278          "application/json",
31279          "application/yaml",
31280          "application/vnd.kubernetes.protobuf"
31281        ],
31282        "responses": {
31283          "200": {
31284            "description": "OK",
31285            "schema": {
31286              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31287            }
31288          },
31289          "201": {
31290            "description": "Created",
31291            "schema": {
31292              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31293            }
31294          },
31295          "401": {
31296            "description": "Unauthorized"
31297          }
31298        },
31299        "schemes": [
31300          "https"
31301        ],
31302        "tags": [
31303          "core_v1"
31304        ],
31305        "x-kubernetes-action": "put",
31306        "x-kubernetes-group-version-kind": {
31307          "group": "",
31308          "kind": "Node",
31309          "version": "v1"
31310        }
31311      }
31312    },
31313    "/api/v1/nodes/{name}/proxy": {
31314      "delete": {
31315        "consumes": [
31316          "*/*"
31317        ],
31318        "description": "connect DELETE requests to proxy of Node",
31319        "operationId": "connectCoreV1DeleteNodeProxy",
31320        "produces": [
31321          "*/*"
31322        ],
31323        "responses": {
31324          "200": {
31325            "description": "OK",
31326            "schema": {
31327              "type": "string"
31328            }
31329          },
31330          "401": {
31331            "description": "Unauthorized"
31332          }
31333        },
31334        "schemes": [
31335          "https"
31336        ],
31337        "tags": [
31338          "core_v1"
31339        ],
31340        "x-kubernetes-action": "connect",
31341        "x-kubernetes-group-version-kind": {
31342          "group": "",
31343          "kind": "NodeProxyOptions",
31344          "version": "v1"
31345        }
31346      },
31347      "get": {
31348        "consumes": [
31349          "*/*"
31350        ],
31351        "description": "connect GET requests to proxy of Node",
31352        "operationId": "connectCoreV1GetNodeProxy",
31353        "produces": [
31354          "*/*"
31355        ],
31356        "responses": {
31357          "200": {
31358            "description": "OK",
31359            "schema": {
31360              "type": "string"
31361            }
31362          },
31363          "401": {
31364            "description": "Unauthorized"
31365          }
31366        },
31367        "schemes": [
31368          "https"
31369        ],
31370        "tags": [
31371          "core_v1"
31372        ],
31373        "x-kubernetes-action": "connect",
31374        "x-kubernetes-group-version-kind": {
31375          "group": "",
31376          "kind": "NodeProxyOptions",
31377          "version": "v1"
31378        }
31379      },
31380      "head": {
31381        "consumes": [
31382          "*/*"
31383        ],
31384        "description": "connect HEAD requests to proxy of Node",
31385        "operationId": "connectCoreV1HeadNodeProxy",
31386        "produces": [
31387          "*/*"
31388        ],
31389        "responses": {
31390          "200": {
31391            "description": "OK",
31392            "schema": {
31393              "type": "string"
31394            }
31395          },
31396          "401": {
31397            "description": "Unauthorized"
31398          }
31399        },
31400        "schemes": [
31401          "https"
31402        ],
31403        "tags": [
31404          "core_v1"
31405        ],
31406        "x-kubernetes-action": "connect",
31407        "x-kubernetes-group-version-kind": {
31408          "group": "",
31409          "kind": "NodeProxyOptions",
31410          "version": "v1"
31411        }
31412      },
31413      "options": {
31414        "consumes": [
31415          "*/*"
31416        ],
31417        "description": "connect OPTIONS requests to proxy of Node",
31418        "operationId": "connectCoreV1OptionsNodeProxy",
31419        "produces": [
31420          "*/*"
31421        ],
31422        "responses": {
31423          "200": {
31424            "description": "OK",
31425            "schema": {
31426              "type": "string"
31427            }
31428          },
31429          "401": {
31430            "description": "Unauthorized"
31431          }
31432        },
31433        "schemes": [
31434          "https"
31435        ],
31436        "tags": [
31437          "core_v1"
31438        ],
31439        "x-kubernetes-action": "connect",
31440        "x-kubernetes-group-version-kind": {
31441          "group": "",
31442          "kind": "NodeProxyOptions",
31443          "version": "v1"
31444        }
31445      },
31446      "parameters": [
31447        {
31448          "description": "name of the NodeProxyOptions",
31449          "in": "path",
31450          "name": "name",
31451          "required": true,
31452          "type": "string",
31453          "uniqueItems": true
31454        },
31455        {
31456          "description": "Path is the URL path to use for the current proxy request to node.",
31457          "in": "query",
31458          "name": "path",
31459          "type": "string",
31460          "uniqueItems": true
31461        }
31462      ],
31463      "patch": {
31464        "consumes": [
31465          "*/*"
31466        ],
31467        "description": "connect PATCH requests to proxy of Node",
31468        "operationId": "connectCoreV1PatchNodeProxy",
31469        "produces": [
31470          "*/*"
31471        ],
31472        "responses": {
31473          "200": {
31474            "description": "OK",
31475            "schema": {
31476              "type": "string"
31477            }
31478          },
31479          "401": {
31480            "description": "Unauthorized"
31481          }
31482        },
31483        "schemes": [
31484          "https"
31485        ],
31486        "tags": [
31487          "core_v1"
31488        ],
31489        "x-kubernetes-action": "connect",
31490        "x-kubernetes-group-version-kind": {
31491          "group": "",
31492          "kind": "NodeProxyOptions",
31493          "version": "v1"
31494        }
31495      },
31496      "post": {
31497        "consumes": [
31498          "*/*"
31499        ],
31500        "description": "connect POST requests to proxy of Node",
31501        "operationId": "connectCoreV1PostNodeProxy",
31502        "produces": [
31503          "*/*"
31504        ],
31505        "responses": {
31506          "200": {
31507            "description": "OK",
31508            "schema": {
31509              "type": "string"
31510            }
31511          },
31512          "401": {
31513            "description": "Unauthorized"
31514          }
31515        },
31516        "schemes": [
31517          "https"
31518        ],
31519        "tags": [
31520          "core_v1"
31521        ],
31522        "x-kubernetes-action": "connect",
31523        "x-kubernetes-group-version-kind": {
31524          "group": "",
31525          "kind": "NodeProxyOptions",
31526          "version": "v1"
31527        }
31528      },
31529      "put": {
31530        "consumes": [
31531          "*/*"
31532        ],
31533        "description": "connect PUT requests to proxy of Node",
31534        "operationId": "connectCoreV1PutNodeProxy",
31535        "produces": [
31536          "*/*"
31537        ],
31538        "responses": {
31539          "200": {
31540            "description": "OK",
31541            "schema": {
31542              "type": "string"
31543            }
31544          },
31545          "401": {
31546            "description": "Unauthorized"
31547          }
31548        },
31549        "schemes": [
31550          "https"
31551        ],
31552        "tags": [
31553          "core_v1"
31554        ],
31555        "x-kubernetes-action": "connect",
31556        "x-kubernetes-group-version-kind": {
31557          "group": "",
31558          "kind": "NodeProxyOptions",
31559          "version": "v1"
31560        }
31561      }
31562    },
31563    "/api/v1/nodes/{name}/proxy/{path}": {
31564      "delete": {
31565        "consumes": [
31566          "*/*"
31567        ],
31568        "description": "connect DELETE requests to proxy of Node",
31569        "operationId": "connectCoreV1DeleteNodeProxyWithPath",
31570        "produces": [
31571          "*/*"
31572        ],
31573        "responses": {
31574          "200": {
31575            "description": "OK",
31576            "schema": {
31577              "type": "string"
31578            }
31579          },
31580          "401": {
31581            "description": "Unauthorized"
31582          }
31583        },
31584        "schemes": [
31585          "https"
31586        ],
31587        "tags": [
31588          "core_v1"
31589        ],
31590        "x-kubernetes-action": "connect",
31591        "x-kubernetes-group-version-kind": {
31592          "group": "",
31593          "kind": "NodeProxyOptions",
31594          "version": "v1"
31595        }
31596      },
31597      "get": {
31598        "consumes": [
31599          "*/*"
31600        ],
31601        "description": "connect GET requests to proxy of Node",
31602        "operationId": "connectCoreV1GetNodeProxyWithPath",
31603        "produces": [
31604          "*/*"
31605        ],
31606        "responses": {
31607          "200": {
31608            "description": "OK",
31609            "schema": {
31610              "type": "string"
31611            }
31612          },
31613          "401": {
31614            "description": "Unauthorized"
31615          }
31616        },
31617        "schemes": [
31618          "https"
31619        ],
31620        "tags": [
31621          "core_v1"
31622        ],
31623        "x-kubernetes-action": "connect",
31624        "x-kubernetes-group-version-kind": {
31625          "group": "",
31626          "kind": "NodeProxyOptions",
31627          "version": "v1"
31628        }
31629      },
31630      "head": {
31631        "consumes": [
31632          "*/*"
31633        ],
31634        "description": "connect HEAD requests to proxy of Node",
31635        "operationId": "connectCoreV1HeadNodeProxyWithPath",
31636        "produces": [
31637          "*/*"
31638        ],
31639        "responses": {
31640          "200": {
31641            "description": "OK",
31642            "schema": {
31643              "type": "string"
31644            }
31645          },
31646          "401": {
31647            "description": "Unauthorized"
31648          }
31649        },
31650        "schemes": [
31651          "https"
31652        ],
31653        "tags": [
31654          "core_v1"
31655        ],
31656        "x-kubernetes-action": "connect",
31657        "x-kubernetes-group-version-kind": {
31658          "group": "",
31659          "kind": "NodeProxyOptions",
31660          "version": "v1"
31661        }
31662      },
31663      "options": {
31664        "consumes": [
31665          "*/*"
31666        ],
31667        "description": "connect OPTIONS requests to proxy of Node",
31668        "operationId": "connectCoreV1OptionsNodeProxyWithPath",
31669        "produces": [
31670          "*/*"
31671        ],
31672        "responses": {
31673          "200": {
31674            "description": "OK",
31675            "schema": {
31676              "type": "string"
31677            }
31678          },
31679          "401": {
31680            "description": "Unauthorized"
31681          }
31682        },
31683        "schemes": [
31684          "https"
31685        ],
31686        "tags": [
31687          "core_v1"
31688        ],
31689        "x-kubernetes-action": "connect",
31690        "x-kubernetes-group-version-kind": {
31691          "group": "",
31692          "kind": "NodeProxyOptions",
31693          "version": "v1"
31694        }
31695      },
31696      "parameters": [
31697        {
31698          "description": "name of the NodeProxyOptions",
31699          "in": "path",
31700          "name": "name",
31701          "required": true,
31702          "type": "string",
31703          "uniqueItems": true
31704        },
31705        {
31706          "description": "path to the resource",
31707          "in": "path",
31708          "name": "path",
31709          "required": true,
31710          "type": "string",
31711          "uniqueItems": true
31712        },
31713        {
31714          "description": "Path is the URL path to use for the current proxy request to node.",
31715          "in": "query",
31716          "name": "path",
31717          "type": "string",
31718          "uniqueItems": true
31719        }
31720      ],
31721      "patch": {
31722        "consumes": [
31723          "*/*"
31724        ],
31725        "description": "connect PATCH requests to proxy of Node",
31726        "operationId": "connectCoreV1PatchNodeProxyWithPath",
31727        "produces": [
31728          "*/*"
31729        ],
31730        "responses": {
31731          "200": {
31732            "description": "OK",
31733            "schema": {
31734              "type": "string"
31735            }
31736          },
31737          "401": {
31738            "description": "Unauthorized"
31739          }
31740        },
31741        "schemes": [
31742          "https"
31743        ],
31744        "tags": [
31745          "core_v1"
31746        ],
31747        "x-kubernetes-action": "connect",
31748        "x-kubernetes-group-version-kind": {
31749          "group": "",
31750          "kind": "NodeProxyOptions",
31751          "version": "v1"
31752        }
31753      },
31754      "post": {
31755        "consumes": [
31756          "*/*"
31757        ],
31758        "description": "connect POST requests to proxy of Node",
31759        "operationId": "connectCoreV1PostNodeProxyWithPath",
31760        "produces": [
31761          "*/*"
31762        ],
31763        "responses": {
31764          "200": {
31765            "description": "OK",
31766            "schema": {
31767              "type": "string"
31768            }
31769          },
31770          "401": {
31771            "description": "Unauthorized"
31772          }
31773        },
31774        "schemes": [
31775          "https"
31776        ],
31777        "tags": [
31778          "core_v1"
31779        ],
31780        "x-kubernetes-action": "connect",
31781        "x-kubernetes-group-version-kind": {
31782          "group": "",
31783          "kind": "NodeProxyOptions",
31784          "version": "v1"
31785        }
31786      },
31787      "put": {
31788        "consumes": [
31789          "*/*"
31790        ],
31791        "description": "connect PUT requests to proxy of Node",
31792        "operationId": "connectCoreV1PutNodeProxyWithPath",
31793        "produces": [
31794          "*/*"
31795        ],
31796        "responses": {
31797          "200": {
31798            "description": "OK",
31799            "schema": {
31800              "type": "string"
31801            }
31802          },
31803          "401": {
31804            "description": "Unauthorized"
31805          }
31806        },
31807        "schemes": [
31808          "https"
31809        ],
31810        "tags": [
31811          "core_v1"
31812        ],
31813        "x-kubernetes-action": "connect",
31814        "x-kubernetes-group-version-kind": {
31815          "group": "",
31816          "kind": "NodeProxyOptions",
31817          "version": "v1"
31818        }
31819      }
31820    },
31821    "/api/v1/nodes/{name}/status": {
31822      "get": {
31823        "consumes": [
31824          "*/*"
31825        ],
31826        "description": "read status of the specified Node",
31827        "operationId": "readCoreV1NodeStatus",
31828        "produces": [
31829          "application/json",
31830          "application/yaml",
31831          "application/vnd.kubernetes.protobuf"
31832        ],
31833        "responses": {
31834          "200": {
31835            "description": "OK",
31836            "schema": {
31837              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31838            }
31839          },
31840          "401": {
31841            "description": "Unauthorized"
31842          }
31843        },
31844        "schemes": [
31845          "https"
31846        ],
31847        "tags": [
31848          "core_v1"
31849        ],
31850        "x-kubernetes-action": "get",
31851        "x-kubernetes-group-version-kind": {
31852          "group": "",
31853          "kind": "Node",
31854          "version": "v1"
31855        }
31856      },
31857      "parameters": [
31858        {
31859          "description": "name of the Node",
31860          "in": "path",
31861          "name": "name",
31862          "required": true,
31863          "type": "string",
31864          "uniqueItems": true
31865        },
31866        {
31867          "description": "If 'true', then the output is pretty printed.",
31868          "in": "query",
31869          "name": "pretty",
31870          "type": "string",
31871          "uniqueItems": true
31872        }
31873      ],
31874      "patch": {
31875        "consumes": [
31876          "application/json-patch+json",
31877          "application/merge-patch+json",
31878          "application/strategic-merge-patch+json"
31879        ],
31880        "description": "partially update status of the specified Node",
31881        "operationId": "patchCoreV1NodeStatus",
31882        "parameters": [
31883          {
31884            "in": "body",
31885            "name": "body",
31886            "required": true,
31887            "schema": {
31888              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
31889            }
31890          },
31891          {
31892            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31893            "in": "query",
31894            "name": "dryRun",
31895            "type": "string",
31896            "uniqueItems": true
31897          },
31898          {
31899            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
31900            "in": "query",
31901            "name": "fieldManager",
31902            "type": "string",
31903            "uniqueItems": true
31904          },
31905          {
31906            "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.",
31907            "in": "query",
31908            "name": "force",
31909            "type": "boolean",
31910            "uniqueItems": true
31911          }
31912        ],
31913        "produces": [
31914          "application/json",
31915          "application/yaml",
31916          "application/vnd.kubernetes.protobuf"
31917        ],
31918        "responses": {
31919          "200": {
31920            "description": "OK",
31921            "schema": {
31922              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31923            }
31924          },
31925          "401": {
31926            "description": "Unauthorized"
31927          }
31928        },
31929        "schemes": [
31930          "https"
31931        ],
31932        "tags": [
31933          "core_v1"
31934        ],
31935        "x-kubernetes-action": "patch",
31936        "x-kubernetes-group-version-kind": {
31937          "group": "",
31938          "kind": "Node",
31939          "version": "v1"
31940        }
31941      },
31942      "put": {
31943        "consumes": [
31944          "*/*"
31945        ],
31946        "description": "replace status of the specified Node",
31947        "operationId": "replaceCoreV1NodeStatus",
31948        "parameters": [
31949          {
31950            "in": "body",
31951            "name": "body",
31952            "required": true,
31953            "schema": {
31954              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31955            }
31956          },
31957          {
31958            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
31959            "in": "query",
31960            "name": "dryRun",
31961            "type": "string",
31962            "uniqueItems": true
31963          },
31964          {
31965            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
31966            "in": "query",
31967            "name": "fieldManager",
31968            "type": "string",
31969            "uniqueItems": true
31970          }
31971        ],
31972        "produces": [
31973          "application/json",
31974          "application/yaml",
31975          "application/vnd.kubernetes.protobuf"
31976        ],
31977        "responses": {
31978          "200": {
31979            "description": "OK",
31980            "schema": {
31981              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31982            }
31983          },
31984          "201": {
31985            "description": "Created",
31986            "schema": {
31987              "$ref": "#/definitions/io.k8s.api.core.v1.Node"
31988            }
31989          },
31990          "401": {
31991            "description": "Unauthorized"
31992          }
31993        },
31994        "schemes": [
31995          "https"
31996        ],
31997        "tags": [
31998          "core_v1"
31999        ],
32000        "x-kubernetes-action": "put",
32001        "x-kubernetes-group-version-kind": {
32002          "group": "",
32003          "kind": "Node",
32004          "version": "v1"
32005        }
32006      }
32007    },
32008    "/api/v1/persistentvolumeclaims": {
32009      "get": {
32010        "consumes": [
32011          "*/*"
32012        ],
32013        "description": "list or watch objects of kind PersistentVolumeClaim",
32014        "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces",
32015        "produces": [
32016          "application/json",
32017          "application/yaml",
32018          "application/vnd.kubernetes.protobuf",
32019          "application/json;stream=watch",
32020          "application/vnd.kubernetes.protobuf;stream=watch"
32021        ],
32022        "responses": {
32023          "200": {
32024            "description": "OK",
32025            "schema": {
32026              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimList"
32027            }
32028          },
32029          "401": {
32030            "description": "Unauthorized"
32031          }
32032        },
32033        "schemes": [
32034          "https"
32035        ],
32036        "tags": [
32037          "core_v1"
32038        ],
32039        "x-kubernetes-action": "list",
32040        "x-kubernetes-group-version-kind": {
32041          "group": "",
32042          "kind": "PersistentVolumeClaim",
32043          "version": "v1"
32044        }
32045      },
32046      "parameters": [
32047        {
32048          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
32049          "in": "query",
32050          "name": "allowWatchBookmarks",
32051          "type": "boolean",
32052          "uniqueItems": true
32053        },
32054        {
32055          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32056          "in": "query",
32057          "name": "continue",
32058          "type": "string",
32059          "uniqueItems": true
32060        },
32061        {
32062          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32063          "in": "query",
32064          "name": "fieldSelector",
32065          "type": "string",
32066          "uniqueItems": true
32067        },
32068        {
32069          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32070          "in": "query",
32071          "name": "labelSelector",
32072          "type": "string",
32073          "uniqueItems": true
32074        },
32075        {
32076          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32077          "in": "query",
32078          "name": "limit",
32079          "type": "integer",
32080          "uniqueItems": true
32081        },
32082        {
32083          "description": "If 'true', then the output is pretty printed.",
32084          "in": "query",
32085          "name": "pretty",
32086          "type": "string",
32087          "uniqueItems": true
32088        },
32089        {
32090          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
32091          "in": "query",
32092          "name": "resourceVersion",
32093          "type": "string",
32094          "uniqueItems": true
32095        },
32096        {
32097          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32098          "in": "query",
32099          "name": "timeoutSeconds",
32100          "type": "integer",
32101          "uniqueItems": true
32102        },
32103        {
32104          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32105          "in": "query",
32106          "name": "watch",
32107          "type": "boolean",
32108          "uniqueItems": true
32109        }
32110      ]
32111    },
32112    "/api/v1/persistentvolumes": {
32113      "delete": {
32114        "consumes": [
32115          "*/*"
32116        ],
32117        "description": "delete collection of PersistentVolume",
32118        "operationId": "deleteCoreV1CollectionPersistentVolume",
32119        "parameters": [
32120          {
32121            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
32122            "in": "query",
32123            "name": "allowWatchBookmarks",
32124            "type": "boolean",
32125            "uniqueItems": true
32126          },
32127          {
32128            "in": "body",
32129            "name": "body",
32130            "schema": {
32131              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
32132            }
32133          },
32134          {
32135            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32136            "in": "query",
32137            "name": "continue",
32138            "type": "string",
32139            "uniqueItems": true
32140          },
32141          {
32142            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32143            "in": "query",
32144            "name": "dryRun",
32145            "type": "string",
32146            "uniqueItems": true
32147          },
32148          {
32149            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32150            "in": "query",
32151            "name": "fieldSelector",
32152            "type": "string",
32153            "uniqueItems": true
32154          },
32155          {
32156            "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.",
32157            "in": "query",
32158            "name": "gracePeriodSeconds",
32159            "type": "integer",
32160            "uniqueItems": true
32161          },
32162          {
32163            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32164            "in": "query",
32165            "name": "labelSelector",
32166            "type": "string",
32167            "uniqueItems": true
32168          },
32169          {
32170            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32171            "in": "query",
32172            "name": "limit",
32173            "type": "integer",
32174            "uniqueItems": true
32175          },
32176          {
32177            "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.",
32178            "in": "query",
32179            "name": "orphanDependents",
32180            "type": "boolean",
32181            "uniqueItems": true
32182          },
32183          {
32184            "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.",
32185            "in": "query",
32186            "name": "propagationPolicy",
32187            "type": "string",
32188            "uniqueItems": true
32189          },
32190          {
32191            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
32192            "in": "query",
32193            "name": "resourceVersion",
32194            "type": "string",
32195            "uniqueItems": true
32196          },
32197          {
32198            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32199            "in": "query",
32200            "name": "timeoutSeconds",
32201            "type": "integer",
32202            "uniqueItems": true
32203          },
32204          {
32205            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32206            "in": "query",
32207            "name": "watch",
32208            "type": "boolean",
32209            "uniqueItems": true
32210          }
32211        ],
32212        "produces": [
32213          "application/json",
32214          "application/yaml",
32215          "application/vnd.kubernetes.protobuf"
32216        ],
32217        "responses": {
32218          "200": {
32219            "description": "OK",
32220            "schema": {
32221              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
32222            }
32223          },
32224          "401": {
32225            "description": "Unauthorized"
32226          }
32227        },
32228        "schemes": [
32229          "https"
32230        ],
32231        "tags": [
32232          "core_v1"
32233        ],
32234        "x-kubernetes-action": "deletecollection",
32235        "x-kubernetes-group-version-kind": {
32236          "group": "",
32237          "kind": "PersistentVolume",
32238          "version": "v1"
32239        }
32240      },
32241      "get": {
32242        "consumes": [
32243          "*/*"
32244        ],
32245        "description": "list or watch objects of kind PersistentVolume",
32246        "operationId": "listCoreV1PersistentVolume",
32247        "parameters": [
32248          {
32249            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
32250            "in": "query",
32251            "name": "allowWatchBookmarks",
32252            "type": "boolean",
32253            "uniqueItems": true
32254          },
32255          {
32256            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32257            "in": "query",
32258            "name": "continue",
32259            "type": "string",
32260            "uniqueItems": true
32261          },
32262          {
32263            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32264            "in": "query",
32265            "name": "fieldSelector",
32266            "type": "string",
32267            "uniqueItems": true
32268          },
32269          {
32270            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32271            "in": "query",
32272            "name": "labelSelector",
32273            "type": "string",
32274            "uniqueItems": true
32275          },
32276          {
32277            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32278            "in": "query",
32279            "name": "limit",
32280            "type": "integer",
32281            "uniqueItems": true
32282          },
32283          {
32284            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
32285            "in": "query",
32286            "name": "resourceVersion",
32287            "type": "string",
32288            "uniqueItems": true
32289          },
32290          {
32291            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32292            "in": "query",
32293            "name": "timeoutSeconds",
32294            "type": "integer",
32295            "uniqueItems": true
32296          },
32297          {
32298            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32299            "in": "query",
32300            "name": "watch",
32301            "type": "boolean",
32302            "uniqueItems": true
32303          }
32304        ],
32305        "produces": [
32306          "application/json",
32307          "application/yaml",
32308          "application/vnd.kubernetes.protobuf",
32309          "application/json;stream=watch",
32310          "application/vnd.kubernetes.protobuf;stream=watch"
32311        ],
32312        "responses": {
32313          "200": {
32314            "description": "OK",
32315            "schema": {
32316              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeList"
32317            }
32318          },
32319          "401": {
32320            "description": "Unauthorized"
32321          }
32322        },
32323        "schemes": [
32324          "https"
32325        ],
32326        "tags": [
32327          "core_v1"
32328        ],
32329        "x-kubernetes-action": "list",
32330        "x-kubernetes-group-version-kind": {
32331          "group": "",
32332          "kind": "PersistentVolume",
32333          "version": "v1"
32334        }
32335      },
32336      "parameters": [
32337        {
32338          "description": "If 'true', then the output is pretty printed.",
32339          "in": "query",
32340          "name": "pretty",
32341          "type": "string",
32342          "uniqueItems": true
32343        }
32344      ],
32345      "post": {
32346        "consumes": [
32347          "*/*"
32348        ],
32349        "description": "create a PersistentVolume",
32350        "operationId": "createCoreV1PersistentVolume",
32351        "parameters": [
32352          {
32353            "in": "body",
32354            "name": "body",
32355            "required": true,
32356            "schema": {
32357              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32358            }
32359          },
32360          {
32361            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32362            "in": "query",
32363            "name": "dryRun",
32364            "type": "string",
32365            "uniqueItems": true
32366          },
32367          {
32368            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32369            "in": "query",
32370            "name": "fieldManager",
32371            "type": "string",
32372            "uniqueItems": true
32373          }
32374        ],
32375        "produces": [
32376          "application/json",
32377          "application/yaml",
32378          "application/vnd.kubernetes.protobuf"
32379        ],
32380        "responses": {
32381          "200": {
32382            "description": "OK",
32383            "schema": {
32384              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32385            }
32386          },
32387          "201": {
32388            "description": "Created",
32389            "schema": {
32390              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32391            }
32392          },
32393          "202": {
32394            "description": "Accepted",
32395            "schema": {
32396              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32397            }
32398          },
32399          "401": {
32400            "description": "Unauthorized"
32401          }
32402        },
32403        "schemes": [
32404          "https"
32405        ],
32406        "tags": [
32407          "core_v1"
32408        ],
32409        "x-kubernetes-action": "post",
32410        "x-kubernetes-group-version-kind": {
32411          "group": "",
32412          "kind": "PersistentVolume",
32413          "version": "v1"
32414        }
32415      }
32416    },
32417    "/api/v1/persistentvolumes/{name}": {
32418      "delete": {
32419        "consumes": [
32420          "*/*"
32421        ],
32422        "description": "delete a PersistentVolume",
32423        "operationId": "deleteCoreV1PersistentVolume",
32424        "parameters": [
32425          {
32426            "in": "body",
32427            "name": "body",
32428            "schema": {
32429              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
32430            }
32431          },
32432          {
32433            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32434            "in": "query",
32435            "name": "dryRun",
32436            "type": "string",
32437            "uniqueItems": true
32438          },
32439          {
32440            "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.",
32441            "in": "query",
32442            "name": "gracePeriodSeconds",
32443            "type": "integer",
32444            "uniqueItems": true
32445          },
32446          {
32447            "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.",
32448            "in": "query",
32449            "name": "orphanDependents",
32450            "type": "boolean",
32451            "uniqueItems": true
32452          },
32453          {
32454            "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.",
32455            "in": "query",
32456            "name": "propagationPolicy",
32457            "type": "string",
32458            "uniqueItems": true
32459          }
32460        ],
32461        "produces": [
32462          "application/json",
32463          "application/yaml",
32464          "application/vnd.kubernetes.protobuf"
32465        ],
32466        "responses": {
32467          "200": {
32468            "description": "OK",
32469            "schema": {
32470              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
32471            }
32472          },
32473          "202": {
32474            "description": "Accepted",
32475            "schema": {
32476              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
32477            }
32478          },
32479          "401": {
32480            "description": "Unauthorized"
32481          }
32482        },
32483        "schemes": [
32484          "https"
32485        ],
32486        "tags": [
32487          "core_v1"
32488        ],
32489        "x-kubernetes-action": "delete",
32490        "x-kubernetes-group-version-kind": {
32491          "group": "",
32492          "kind": "PersistentVolume",
32493          "version": "v1"
32494        }
32495      },
32496      "get": {
32497        "consumes": [
32498          "*/*"
32499        ],
32500        "description": "read the specified PersistentVolume",
32501        "operationId": "readCoreV1PersistentVolume",
32502        "parameters": [
32503          {
32504            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
32505            "in": "query",
32506            "name": "exact",
32507            "type": "boolean",
32508            "uniqueItems": true
32509          },
32510          {
32511            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
32512            "in": "query",
32513            "name": "export",
32514            "type": "boolean",
32515            "uniqueItems": true
32516          }
32517        ],
32518        "produces": [
32519          "application/json",
32520          "application/yaml",
32521          "application/vnd.kubernetes.protobuf"
32522        ],
32523        "responses": {
32524          "200": {
32525            "description": "OK",
32526            "schema": {
32527              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32528            }
32529          },
32530          "401": {
32531            "description": "Unauthorized"
32532          }
32533        },
32534        "schemes": [
32535          "https"
32536        ],
32537        "tags": [
32538          "core_v1"
32539        ],
32540        "x-kubernetes-action": "get",
32541        "x-kubernetes-group-version-kind": {
32542          "group": "",
32543          "kind": "PersistentVolume",
32544          "version": "v1"
32545        }
32546      },
32547      "parameters": [
32548        {
32549          "description": "name of the PersistentVolume",
32550          "in": "path",
32551          "name": "name",
32552          "required": true,
32553          "type": "string",
32554          "uniqueItems": true
32555        },
32556        {
32557          "description": "If 'true', then the output is pretty printed.",
32558          "in": "query",
32559          "name": "pretty",
32560          "type": "string",
32561          "uniqueItems": true
32562        }
32563      ],
32564      "patch": {
32565        "consumes": [
32566          "application/json-patch+json",
32567          "application/merge-patch+json",
32568          "application/strategic-merge-patch+json"
32569        ],
32570        "description": "partially update the specified PersistentVolume",
32571        "operationId": "patchCoreV1PersistentVolume",
32572        "parameters": [
32573          {
32574            "in": "body",
32575            "name": "body",
32576            "required": true,
32577            "schema": {
32578              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
32579            }
32580          },
32581          {
32582            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32583            "in": "query",
32584            "name": "dryRun",
32585            "type": "string",
32586            "uniqueItems": true
32587          },
32588          {
32589            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
32590            "in": "query",
32591            "name": "fieldManager",
32592            "type": "string",
32593            "uniqueItems": true
32594          },
32595          {
32596            "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.",
32597            "in": "query",
32598            "name": "force",
32599            "type": "boolean",
32600            "uniqueItems": true
32601          }
32602        ],
32603        "produces": [
32604          "application/json",
32605          "application/yaml",
32606          "application/vnd.kubernetes.protobuf"
32607        ],
32608        "responses": {
32609          "200": {
32610            "description": "OK",
32611            "schema": {
32612              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32613            }
32614          },
32615          "401": {
32616            "description": "Unauthorized"
32617          }
32618        },
32619        "schemes": [
32620          "https"
32621        ],
32622        "tags": [
32623          "core_v1"
32624        ],
32625        "x-kubernetes-action": "patch",
32626        "x-kubernetes-group-version-kind": {
32627          "group": "",
32628          "kind": "PersistentVolume",
32629          "version": "v1"
32630        }
32631      },
32632      "put": {
32633        "consumes": [
32634          "*/*"
32635        ],
32636        "description": "replace the specified PersistentVolume",
32637        "operationId": "replaceCoreV1PersistentVolume",
32638        "parameters": [
32639          {
32640            "in": "body",
32641            "name": "body",
32642            "required": true,
32643            "schema": {
32644              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32645            }
32646          },
32647          {
32648            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32649            "in": "query",
32650            "name": "dryRun",
32651            "type": "string",
32652            "uniqueItems": true
32653          },
32654          {
32655            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32656            "in": "query",
32657            "name": "fieldManager",
32658            "type": "string",
32659            "uniqueItems": true
32660          }
32661        ],
32662        "produces": [
32663          "application/json",
32664          "application/yaml",
32665          "application/vnd.kubernetes.protobuf"
32666        ],
32667        "responses": {
32668          "200": {
32669            "description": "OK",
32670            "schema": {
32671              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32672            }
32673          },
32674          "201": {
32675            "description": "Created",
32676            "schema": {
32677              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32678            }
32679          },
32680          "401": {
32681            "description": "Unauthorized"
32682          }
32683        },
32684        "schemes": [
32685          "https"
32686        ],
32687        "tags": [
32688          "core_v1"
32689        ],
32690        "x-kubernetes-action": "put",
32691        "x-kubernetes-group-version-kind": {
32692          "group": "",
32693          "kind": "PersistentVolume",
32694          "version": "v1"
32695        }
32696      }
32697    },
32698    "/api/v1/persistentvolumes/{name}/status": {
32699      "get": {
32700        "consumes": [
32701          "*/*"
32702        ],
32703        "description": "read status of the specified PersistentVolume",
32704        "operationId": "readCoreV1PersistentVolumeStatus",
32705        "produces": [
32706          "application/json",
32707          "application/yaml",
32708          "application/vnd.kubernetes.protobuf"
32709        ],
32710        "responses": {
32711          "200": {
32712            "description": "OK",
32713            "schema": {
32714              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32715            }
32716          },
32717          "401": {
32718            "description": "Unauthorized"
32719          }
32720        },
32721        "schemes": [
32722          "https"
32723        ],
32724        "tags": [
32725          "core_v1"
32726        ],
32727        "x-kubernetes-action": "get",
32728        "x-kubernetes-group-version-kind": {
32729          "group": "",
32730          "kind": "PersistentVolume",
32731          "version": "v1"
32732        }
32733      },
32734      "parameters": [
32735        {
32736          "description": "name of the PersistentVolume",
32737          "in": "path",
32738          "name": "name",
32739          "required": true,
32740          "type": "string",
32741          "uniqueItems": true
32742        },
32743        {
32744          "description": "If 'true', then the output is pretty printed.",
32745          "in": "query",
32746          "name": "pretty",
32747          "type": "string",
32748          "uniqueItems": true
32749        }
32750      ],
32751      "patch": {
32752        "consumes": [
32753          "application/json-patch+json",
32754          "application/merge-patch+json",
32755          "application/strategic-merge-patch+json"
32756        ],
32757        "description": "partially update status of the specified PersistentVolume",
32758        "operationId": "patchCoreV1PersistentVolumeStatus",
32759        "parameters": [
32760          {
32761            "in": "body",
32762            "name": "body",
32763            "required": true,
32764            "schema": {
32765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
32766            }
32767          },
32768          {
32769            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32770            "in": "query",
32771            "name": "dryRun",
32772            "type": "string",
32773            "uniqueItems": true
32774          },
32775          {
32776            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
32777            "in": "query",
32778            "name": "fieldManager",
32779            "type": "string",
32780            "uniqueItems": true
32781          },
32782          {
32783            "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.",
32784            "in": "query",
32785            "name": "force",
32786            "type": "boolean",
32787            "uniqueItems": true
32788          }
32789        ],
32790        "produces": [
32791          "application/json",
32792          "application/yaml",
32793          "application/vnd.kubernetes.protobuf"
32794        ],
32795        "responses": {
32796          "200": {
32797            "description": "OK",
32798            "schema": {
32799              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32800            }
32801          },
32802          "401": {
32803            "description": "Unauthorized"
32804          }
32805        },
32806        "schemes": [
32807          "https"
32808        ],
32809        "tags": [
32810          "core_v1"
32811        ],
32812        "x-kubernetes-action": "patch",
32813        "x-kubernetes-group-version-kind": {
32814          "group": "",
32815          "kind": "PersistentVolume",
32816          "version": "v1"
32817        }
32818      },
32819      "put": {
32820        "consumes": [
32821          "*/*"
32822        ],
32823        "description": "replace status of the specified PersistentVolume",
32824        "operationId": "replaceCoreV1PersistentVolumeStatus",
32825        "parameters": [
32826          {
32827            "in": "body",
32828            "name": "body",
32829            "required": true,
32830            "schema": {
32831              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32832            }
32833          },
32834          {
32835            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
32836            "in": "query",
32837            "name": "dryRun",
32838            "type": "string",
32839            "uniqueItems": true
32840          },
32841          {
32842            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
32843            "in": "query",
32844            "name": "fieldManager",
32845            "type": "string",
32846            "uniqueItems": true
32847          }
32848        ],
32849        "produces": [
32850          "application/json",
32851          "application/yaml",
32852          "application/vnd.kubernetes.protobuf"
32853        ],
32854        "responses": {
32855          "200": {
32856            "description": "OK",
32857            "schema": {
32858              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32859            }
32860          },
32861          "201": {
32862            "description": "Created",
32863            "schema": {
32864              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume"
32865            }
32866          },
32867          "401": {
32868            "description": "Unauthorized"
32869          }
32870        },
32871        "schemes": [
32872          "https"
32873        ],
32874        "tags": [
32875          "core_v1"
32876        ],
32877        "x-kubernetes-action": "put",
32878        "x-kubernetes-group-version-kind": {
32879          "group": "",
32880          "kind": "PersistentVolume",
32881          "version": "v1"
32882        }
32883      }
32884    },
32885    "/api/v1/pods": {
32886      "get": {
32887        "consumes": [
32888          "*/*"
32889        ],
32890        "description": "list or watch objects of kind Pod",
32891        "operationId": "listCoreV1PodForAllNamespaces",
32892        "produces": [
32893          "application/json",
32894          "application/yaml",
32895          "application/vnd.kubernetes.protobuf",
32896          "application/json;stream=watch",
32897          "application/vnd.kubernetes.protobuf;stream=watch"
32898        ],
32899        "responses": {
32900          "200": {
32901            "description": "OK",
32902            "schema": {
32903              "$ref": "#/definitions/io.k8s.api.core.v1.PodList"
32904            }
32905          },
32906          "401": {
32907            "description": "Unauthorized"
32908          }
32909        },
32910        "schemes": [
32911          "https"
32912        ],
32913        "tags": [
32914          "core_v1"
32915        ],
32916        "x-kubernetes-action": "list",
32917        "x-kubernetes-group-version-kind": {
32918          "group": "",
32919          "kind": "Pod",
32920          "version": "v1"
32921        }
32922      },
32923      "parameters": [
32924        {
32925          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
32926          "in": "query",
32927          "name": "allowWatchBookmarks",
32928          "type": "boolean",
32929          "uniqueItems": true
32930        },
32931        {
32932          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
32933          "in": "query",
32934          "name": "continue",
32935          "type": "string",
32936          "uniqueItems": true
32937        },
32938        {
32939          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
32940          "in": "query",
32941          "name": "fieldSelector",
32942          "type": "string",
32943          "uniqueItems": true
32944        },
32945        {
32946          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
32947          "in": "query",
32948          "name": "labelSelector",
32949          "type": "string",
32950          "uniqueItems": true
32951        },
32952        {
32953          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
32954          "in": "query",
32955          "name": "limit",
32956          "type": "integer",
32957          "uniqueItems": true
32958        },
32959        {
32960          "description": "If 'true', then the output is pretty printed.",
32961          "in": "query",
32962          "name": "pretty",
32963          "type": "string",
32964          "uniqueItems": true
32965        },
32966        {
32967          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
32968          "in": "query",
32969          "name": "resourceVersion",
32970          "type": "string",
32971          "uniqueItems": true
32972        },
32973        {
32974          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
32975          "in": "query",
32976          "name": "timeoutSeconds",
32977          "type": "integer",
32978          "uniqueItems": true
32979        },
32980        {
32981          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
32982          "in": "query",
32983          "name": "watch",
32984          "type": "boolean",
32985          "uniqueItems": true
32986        }
32987      ]
32988    },
32989    "/api/v1/podtemplates": {
32990      "get": {
32991        "consumes": [
32992          "*/*"
32993        ],
32994        "description": "list or watch objects of kind PodTemplate",
32995        "operationId": "listCoreV1PodTemplateForAllNamespaces",
32996        "produces": [
32997          "application/json",
32998          "application/yaml",
32999          "application/vnd.kubernetes.protobuf",
33000          "application/json;stream=watch",
33001          "application/vnd.kubernetes.protobuf;stream=watch"
33002        ],
33003        "responses": {
33004          "200": {
33005            "description": "OK",
33006            "schema": {
33007              "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplateList"
33008            }
33009          },
33010          "401": {
33011            "description": "Unauthorized"
33012          }
33013        },
33014        "schemes": [
33015          "https"
33016        ],
33017        "tags": [
33018          "core_v1"
33019        ],
33020        "x-kubernetes-action": "list",
33021        "x-kubernetes-group-version-kind": {
33022          "group": "",
33023          "kind": "PodTemplate",
33024          "version": "v1"
33025        }
33026      },
33027      "parameters": [
33028        {
33029          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33030          "in": "query",
33031          "name": "allowWatchBookmarks",
33032          "type": "boolean",
33033          "uniqueItems": true
33034        },
33035        {
33036          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33037          "in": "query",
33038          "name": "continue",
33039          "type": "string",
33040          "uniqueItems": true
33041        },
33042        {
33043          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33044          "in": "query",
33045          "name": "fieldSelector",
33046          "type": "string",
33047          "uniqueItems": true
33048        },
33049        {
33050          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33051          "in": "query",
33052          "name": "labelSelector",
33053          "type": "string",
33054          "uniqueItems": true
33055        },
33056        {
33057          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33058          "in": "query",
33059          "name": "limit",
33060          "type": "integer",
33061          "uniqueItems": true
33062        },
33063        {
33064          "description": "If 'true', then the output is pretty printed.",
33065          "in": "query",
33066          "name": "pretty",
33067          "type": "string",
33068          "uniqueItems": true
33069        },
33070        {
33071          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33072          "in": "query",
33073          "name": "resourceVersion",
33074          "type": "string",
33075          "uniqueItems": true
33076        },
33077        {
33078          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33079          "in": "query",
33080          "name": "timeoutSeconds",
33081          "type": "integer",
33082          "uniqueItems": true
33083        },
33084        {
33085          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33086          "in": "query",
33087          "name": "watch",
33088          "type": "boolean",
33089          "uniqueItems": true
33090        }
33091      ]
33092    },
33093    "/api/v1/replicationcontrollers": {
33094      "get": {
33095        "consumes": [
33096          "*/*"
33097        ],
33098        "description": "list or watch objects of kind ReplicationController",
33099        "operationId": "listCoreV1ReplicationControllerForAllNamespaces",
33100        "produces": [
33101          "application/json",
33102          "application/yaml",
33103          "application/vnd.kubernetes.protobuf",
33104          "application/json;stream=watch",
33105          "application/vnd.kubernetes.protobuf;stream=watch"
33106        ],
33107        "responses": {
33108          "200": {
33109            "description": "OK",
33110            "schema": {
33111              "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationControllerList"
33112            }
33113          },
33114          "401": {
33115            "description": "Unauthorized"
33116          }
33117        },
33118        "schemes": [
33119          "https"
33120        ],
33121        "tags": [
33122          "core_v1"
33123        ],
33124        "x-kubernetes-action": "list",
33125        "x-kubernetes-group-version-kind": {
33126          "group": "",
33127          "kind": "ReplicationController",
33128          "version": "v1"
33129        }
33130      },
33131      "parameters": [
33132        {
33133          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33134          "in": "query",
33135          "name": "allowWatchBookmarks",
33136          "type": "boolean",
33137          "uniqueItems": true
33138        },
33139        {
33140          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33141          "in": "query",
33142          "name": "continue",
33143          "type": "string",
33144          "uniqueItems": true
33145        },
33146        {
33147          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33148          "in": "query",
33149          "name": "fieldSelector",
33150          "type": "string",
33151          "uniqueItems": true
33152        },
33153        {
33154          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33155          "in": "query",
33156          "name": "labelSelector",
33157          "type": "string",
33158          "uniqueItems": true
33159        },
33160        {
33161          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33162          "in": "query",
33163          "name": "limit",
33164          "type": "integer",
33165          "uniqueItems": true
33166        },
33167        {
33168          "description": "If 'true', then the output is pretty printed.",
33169          "in": "query",
33170          "name": "pretty",
33171          "type": "string",
33172          "uniqueItems": true
33173        },
33174        {
33175          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33176          "in": "query",
33177          "name": "resourceVersion",
33178          "type": "string",
33179          "uniqueItems": true
33180        },
33181        {
33182          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33183          "in": "query",
33184          "name": "timeoutSeconds",
33185          "type": "integer",
33186          "uniqueItems": true
33187        },
33188        {
33189          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33190          "in": "query",
33191          "name": "watch",
33192          "type": "boolean",
33193          "uniqueItems": true
33194        }
33195      ]
33196    },
33197    "/api/v1/resourcequotas": {
33198      "get": {
33199        "consumes": [
33200          "*/*"
33201        ],
33202        "description": "list or watch objects of kind ResourceQuota",
33203        "operationId": "listCoreV1ResourceQuotaForAllNamespaces",
33204        "produces": [
33205          "application/json",
33206          "application/yaml",
33207          "application/vnd.kubernetes.protobuf",
33208          "application/json;stream=watch",
33209          "application/vnd.kubernetes.protobuf;stream=watch"
33210        ],
33211        "responses": {
33212          "200": {
33213            "description": "OK",
33214            "schema": {
33215              "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuotaList"
33216            }
33217          },
33218          "401": {
33219            "description": "Unauthorized"
33220          }
33221        },
33222        "schemes": [
33223          "https"
33224        ],
33225        "tags": [
33226          "core_v1"
33227        ],
33228        "x-kubernetes-action": "list",
33229        "x-kubernetes-group-version-kind": {
33230          "group": "",
33231          "kind": "ResourceQuota",
33232          "version": "v1"
33233        }
33234      },
33235      "parameters": [
33236        {
33237          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33238          "in": "query",
33239          "name": "allowWatchBookmarks",
33240          "type": "boolean",
33241          "uniqueItems": true
33242        },
33243        {
33244          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33245          "in": "query",
33246          "name": "continue",
33247          "type": "string",
33248          "uniqueItems": true
33249        },
33250        {
33251          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33252          "in": "query",
33253          "name": "fieldSelector",
33254          "type": "string",
33255          "uniqueItems": true
33256        },
33257        {
33258          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33259          "in": "query",
33260          "name": "labelSelector",
33261          "type": "string",
33262          "uniqueItems": true
33263        },
33264        {
33265          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33266          "in": "query",
33267          "name": "limit",
33268          "type": "integer",
33269          "uniqueItems": true
33270        },
33271        {
33272          "description": "If 'true', then the output is pretty printed.",
33273          "in": "query",
33274          "name": "pretty",
33275          "type": "string",
33276          "uniqueItems": true
33277        },
33278        {
33279          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33280          "in": "query",
33281          "name": "resourceVersion",
33282          "type": "string",
33283          "uniqueItems": true
33284        },
33285        {
33286          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33287          "in": "query",
33288          "name": "timeoutSeconds",
33289          "type": "integer",
33290          "uniqueItems": true
33291        },
33292        {
33293          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33294          "in": "query",
33295          "name": "watch",
33296          "type": "boolean",
33297          "uniqueItems": true
33298        }
33299      ]
33300    },
33301    "/api/v1/secrets": {
33302      "get": {
33303        "consumes": [
33304          "*/*"
33305        ],
33306        "description": "list or watch objects of kind Secret",
33307        "operationId": "listCoreV1SecretForAllNamespaces",
33308        "produces": [
33309          "application/json",
33310          "application/yaml",
33311          "application/vnd.kubernetes.protobuf",
33312          "application/json;stream=watch",
33313          "application/vnd.kubernetes.protobuf;stream=watch"
33314        ],
33315        "responses": {
33316          "200": {
33317            "description": "OK",
33318            "schema": {
33319              "$ref": "#/definitions/io.k8s.api.core.v1.SecretList"
33320            }
33321          },
33322          "401": {
33323            "description": "Unauthorized"
33324          }
33325        },
33326        "schemes": [
33327          "https"
33328        ],
33329        "tags": [
33330          "core_v1"
33331        ],
33332        "x-kubernetes-action": "list",
33333        "x-kubernetes-group-version-kind": {
33334          "group": "",
33335          "kind": "Secret",
33336          "version": "v1"
33337        }
33338      },
33339      "parameters": [
33340        {
33341          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33342          "in": "query",
33343          "name": "allowWatchBookmarks",
33344          "type": "boolean",
33345          "uniqueItems": true
33346        },
33347        {
33348          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33349          "in": "query",
33350          "name": "continue",
33351          "type": "string",
33352          "uniqueItems": true
33353        },
33354        {
33355          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33356          "in": "query",
33357          "name": "fieldSelector",
33358          "type": "string",
33359          "uniqueItems": true
33360        },
33361        {
33362          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33363          "in": "query",
33364          "name": "labelSelector",
33365          "type": "string",
33366          "uniqueItems": true
33367        },
33368        {
33369          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33370          "in": "query",
33371          "name": "limit",
33372          "type": "integer",
33373          "uniqueItems": true
33374        },
33375        {
33376          "description": "If 'true', then the output is pretty printed.",
33377          "in": "query",
33378          "name": "pretty",
33379          "type": "string",
33380          "uniqueItems": true
33381        },
33382        {
33383          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33384          "in": "query",
33385          "name": "resourceVersion",
33386          "type": "string",
33387          "uniqueItems": true
33388        },
33389        {
33390          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33391          "in": "query",
33392          "name": "timeoutSeconds",
33393          "type": "integer",
33394          "uniqueItems": true
33395        },
33396        {
33397          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33398          "in": "query",
33399          "name": "watch",
33400          "type": "boolean",
33401          "uniqueItems": true
33402        }
33403      ]
33404    },
33405    "/api/v1/serviceaccounts": {
33406      "get": {
33407        "consumes": [
33408          "*/*"
33409        ],
33410        "description": "list or watch objects of kind ServiceAccount",
33411        "operationId": "listCoreV1ServiceAccountForAllNamespaces",
33412        "produces": [
33413          "application/json",
33414          "application/yaml",
33415          "application/vnd.kubernetes.protobuf",
33416          "application/json;stream=watch",
33417          "application/vnd.kubernetes.protobuf;stream=watch"
33418        ],
33419        "responses": {
33420          "200": {
33421            "description": "OK",
33422            "schema": {
33423              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccountList"
33424            }
33425          },
33426          "401": {
33427            "description": "Unauthorized"
33428          }
33429        },
33430        "schemes": [
33431          "https"
33432        ],
33433        "tags": [
33434          "core_v1"
33435        ],
33436        "x-kubernetes-action": "list",
33437        "x-kubernetes-group-version-kind": {
33438          "group": "",
33439          "kind": "ServiceAccount",
33440          "version": "v1"
33441        }
33442      },
33443      "parameters": [
33444        {
33445          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33446          "in": "query",
33447          "name": "allowWatchBookmarks",
33448          "type": "boolean",
33449          "uniqueItems": true
33450        },
33451        {
33452          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33453          "in": "query",
33454          "name": "continue",
33455          "type": "string",
33456          "uniqueItems": true
33457        },
33458        {
33459          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33460          "in": "query",
33461          "name": "fieldSelector",
33462          "type": "string",
33463          "uniqueItems": true
33464        },
33465        {
33466          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33467          "in": "query",
33468          "name": "labelSelector",
33469          "type": "string",
33470          "uniqueItems": true
33471        },
33472        {
33473          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33474          "in": "query",
33475          "name": "limit",
33476          "type": "integer",
33477          "uniqueItems": true
33478        },
33479        {
33480          "description": "If 'true', then the output is pretty printed.",
33481          "in": "query",
33482          "name": "pretty",
33483          "type": "string",
33484          "uniqueItems": true
33485        },
33486        {
33487          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33488          "in": "query",
33489          "name": "resourceVersion",
33490          "type": "string",
33491          "uniqueItems": true
33492        },
33493        {
33494          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33495          "in": "query",
33496          "name": "timeoutSeconds",
33497          "type": "integer",
33498          "uniqueItems": true
33499        },
33500        {
33501          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33502          "in": "query",
33503          "name": "watch",
33504          "type": "boolean",
33505          "uniqueItems": true
33506        }
33507      ]
33508    },
33509    "/api/v1/services": {
33510      "get": {
33511        "consumes": [
33512          "*/*"
33513        ],
33514        "description": "list or watch objects of kind Service",
33515        "operationId": "listCoreV1ServiceForAllNamespaces",
33516        "produces": [
33517          "application/json",
33518          "application/yaml",
33519          "application/vnd.kubernetes.protobuf",
33520          "application/json;stream=watch",
33521          "application/vnd.kubernetes.protobuf;stream=watch"
33522        ],
33523        "responses": {
33524          "200": {
33525            "description": "OK",
33526            "schema": {
33527              "$ref": "#/definitions/io.k8s.api.core.v1.ServiceList"
33528            }
33529          },
33530          "401": {
33531            "description": "Unauthorized"
33532          }
33533        },
33534        "schemes": [
33535          "https"
33536        ],
33537        "tags": [
33538          "core_v1"
33539        ],
33540        "x-kubernetes-action": "list",
33541        "x-kubernetes-group-version-kind": {
33542          "group": "",
33543          "kind": "Service",
33544          "version": "v1"
33545        }
33546      },
33547      "parameters": [
33548        {
33549          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33550          "in": "query",
33551          "name": "allowWatchBookmarks",
33552          "type": "boolean",
33553          "uniqueItems": true
33554        },
33555        {
33556          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33557          "in": "query",
33558          "name": "continue",
33559          "type": "string",
33560          "uniqueItems": true
33561        },
33562        {
33563          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33564          "in": "query",
33565          "name": "fieldSelector",
33566          "type": "string",
33567          "uniqueItems": true
33568        },
33569        {
33570          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33571          "in": "query",
33572          "name": "labelSelector",
33573          "type": "string",
33574          "uniqueItems": true
33575        },
33576        {
33577          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33578          "in": "query",
33579          "name": "limit",
33580          "type": "integer",
33581          "uniqueItems": true
33582        },
33583        {
33584          "description": "If 'true', then the output is pretty printed.",
33585          "in": "query",
33586          "name": "pretty",
33587          "type": "string",
33588          "uniqueItems": true
33589        },
33590        {
33591          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33592          "in": "query",
33593          "name": "resourceVersion",
33594          "type": "string",
33595          "uniqueItems": true
33596        },
33597        {
33598          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33599          "in": "query",
33600          "name": "timeoutSeconds",
33601          "type": "integer",
33602          "uniqueItems": true
33603        },
33604        {
33605          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33606          "in": "query",
33607          "name": "watch",
33608          "type": "boolean",
33609          "uniqueItems": true
33610        }
33611      ]
33612    },
33613    "/api/v1/watch/configmaps": {
33614      "get": {
33615        "consumes": [
33616          "*/*"
33617        ],
33618        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
33619        "operationId": "watchCoreV1ConfigMapListForAllNamespaces",
33620        "produces": [
33621          "application/json",
33622          "application/yaml",
33623          "application/vnd.kubernetes.protobuf",
33624          "application/json;stream=watch",
33625          "application/vnd.kubernetes.protobuf;stream=watch"
33626        ],
33627        "responses": {
33628          "200": {
33629            "description": "OK",
33630            "schema": {
33631              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33632            }
33633          },
33634          "401": {
33635            "description": "Unauthorized"
33636          }
33637        },
33638        "schemes": [
33639          "https"
33640        ],
33641        "tags": [
33642          "core_v1"
33643        ],
33644        "x-kubernetes-action": "watchlist",
33645        "x-kubernetes-group-version-kind": {
33646          "group": "",
33647          "kind": "ConfigMap",
33648          "version": "v1"
33649        }
33650      },
33651      "parameters": [
33652        {
33653          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33654          "in": "query",
33655          "name": "allowWatchBookmarks",
33656          "type": "boolean",
33657          "uniqueItems": true
33658        },
33659        {
33660          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33661          "in": "query",
33662          "name": "continue",
33663          "type": "string",
33664          "uniqueItems": true
33665        },
33666        {
33667          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33668          "in": "query",
33669          "name": "fieldSelector",
33670          "type": "string",
33671          "uniqueItems": true
33672        },
33673        {
33674          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33675          "in": "query",
33676          "name": "labelSelector",
33677          "type": "string",
33678          "uniqueItems": true
33679        },
33680        {
33681          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33682          "in": "query",
33683          "name": "limit",
33684          "type": "integer",
33685          "uniqueItems": true
33686        },
33687        {
33688          "description": "If 'true', then the output is pretty printed.",
33689          "in": "query",
33690          "name": "pretty",
33691          "type": "string",
33692          "uniqueItems": true
33693        },
33694        {
33695          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33696          "in": "query",
33697          "name": "resourceVersion",
33698          "type": "string",
33699          "uniqueItems": true
33700        },
33701        {
33702          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33703          "in": "query",
33704          "name": "timeoutSeconds",
33705          "type": "integer",
33706          "uniqueItems": true
33707        },
33708        {
33709          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33710          "in": "query",
33711          "name": "watch",
33712          "type": "boolean",
33713          "uniqueItems": true
33714        }
33715      ]
33716    },
33717    "/api/v1/watch/endpoints": {
33718      "get": {
33719        "consumes": [
33720          "*/*"
33721        ],
33722        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
33723        "operationId": "watchCoreV1EndpointsListForAllNamespaces",
33724        "produces": [
33725          "application/json",
33726          "application/yaml",
33727          "application/vnd.kubernetes.protobuf",
33728          "application/json;stream=watch",
33729          "application/vnd.kubernetes.protobuf;stream=watch"
33730        ],
33731        "responses": {
33732          "200": {
33733            "description": "OK",
33734            "schema": {
33735              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33736            }
33737          },
33738          "401": {
33739            "description": "Unauthorized"
33740          }
33741        },
33742        "schemes": [
33743          "https"
33744        ],
33745        "tags": [
33746          "core_v1"
33747        ],
33748        "x-kubernetes-action": "watchlist",
33749        "x-kubernetes-group-version-kind": {
33750          "group": "",
33751          "kind": "Endpoints",
33752          "version": "v1"
33753        }
33754      },
33755      "parameters": [
33756        {
33757          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33758          "in": "query",
33759          "name": "allowWatchBookmarks",
33760          "type": "boolean",
33761          "uniqueItems": true
33762        },
33763        {
33764          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33765          "in": "query",
33766          "name": "continue",
33767          "type": "string",
33768          "uniqueItems": true
33769        },
33770        {
33771          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33772          "in": "query",
33773          "name": "fieldSelector",
33774          "type": "string",
33775          "uniqueItems": true
33776        },
33777        {
33778          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33779          "in": "query",
33780          "name": "labelSelector",
33781          "type": "string",
33782          "uniqueItems": true
33783        },
33784        {
33785          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33786          "in": "query",
33787          "name": "limit",
33788          "type": "integer",
33789          "uniqueItems": true
33790        },
33791        {
33792          "description": "If 'true', then the output is pretty printed.",
33793          "in": "query",
33794          "name": "pretty",
33795          "type": "string",
33796          "uniqueItems": true
33797        },
33798        {
33799          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33800          "in": "query",
33801          "name": "resourceVersion",
33802          "type": "string",
33803          "uniqueItems": true
33804        },
33805        {
33806          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
33807          "in": "query",
33808          "name": "timeoutSeconds",
33809          "type": "integer",
33810          "uniqueItems": true
33811        },
33812        {
33813          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
33814          "in": "query",
33815          "name": "watch",
33816          "type": "boolean",
33817          "uniqueItems": true
33818        }
33819      ]
33820    },
33821    "/api/v1/watch/events": {
33822      "get": {
33823        "consumes": [
33824          "*/*"
33825        ],
33826        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
33827        "operationId": "watchCoreV1EventListForAllNamespaces",
33828        "produces": [
33829          "application/json",
33830          "application/yaml",
33831          "application/vnd.kubernetes.protobuf",
33832          "application/json;stream=watch",
33833          "application/vnd.kubernetes.protobuf;stream=watch"
33834        ],
33835        "responses": {
33836          "200": {
33837            "description": "OK",
33838            "schema": {
33839              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
33840            }
33841          },
33842          "401": {
33843            "description": "Unauthorized"
33844          }
33845        },
33846        "schemes": [
33847          "https"
33848        ],
33849        "tags": [
33850          "core_v1"
33851        ],
33852        "x-kubernetes-action": "watchlist",
33853        "x-kubernetes-group-version-kind": {
33854          "group": "",
33855          "kind": "Event",
33856          "version": "v1"
33857        }
33858      },
33859      "parameters": [
33860        {
33861          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
33862          "in": "query",
33863          "name": "allowWatchBookmarks",
33864          "type": "boolean",
33865          "uniqueItems": true
33866        },
33867        {
33868          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
33869          "in": "query",
33870          "name": "continue",
33871          "type": "string",
33872          "uniqueItems": true
33873        },
33874        {
33875          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
33876          "in": "query",
33877          "name": "fieldSelector",
33878          "type": "string",
33879          "uniqueItems": true
33880        },
33881        {
33882          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
33883          "in": "query",
33884          "name": "labelSelector",
33885          "type": "string",
33886          "uniqueItems": true
33887        },
33888        {
33889          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
33890          "in": "query",
33891          "name": "limit",
33892          "type": "integer",
33893          "uniqueItems": true
33894        },
33895        {
33896          "description": "If 'true', then the output is pretty printed.",
33897          "in": "query",
33898          "name": "pretty",
33899          "type": "string",
33900          "uniqueItems": true
33901        },
33902        {
33903          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
33904          "in": "query",
33905          "name": "resourceVersion",
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/limitranges": {
33926      "get": {
33927        "consumes": [
33928          "*/*"
33929        ],
33930        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
33931        "operationId": "watchCoreV1LimitRangeListForAllNamespaces",
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": "watchlist",
33957        "x-kubernetes-group-version-kind": {
33958          "group": "",
33959          "kind": "LimitRange",
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. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
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": "If 'true', then the output is pretty printed.",
34001          "in": "query",
34002          "name": "pretty",
34003          "type": "string",
34004          "uniqueItems": true
34005        },
34006        {
34007          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34008          "in": "query",
34009          "name": "resourceVersion",
34010          "type": "string",
34011          "uniqueItems": true
34012        },
34013        {
34014          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34015          "in": "query",
34016          "name": "timeoutSeconds",
34017          "type": "integer",
34018          "uniqueItems": true
34019        },
34020        {
34021          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34022          "in": "query",
34023          "name": "watch",
34024          "type": "boolean",
34025          "uniqueItems": true
34026        }
34027      ]
34028    },
34029    "/api/v1/watch/namespaces": {
34030      "get": {
34031        "consumes": [
34032          "*/*"
34033        ],
34034        "description": "watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead.",
34035        "operationId": "watchCoreV1NamespaceList",
34036        "produces": [
34037          "application/json",
34038          "application/yaml",
34039          "application/vnd.kubernetes.protobuf",
34040          "application/json;stream=watch",
34041          "application/vnd.kubernetes.protobuf;stream=watch"
34042        ],
34043        "responses": {
34044          "200": {
34045            "description": "OK",
34046            "schema": {
34047              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34048            }
34049          },
34050          "401": {
34051            "description": "Unauthorized"
34052          }
34053        },
34054        "schemes": [
34055          "https"
34056        ],
34057        "tags": [
34058          "core_v1"
34059        ],
34060        "x-kubernetes-action": "watchlist",
34061        "x-kubernetes-group-version-kind": {
34062          "group": "",
34063          "kind": "Namespace",
34064          "version": "v1"
34065        }
34066      },
34067      "parameters": [
34068        {
34069          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34070          "in": "query",
34071          "name": "allowWatchBookmarks",
34072          "type": "boolean",
34073          "uniqueItems": true
34074        },
34075        {
34076          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34077          "in": "query",
34078          "name": "continue",
34079          "type": "string",
34080          "uniqueItems": true
34081        },
34082        {
34083          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34084          "in": "query",
34085          "name": "fieldSelector",
34086          "type": "string",
34087          "uniqueItems": true
34088        },
34089        {
34090          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34091          "in": "query",
34092          "name": "labelSelector",
34093          "type": "string",
34094          "uniqueItems": true
34095        },
34096        {
34097          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34098          "in": "query",
34099          "name": "limit",
34100          "type": "integer",
34101          "uniqueItems": true
34102        },
34103        {
34104          "description": "If 'true', then the output is pretty printed.",
34105          "in": "query",
34106          "name": "pretty",
34107          "type": "string",
34108          "uniqueItems": true
34109        },
34110        {
34111          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34112          "in": "query",
34113          "name": "resourceVersion",
34114          "type": "string",
34115          "uniqueItems": true
34116        },
34117        {
34118          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34119          "in": "query",
34120          "name": "timeoutSeconds",
34121          "type": "integer",
34122          "uniqueItems": true
34123        },
34124        {
34125          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34126          "in": "query",
34127          "name": "watch",
34128          "type": "boolean",
34129          "uniqueItems": true
34130        }
34131      ]
34132    },
34133    "/api/v1/watch/namespaces/{namespace}/configmaps": {
34134      "get": {
34135        "consumes": [
34136          "*/*"
34137        ],
34138        "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
34139        "operationId": "watchCoreV1NamespacedConfigMapList",
34140        "produces": [
34141          "application/json",
34142          "application/yaml",
34143          "application/vnd.kubernetes.protobuf",
34144          "application/json;stream=watch",
34145          "application/vnd.kubernetes.protobuf;stream=watch"
34146        ],
34147        "responses": {
34148          "200": {
34149            "description": "OK",
34150            "schema": {
34151              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34152            }
34153          },
34154          "401": {
34155            "description": "Unauthorized"
34156          }
34157        },
34158        "schemes": [
34159          "https"
34160        ],
34161        "tags": [
34162          "core_v1"
34163        ],
34164        "x-kubernetes-action": "watchlist",
34165        "x-kubernetes-group-version-kind": {
34166          "group": "",
34167          "kind": "ConfigMap",
34168          "version": "v1"
34169        }
34170      },
34171      "parameters": [
34172        {
34173          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34174          "in": "query",
34175          "name": "allowWatchBookmarks",
34176          "type": "boolean",
34177          "uniqueItems": true
34178        },
34179        {
34180          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34181          "in": "query",
34182          "name": "continue",
34183          "type": "string",
34184          "uniqueItems": true
34185        },
34186        {
34187          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34188          "in": "query",
34189          "name": "fieldSelector",
34190          "type": "string",
34191          "uniqueItems": true
34192        },
34193        {
34194          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34195          "in": "query",
34196          "name": "labelSelector",
34197          "type": "string",
34198          "uniqueItems": true
34199        },
34200        {
34201          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34202          "in": "query",
34203          "name": "limit",
34204          "type": "integer",
34205          "uniqueItems": true
34206        },
34207        {
34208          "description": "object name and auth scope, such as for teams and projects",
34209          "in": "path",
34210          "name": "namespace",
34211          "required": true,
34212          "type": "string",
34213          "uniqueItems": true
34214        },
34215        {
34216          "description": "If 'true', then the output is pretty printed.",
34217          "in": "query",
34218          "name": "pretty",
34219          "type": "string",
34220          "uniqueItems": true
34221        },
34222        {
34223          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34224          "in": "query",
34225          "name": "resourceVersion",
34226          "type": "string",
34227          "uniqueItems": true
34228        },
34229        {
34230          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34231          "in": "query",
34232          "name": "timeoutSeconds",
34233          "type": "integer",
34234          "uniqueItems": true
34235        },
34236        {
34237          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34238          "in": "query",
34239          "name": "watch",
34240          "type": "boolean",
34241          "uniqueItems": true
34242        }
34243      ]
34244    },
34245    "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": {
34246      "get": {
34247        "consumes": [
34248          "*/*"
34249        ],
34250        "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.",
34251        "operationId": "watchCoreV1NamespacedConfigMap",
34252        "produces": [
34253          "application/json",
34254          "application/yaml",
34255          "application/vnd.kubernetes.protobuf",
34256          "application/json;stream=watch",
34257          "application/vnd.kubernetes.protobuf;stream=watch"
34258        ],
34259        "responses": {
34260          "200": {
34261            "description": "OK",
34262            "schema": {
34263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34264            }
34265          },
34266          "401": {
34267            "description": "Unauthorized"
34268          }
34269        },
34270        "schemes": [
34271          "https"
34272        ],
34273        "tags": [
34274          "core_v1"
34275        ],
34276        "x-kubernetes-action": "watch",
34277        "x-kubernetes-group-version-kind": {
34278          "group": "",
34279          "kind": "ConfigMap",
34280          "version": "v1"
34281        }
34282      },
34283      "parameters": [
34284        {
34285          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34286          "in": "query",
34287          "name": "allowWatchBookmarks",
34288          "type": "boolean",
34289          "uniqueItems": true
34290        },
34291        {
34292          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34293          "in": "query",
34294          "name": "continue",
34295          "type": "string",
34296          "uniqueItems": true
34297        },
34298        {
34299          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34300          "in": "query",
34301          "name": "fieldSelector",
34302          "type": "string",
34303          "uniqueItems": true
34304        },
34305        {
34306          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34307          "in": "query",
34308          "name": "labelSelector",
34309          "type": "string",
34310          "uniqueItems": true
34311        },
34312        {
34313          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34314          "in": "query",
34315          "name": "limit",
34316          "type": "integer",
34317          "uniqueItems": true
34318        },
34319        {
34320          "description": "name of the ConfigMap",
34321          "in": "path",
34322          "name": "name",
34323          "required": true,
34324          "type": "string",
34325          "uniqueItems": true
34326        },
34327        {
34328          "description": "object name and auth scope, such as for teams and projects",
34329          "in": "path",
34330          "name": "namespace",
34331          "required": true,
34332          "type": "string",
34333          "uniqueItems": true
34334        },
34335        {
34336          "description": "If 'true', then the output is pretty printed.",
34337          "in": "query",
34338          "name": "pretty",
34339          "type": "string",
34340          "uniqueItems": true
34341        },
34342        {
34343          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34344          "in": "query",
34345          "name": "resourceVersion",
34346          "type": "string",
34347          "uniqueItems": true
34348        },
34349        {
34350          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34351          "in": "query",
34352          "name": "timeoutSeconds",
34353          "type": "integer",
34354          "uniqueItems": true
34355        },
34356        {
34357          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34358          "in": "query",
34359          "name": "watch",
34360          "type": "boolean",
34361          "uniqueItems": true
34362        }
34363      ]
34364    },
34365    "/api/v1/watch/namespaces/{namespace}/endpoints": {
34366      "get": {
34367        "consumes": [
34368          "*/*"
34369        ],
34370        "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.",
34371        "operationId": "watchCoreV1NamespacedEndpointsList",
34372        "produces": [
34373          "application/json",
34374          "application/yaml",
34375          "application/vnd.kubernetes.protobuf",
34376          "application/json;stream=watch",
34377          "application/vnd.kubernetes.protobuf;stream=watch"
34378        ],
34379        "responses": {
34380          "200": {
34381            "description": "OK",
34382            "schema": {
34383              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34384            }
34385          },
34386          "401": {
34387            "description": "Unauthorized"
34388          }
34389        },
34390        "schemes": [
34391          "https"
34392        ],
34393        "tags": [
34394          "core_v1"
34395        ],
34396        "x-kubernetes-action": "watchlist",
34397        "x-kubernetes-group-version-kind": {
34398          "group": "",
34399          "kind": "Endpoints",
34400          "version": "v1"
34401        }
34402      },
34403      "parameters": [
34404        {
34405          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34406          "in": "query",
34407          "name": "allowWatchBookmarks",
34408          "type": "boolean",
34409          "uniqueItems": true
34410        },
34411        {
34412          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34413          "in": "query",
34414          "name": "continue",
34415          "type": "string",
34416          "uniqueItems": true
34417        },
34418        {
34419          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34420          "in": "query",
34421          "name": "fieldSelector",
34422          "type": "string",
34423          "uniqueItems": true
34424        },
34425        {
34426          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34427          "in": "query",
34428          "name": "labelSelector",
34429          "type": "string",
34430          "uniqueItems": true
34431        },
34432        {
34433          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34434          "in": "query",
34435          "name": "limit",
34436          "type": "integer",
34437          "uniqueItems": true
34438        },
34439        {
34440          "description": "object name and auth scope, such as for teams and projects",
34441          "in": "path",
34442          "name": "namespace",
34443          "required": true,
34444          "type": "string",
34445          "uniqueItems": true
34446        },
34447        {
34448          "description": "If 'true', then the output is pretty printed.",
34449          "in": "query",
34450          "name": "pretty",
34451          "type": "string",
34452          "uniqueItems": true
34453        },
34454        {
34455          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34456          "in": "query",
34457          "name": "resourceVersion",
34458          "type": "string",
34459          "uniqueItems": true
34460        },
34461        {
34462          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34463          "in": "query",
34464          "name": "timeoutSeconds",
34465          "type": "integer",
34466          "uniqueItems": true
34467        },
34468        {
34469          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34470          "in": "query",
34471          "name": "watch",
34472          "type": "boolean",
34473          "uniqueItems": true
34474        }
34475      ]
34476    },
34477    "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": {
34478      "get": {
34479        "consumes": [
34480          "*/*"
34481        ],
34482        "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.",
34483        "operationId": "watchCoreV1NamespacedEndpoints",
34484        "produces": [
34485          "application/json",
34486          "application/yaml",
34487          "application/vnd.kubernetes.protobuf",
34488          "application/json;stream=watch",
34489          "application/vnd.kubernetes.protobuf;stream=watch"
34490        ],
34491        "responses": {
34492          "200": {
34493            "description": "OK",
34494            "schema": {
34495              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34496            }
34497          },
34498          "401": {
34499            "description": "Unauthorized"
34500          }
34501        },
34502        "schemes": [
34503          "https"
34504        ],
34505        "tags": [
34506          "core_v1"
34507        ],
34508        "x-kubernetes-action": "watch",
34509        "x-kubernetes-group-version-kind": {
34510          "group": "",
34511          "kind": "Endpoints",
34512          "version": "v1"
34513        }
34514      },
34515      "parameters": [
34516        {
34517          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34518          "in": "query",
34519          "name": "allowWatchBookmarks",
34520          "type": "boolean",
34521          "uniqueItems": true
34522        },
34523        {
34524          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34525          "in": "query",
34526          "name": "continue",
34527          "type": "string",
34528          "uniqueItems": true
34529        },
34530        {
34531          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34532          "in": "query",
34533          "name": "fieldSelector",
34534          "type": "string",
34535          "uniqueItems": true
34536        },
34537        {
34538          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34539          "in": "query",
34540          "name": "labelSelector",
34541          "type": "string",
34542          "uniqueItems": true
34543        },
34544        {
34545          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34546          "in": "query",
34547          "name": "limit",
34548          "type": "integer",
34549          "uniqueItems": true
34550        },
34551        {
34552          "description": "name of the Endpoints",
34553          "in": "path",
34554          "name": "name",
34555          "required": true,
34556          "type": "string",
34557          "uniqueItems": true
34558        },
34559        {
34560          "description": "object name and auth scope, such as for teams and projects",
34561          "in": "path",
34562          "name": "namespace",
34563          "required": true,
34564          "type": "string",
34565          "uniqueItems": true
34566        },
34567        {
34568          "description": "If 'true', then the output is pretty printed.",
34569          "in": "query",
34570          "name": "pretty",
34571          "type": "string",
34572          "uniqueItems": true
34573        },
34574        {
34575          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34576          "in": "query",
34577          "name": "resourceVersion",
34578          "type": "string",
34579          "uniqueItems": true
34580        },
34581        {
34582          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34583          "in": "query",
34584          "name": "timeoutSeconds",
34585          "type": "integer",
34586          "uniqueItems": true
34587        },
34588        {
34589          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34590          "in": "query",
34591          "name": "watch",
34592          "type": "boolean",
34593          "uniqueItems": true
34594        }
34595      ]
34596    },
34597    "/api/v1/watch/namespaces/{namespace}/events": {
34598      "get": {
34599        "consumes": [
34600          "*/*"
34601        ],
34602        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
34603        "operationId": "watchCoreV1NamespacedEventList",
34604        "produces": [
34605          "application/json",
34606          "application/yaml",
34607          "application/vnd.kubernetes.protobuf",
34608          "application/json;stream=watch",
34609          "application/vnd.kubernetes.protobuf;stream=watch"
34610        ],
34611        "responses": {
34612          "200": {
34613            "description": "OK",
34614            "schema": {
34615              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34616            }
34617          },
34618          "401": {
34619            "description": "Unauthorized"
34620          }
34621        },
34622        "schemes": [
34623          "https"
34624        ],
34625        "tags": [
34626          "core_v1"
34627        ],
34628        "x-kubernetes-action": "watchlist",
34629        "x-kubernetes-group-version-kind": {
34630          "group": "",
34631          "kind": "Event",
34632          "version": "v1"
34633        }
34634      },
34635      "parameters": [
34636        {
34637          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34638          "in": "query",
34639          "name": "allowWatchBookmarks",
34640          "type": "boolean",
34641          "uniqueItems": true
34642        },
34643        {
34644          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34645          "in": "query",
34646          "name": "continue",
34647          "type": "string",
34648          "uniqueItems": true
34649        },
34650        {
34651          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34652          "in": "query",
34653          "name": "fieldSelector",
34654          "type": "string",
34655          "uniqueItems": true
34656        },
34657        {
34658          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34659          "in": "query",
34660          "name": "labelSelector",
34661          "type": "string",
34662          "uniqueItems": true
34663        },
34664        {
34665          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34666          "in": "query",
34667          "name": "limit",
34668          "type": "integer",
34669          "uniqueItems": true
34670        },
34671        {
34672          "description": "object name and auth scope, such as for teams and projects",
34673          "in": "path",
34674          "name": "namespace",
34675          "required": true,
34676          "type": "string",
34677          "uniqueItems": true
34678        },
34679        {
34680          "description": "If 'true', then the output is pretty printed.",
34681          "in": "query",
34682          "name": "pretty",
34683          "type": "string",
34684          "uniqueItems": true
34685        },
34686        {
34687          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34688          "in": "query",
34689          "name": "resourceVersion",
34690          "type": "string",
34691          "uniqueItems": true
34692        },
34693        {
34694          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34695          "in": "query",
34696          "name": "timeoutSeconds",
34697          "type": "integer",
34698          "uniqueItems": true
34699        },
34700        {
34701          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34702          "in": "query",
34703          "name": "watch",
34704          "type": "boolean",
34705          "uniqueItems": true
34706        }
34707      ]
34708    },
34709    "/api/v1/watch/namespaces/{namespace}/events/{name}": {
34710      "get": {
34711        "consumes": [
34712          "*/*"
34713        ],
34714        "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.",
34715        "operationId": "watchCoreV1NamespacedEvent",
34716        "produces": [
34717          "application/json",
34718          "application/yaml",
34719          "application/vnd.kubernetes.protobuf",
34720          "application/json;stream=watch",
34721          "application/vnd.kubernetes.protobuf;stream=watch"
34722        ],
34723        "responses": {
34724          "200": {
34725            "description": "OK",
34726            "schema": {
34727              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34728            }
34729          },
34730          "401": {
34731            "description": "Unauthorized"
34732          }
34733        },
34734        "schemes": [
34735          "https"
34736        ],
34737        "tags": [
34738          "core_v1"
34739        ],
34740        "x-kubernetes-action": "watch",
34741        "x-kubernetes-group-version-kind": {
34742          "group": "",
34743          "kind": "Event",
34744          "version": "v1"
34745        }
34746      },
34747      "parameters": [
34748        {
34749          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34750          "in": "query",
34751          "name": "allowWatchBookmarks",
34752          "type": "boolean",
34753          "uniqueItems": true
34754        },
34755        {
34756          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34757          "in": "query",
34758          "name": "continue",
34759          "type": "string",
34760          "uniqueItems": true
34761        },
34762        {
34763          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34764          "in": "query",
34765          "name": "fieldSelector",
34766          "type": "string",
34767          "uniqueItems": true
34768        },
34769        {
34770          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34771          "in": "query",
34772          "name": "labelSelector",
34773          "type": "string",
34774          "uniqueItems": true
34775        },
34776        {
34777          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34778          "in": "query",
34779          "name": "limit",
34780          "type": "integer",
34781          "uniqueItems": true
34782        },
34783        {
34784          "description": "name of the Event",
34785          "in": "path",
34786          "name": "name",
34787          "required": true,
34788          "type": "string",
34789          "uniqueItems": true
34790        },
34791        {
34792          "description": "object name and auth scope, such as for teams and projects",
34793          "in": "path",
34794          "name": "namespace",
34795          "required": true,
34796          "type": "string",
34797          "uniqueItems": true
34798        },
34799        {
34800          "description": "If 'true', then the output is pretty printed.",
34801          "in": "query",
34802          "name": "pretty",
34803          "type": "string",
34804          "uniqueItems": true
34805        },
34806        {
34807          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34808          "in": "query",
34809          "name": "resourceVersion",
34810          "type": "string",
34811          "uniqueItems": true
34812        },
34813        {
34814          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34815          "in": "query",
34816          "name": "timeoutSeconds",
34817          "type": "integer",
34818          "uniqueItems": true
34819        },
34820        {
34821          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34822          "in": "query",
34823          "name": "watch",
34824          "type": "boolean",
34825          "uniqueItems": true
34826        }
34827      ]
34828    },
34829    "/api/v1/watch/namespaces/{namespace}/limitranges": {
34830      "get": {
34831        "consumes": [
34832          "*/*"
34833        ],
34834        "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.",
34835        "operationId": "watchCoreV1NamespacedLimitRangeList",
34836        "produces": [
34837          "application/json",
34838          "application/yaml",
34839          "application/vnd.kubernetes.protobuf",
34840          "application/json;stream=watch",
34841          "application/vnd.kubernetes.protobuf;stream=watch"
34842        ],
34843        "responses": {
34844          "200": {
34845            "description": "OK",
34846            "schema": {
34847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34848            }
34849          },
34850          "401": {
34851            "description": "Unauthorized"
34852          }
34853        },
34854        "schemes": [
34855          "https"
34856        ],
34857        "tags": [
34858          "core_v1"
34859        ],
34860        "x-kubernetes-action": "watchlist",
34861        "x-kubernetes-group-version-kind": {
34862          "group": "",
34863          "kind": "LimitRange",
34864          "version": "v1"
34865        }
34866      },
34867      "parameters": [
34868        {
34869          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34870          "in": "query",
34871          "name": "allowWatchBookmarks",
34872          "type": "boolean",
34873          "uniqueItems": true
34874        },
34875        {
34876          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34877          "in": "query",
34878          "name": "continue",
34879          "type": "string",
34880          "uniqueItems": true
34881        },
34882        {
34883          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34884          "in": "query",
34885          "name": "fieldSelector",
34886          "type": "string",
34887          "uniqueItems": true
34888        },
34889        {
34890          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
34891          "in": "query",
34892          "name": "labelSelector",
34893          "type": "string",
34894          "uniqueItems": true
34895        },
34896        {
34897          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
34898          "in": "query",
34899          "name": "limit",
34900          "type": "integer",
34901          "uniqueItems": true
34902        },
34903        {
34904          "description": "object name and auth scope, such as for teams and projects",
34905          "in": "path",
34906          "name": "namespace",
34907          "required": true,
34908          "type": "string",
34909          "uniqueItems": true
34910        },
34911        {
34912          "description": "If 'true', then the output is pretty printed.",
34913          "in": "query",
34914          "name": "pretty",
34915          "type": "string",
34916          "uniqueItems": true
34917        },
34918        {
34919          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
34920          "in": "query",
34921          "name": "resourceVersion",
34922          "type": "string",
34923          "uniqueItems": true
34924        },
34925        {
34926          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
34927          "in": "query",
34928          "name": "timeoutSeconds",
34929          "type": "integer",
34930          "uniqueItems": true
34931        },
34932        {
34933          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
34934          "in": "query",
34935          "name": "watch",
34936          "type": "boolean",
34937          "uniqueItems": true
34938        }
34939      ]
34940    },
34941    "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": {
34942      "get": {
34943        "consumes": [
34944          "*/*"
34945        ],
34946        "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.",
34947        "operationId": "watchCoreV1NamespacedLimitRange",
34948        "produces": [
34949          "application/json",
34950          "application/yaml",
34951          "application/vnd.kubernetes.protobuf",
34952          "application/json;stream=watch",
34953          "application/vnd.kubernetes.protobuf;stream=watch"
34954        ],
34955        "responses": {
34956          "200": {
34957            "description": "OK",
34958            "schema": {
34959              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
34960            }
34961          },
34962          "401": {
34963            "description": "Unauthorized"
34964          }
34965        },
34966        "schemes": [
34967          "https"
34968        ],
34969        "tags": [
34970          "core_v1"
34971        ],
34972        "x-kubernetes-action": "watch",
34973        "x-kubernetes-group-version-kind": {
34974          "group": "",
34975          "kind": "LimitRange",
34976          "version": "v1"
34977        }
34978      },
34979      "parameters": [
34980        {
34981          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
34982          "in": "query",
34983          "name": "allowWatchBookmarks",
34984          "type": "boolean",
34985          "uniqueItems": true
34986        },
34987        {
34988          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
34989          "in": "query",
34990          "name": "continue",
34991          "type": "string",
34992          "uniqueItems": true
34993        },
34994        {
34995          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
34996          "in": "query",
34997          "name": "fieldSelector",
34998          "type": "string",
34999          "uniqueItems": true
35000        },
35001        {
35002          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35003          "in": "query",
35004          "name": "labelSelector",
35005          "type": "string",
35006          "uniqueItems": true
35007        },
35008        {
35009          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35010          "in": "query",
35011          "name": "limit",
35012          "type": "integer",
35013          "uniqueItems": true
35014        },
35015        {
35016          "description": "name of the LimitRange",
35017          "in": "path",
35018          "name": "name",
35019          "required": true,
35020          "type": "string",
35021          "uniqueItems": true
35022        },
35023        {
35024          "description": "object name and auth scope, such as for teams and projects",
35025          "in": "path",
35026          "name": "namespace",
35027          "required": true,
35028          "type": "string",
35029          "uniqueItems": true
35030        },
35031        {
35032          "description": "If 'true', then the output is pretty printed.",
35033          "in": "query",
35034          "name": "pretty",
35035          "type": "string",
35036          "uniqueItems": true
35037        },
35038        {
35039          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35040          "in": "query",
35041          "name": "resourceVersion",
35042          "type": "string",
35043          "uniqueItems": true
35044        },
35045        {
35046          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35047          "in": "query",
35048          "name": "timeoutSeconds",
35049          "type": "integer",
35050          "uniqueItems": true
35051        },
35052        {
35053          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35054          "in": "query",
35055          "name": "watch",
35056          "type": "boolean",
35057          "uniqueItems": true
35058        }
35059      ]
35060    },
35061    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": {
35062      "get": {
35063        "consumes": [
35064          "*/*"
35065        ],
35066        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
35067        "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList",
35068        "produces": [
35069          "application/json",
35070          "application/yaml",
35071          "application/vnd.kubernetes.protobuf",
35072          "application/json;stream=watch",
35073          "application/vnd.kubernetes.protobuf;stream=watch"
35074        ],
35075        "responses": {
35076          "200": {
35077            "description": "OK",
35078            "schema": {
35079              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35080            }
35081          },
35082          "401": {
35083            "description": "Unauthorized"
35084          }
35085        },
35086        "schemes": [
35087          "https"
35088        ],
35089        "tags": [
35090          "core_v1"
35091        ],
35092        "x-kubernetes-action": "watchlist",
35093        "x-kubernetes-group-version-kind": {
35094          "group": "",
35095          "kind": "PersistentVolumeClaim",
35096          "version": "v1"
35097        }
35098      },
35099      "parameters": [
35100        {
35101          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35102          "in": "query",
35103          "name": "allowWatchBookmarks",
35104          "type": "boolean",
35105          "uniqueItems": true
35106        },
35107        {
35108          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35109          "in": "query",
35110          "name": "continue",
35111          "type": "string",
35112          "uniqueItems": true
35113        },
35114        {
35115          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35116          "in": "query",
35117          "name": "fieldSelector",
35118          "type": "string",
35119          "uniqueItems": true
35120        },
35121        {
35122          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35123          "in": "query",
35124          "name": "labelSelector",
35125          "type": "string",
35126          "uniqueItems": true
35127        },
35128        {
35129          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35130          "in": "query",
35131          "name": "limit",
35132          "type": "integer",
35133          "uniqueItems": true
35134        },
35135        {
35136          "description": "object name and auth scope, such as for teams and projects",
35137          "in": "path",
35138          "name": "namespace",
35139          "required": true,
35140          "type": "string",
35141          "uniqueItems": true
35142        },
35143        {
35144          "description": "If 'true', then the output is pretty printed.",
35145          "in": "query",
35146          "name": "pretty",
35147          "type": "string",
35148          "uniqueItems": true
35149        },
35150        {
35151          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35152          "in": "query",
35153          "name": "resourceVersion",
35154          "type": "string",
35155          "uniqueItems": true
35156        },
35157        {
35158          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35159          "in": "query",
35160          "name": "timeoutSeconds",
35161          "type": "integer",
35162          "uniqueItems": true
35163        },
35164        {
35165          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35166          "in": "query",
35167          "name": "watch",
35168          "type": "boolean",
35169          "uniqueItems": true
35170        }
35171      ]
35172    },
35173    "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": {
35174      "get": {
35175        "consumes": [
35176          "*/*"
35177        ],
35178        "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.",
35179        "operationId": "watchCoreV1NamespacedPersistentVolumeClaim",
35180        "produces": [
35181          "application/json",
35182          "application/yaml",
35183          "application/vnd.kubernetes.protobuf",
35184          "application/json;stream=watch",
35185          "application/vnd.kubernetes.protobuf;stream=watch"
35186        ],
35187        "responses": {
35188          "200": {
35189            "description": "OK",
35190            "schema": {
35191              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35192            }
35193          },
35194          "401": {
35195            "description": "Unauthorized"
35196          }
35197        },
35198        "schemes": [
35199          "https"
35200        ],
35201        "tags": [
35202          "core_v1"
35203        ],
35204        "x-kubernetes-action": "watch",
35205        "x-kubernetes-group-version-kind": {
35206          "group": "",
35207          "kind": "PersistentVolumeClaim",
35208          "version": "v1"
35209        }
35210      },
35211      "parameters": [
35212        {
35213          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35214          "in": "query",
35215          "name": "allowWatchBookmarks",
35216          "type": "boolean",
35217          "uniqueItems": true
35218        },
35219        {
35220          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35221          "in": "query",
35222          "name": "continue",
35223          "type": "string",
35224          "uniqueItems": true
35225        },
35226        {
35227          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35228          "in": "query",
35229          "name": "fieldSelector",
35230          "type": "string",
35231          "uniqueItems": true
35232        },
35233        {
35234          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35235          "in": "query",
35236          "name": "labelSelector",
35237          "type": "string",
35238          "uniqueItems": true
35239        },
35240        {
35241          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35242          "in": "query",
35243          "name": "limit",
35244          "type": "integer",
35245          "uniqueItems": true
35246        },
35247        {
35248          "description": "name of the PersistentVolumeClaim",
35249          "in": "path",
35250          "name": "name",
35251          "required": true,
35252          "type": "string",
35253          "uniqueItems": true
35254        },
35255        {
35256          "description": "object name and auth scope, such as for teams and projects",
35257          "in": "path",
35258          "name": "namespace",
35259          "required": true,
35260          "type": "string",
35261          "uniqueItems": true
35262        },
35263        {
35264          "description": "If 'true', then the output is pretty printed.",
35265          "in": "query",
35266          "name": "pretty",
35267          "type": "string",
35268          "uniqueItems": true
35269        },
35270        {
35271          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35272          "in": "query",
35273          "name": "resourceVersion",
35274          "type": "string",
35275          "uniqueItems": true
35276        },
35277        {
35278          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35279          "in": "query",
35280          "name": "timeoutSeconds",
35281          "type": "integer",
35282          "uniqueItems": true
35283        },
35284        {
35285          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35286          "in": "query",
35287          "name": "watch",
35288          "type": "boolean",
35289          "uniqueItems": true
35290        }
35291      ]
35292    },
35293    "/api/v1/watch/namespaces/{namespace}/pods": {
35294      "get": {
35295        "consumes": [
35296          "*/*"
35297        ],
35298        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
35299        "operationId": "watchCoreV1NamespacedPodList",
35300        "produces": [
35301          "application/json",
35302          "application/yaml",
35303          "application/vnd.kubernetes.protobuf",
35304          "application/json;stream=watch",
35305          "application/vnd.kubernetes.protobuf;stream=watch"
35306        ],
35307        "responses": {
35308          "200": {
35309            "description": "OK",
35310            "schema": {
35311              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35312            }
35313          },
35314          "401": {
35315            "description": "Unauthorized"
35316          }
35317        },
35318        "schemes": [
35319          "https"
35320        ],
35321        "tags": [
35322          "core_v1"
35323        ],
35324        "x-kubernetes-action": "watchlist",
35325        "x-kubernetes-group-version-kind": {
35326          "group": "",
35327          "kind": "Pod",
35328          "version": "v1"
35329        }
35330      },
35331      "parameters": [
35332        {
35333          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35334          "in": "query",
35335          "name": "allowWatchBookmarks",
35336          "type": "boolean",
35337          "uniqueItems": true
35338        },
35339        {
35340          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35341          "in": "query",
35342          "name": "continue",
35343          "type": "string",
35344          "uniqueItems": true
35345        },
35346        {
35347          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35348          "in": "query",
35349          "name": "fieldSelector",
35350          "type": "string",
35351          "uniqueItems": true
35352        },
35353        {
35354          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35355          "in": "query",
35356          "name": "labelSelector",
35357          "type": "string",
35358          "uniqueItems": true
35359        },
35360        {
35361          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35362          "in": "query",
35363          "name": "limit",
35364          "type": "integer",
35365          "uniqueItems": true
35366        },
35367        {
35368          "description": "object name and auth scope, such as for teams and projects",
35369          "in": "path",
35370          "name": "namespace",
35371          "required": true,
35372          "type": "string",
35373          "uniqueItems": true
35374        },
35375        {
35376          "description": "If 'true', then the output is pretty printed.",
35377          "in": "query",
35378          "name": "pretty",
35379          "type": "string",
35380          "uniqueItems": true
35381        },
35382        {
35383          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35384          "in": "query",
35385          "name": "resourceVersion",
35386          "type": "string",
35387          "uniqueItems": true
35388        },
35389        {
35390          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35391          "in": "query",
35392          "name": "timeoutSeconds",
35393          "type": "integer",
35394          "uniqueItems": true
35395        },
35396        {
35397          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35398          "in": "query",
35399          "name": "watch",
35400          "type": "boolean",
35401          "uniqueItems": true
35402        }
35403      ]
35404    },
35405    "/api/v1/watch/namespaces/{namespace}/pods/{name}": {
35406      "get": {
35407        "consumes": [
35408          "*/*"
35409        ],
35410        "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.",
35411        "operationId": "watchCoreV1NamespacedPod",
35412        "produces": [
35413          "application/json",
35414          "application/yaml",
35415          "application/vnd.kubernetes.protobuf",
35416          "application/json;stream=watch",
35417          "application/vnd.kubernetes.protobuf;stream=watch"
35418        ],
35419        "responses": {
35420          "200": {
35421            "description": "OK",
35422            "schema": {
35423              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35424            }
35425          },
35426          "401": {
35427            "description": "Unauthorized"
35428          }
35429        },
35430        "schemes": [
35431          "https"
35432        ],
35433        "tags": [
35434          "core_v1"
35435        ],
35436        "x-kubernetes-action": "watch",
35437        "x-kubernetes-group-version-kind": {
35438          "group": "",
35439          "kind": "Pod",
35440          "version": "v1"
35441        }
35442      },
35443      "parameters": [
35444        {
35445          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35446          "in": "query",
35447          "name": "allowWatchBookmarks",
35448          "type": "boolean",
35449          "uniqueItems": true
35450        },
35451        {
35452          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35453          "in": "query",
35454          "name": "continue",
35455          "type": "string",
35456          "uniqueItems": true
35457        },
35458        {
35459          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35460          "in": "query",
35461          "name": "fieldSelector",
35462          "type": "string",
35463          "uniqueItems": true
35464        },
35465        {
35466          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35467          "in": "query",
35468          "name": "labelSelector",
35469          "type": "string",
35470          "uniqueItems": true
35471        },
35472        {
35473          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35474          "in": "query",
35475          "name": "limit",
35476          "type": "integer",
35477          "uniqueItems": true
35478        },
35479        {
35480          "description": "name of the Pod",
35481          "in": "path",
35482          "name": "name",
35483          "required": true,
35484          "type": "string",
35485          "uniqueItems": true
35486        },
35487        {
35488          "description": "object name and auth scope, such as for teams and projects",
35489          "in": "path",
35490          "name": "namespace",
35491          "required": true,
35492          "type": "string",
35493          "uniqueItems": true
35494        },
35495        {
35496          "description": "If 'true', then the output is pretty printed.",
35497          "in": "query",
35498          "name": "pretty",
35499          "type": "string",
35500          "uniqueItems": true
35501        },
35502        {
35503          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35504          "in": "query",
35505          "name": "resourceVersion",
35506          "type": "string",
35507          "uniqueItems": true
35508        },
35509        {
35510          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35511          "in": "query",
35512          "name": "timeoutSeconds",
35513          "type": "integer",
35514          "uniqueItems": true
35515        },
35516        {
35517          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35518          "in": "query",
35519          "name": "watch",
35520          "type": "boolean",
35521          "uniqueItems": true
35522        }
35523      ]
35524    },
35525    "/api/v1/watch/namespaces/{namespace}/podtemplates": {
35526      "get": {
35527        "consumes": [
35528          "*/*"
35529        ],
35530        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
35531        "operationId": "watchCoreV1NamespacedPodTemplateList",
35532        "produces": [
35533          "application/json",
35534          "application/yaml",
35535          "application/vnd.kubernetes.protobuf",
35536          "application/json;stream=watch",
35537          "application/vnd.kubernetes.protobuf;stream=watch"
35538        ],
35539        "responses": {
35540          "200": {
35541            "description": "OK",
35542            "schema": {
35543              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35544            }
35545          },
35546          "401": {
35547            "description": "Unauthorized"
35548          }
35549        },
35550        "schemes": [
35551          "https"
35552        ],
35553        "tags": [
35554          "core_v1"
35555        ],
35556        "x-kubernetes-action": "watchlist",
35557        "x-kubernetes-group-version-kind": {
35558          "group": "",
35559          "kind": "PodTemplate",
35560          "version": "v1"
35561        }
35562      },
35563      "parameters": [
35564        {
35565          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35566          "in": "query",
35567          "name": "allowWatchBookmarks",
35568          "type": "boolean",
35569          "uniqueItems": true
35570        },
35571        {
35572          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35573          "in": "query",
35574          "name": "continue",
35575          "type": "string",
35576          "uniqueItems": true
35577        },
35578        {
35579          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35580          "in": "query",
35581          "name": "fieldSelector",
35582          "type": "string",
35583          "uniqueItems": true
35584        },
35585        {
35586          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35587          "in": "query",
35588          "name": "labelSelector",
35589          "type": "string",
35590          "uniqueItems": true
35591        },
35592        {
35593          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35594          "in": "query",
35595          "name": "limit",
35596          "type": "integer",
35597          "uniqueItems": true
35598        },
35599        {
35600          "description": "object name and auth scope, such as for teams and projects",
35601          "in": "path",
35602          "name": "namespace",
35603          "required": true,
35604          "type": "string",
35605          "uniqueItems": true
35606        },
35607        {
35608          "description": "If 'true', then the output is pretty printed.",
35609          "in": "query",
35610          "name": "pretty",
35611          "type": "string",
35612          "uniqueItems": true
35613        },
35614        {
35615          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35616          "in": "query",
35617          "name": "resourceVersion",
35618          "type": "string",
35619          "uniqueItems": true
35620        },
35621        {
35622          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35623          "in": "query",
35624          "name": "timeoutSeconds",
35625          "type": "integer",
35626          "uniqueItems": true
35627        },
35628        {
35629          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35630          "in": "query",
35631          "name": "watch",
35632          "type": "boolean",
35633          "uniqueItems": true
35634        }
35635      ]
35636    },
35637    "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": {
35638      "get": {
35639        "consumes": [
35640          "*/*"
35641        ],
35642        "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.",
35643        "operationId": "watchCoreV1NamespacedPodTemplate",
35644        "produces": [
35645          "application/json",
35646          "application/yaml",
35647          "application/vnd.kubernetes.protobuf",
35648          "application/json;stream=watch",
35649          "application/vnd.kubernetes.protobuf;stream=watch"
35650        ],
35651        "responses": {
35652          "200": {
35653            "description": "OK",
35654            "schema": {
35655              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35656            }
35657          },
35658          "401": {
35659            "description": "Unauthorized"
35660          }
35661        },
35662        "schemes": [
35663          "https"
35664        ],
35665        "tags": [
35666          "core_v1"
35667        ],
35668        "x-kubernetes-action": "watch",
35669        "x-kubernetes-group-version-kind": {
35670          "group": "",
35671          "kind": "PodTemplate",
35672          "version": "v1"
35673        }
35674      },
35675      "parameters": [
35676        {
35677          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35678          "in": "query",
35679          "name": "allowWatchBookmarks",
35680          "type": "boolean",
35681          "uniqueItems": true
35682        },
35683        {
35684          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35685          "in": "query",
35686          "name": "continue",
35687          "type": "string",
35688          "uniqueItems": true
35689        },
35690        {
35691          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35692          "in": "query",
35693          "name": "fieldSelector",
35694          "type": "string",
35695          "uniqueItems": true
35696        },
35697        {
35698          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35699          "in": "query",
35700          "name": "labelSelector",
35701          "type": "string",
35702          "uniqueItems": true
35703        },
35704        {
35705          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35706          "in": "query",
35707          "name": "limit",
35708          "type": "integer",
35709          "uniqueItems": true
35710        },
35711        {
35712          "description": "name of the PodTemplate",
35713          "in": "path",
35714          "name": "name",
35715          "required": true,
35716          "type": "string",
35717          "uniqueItems": true
35718        },
35719        {
35720          "description": "object name and auth scope, such as for teams and projects",
35721          "in": "path",
35722          "name": "namespace",
35723          "required": true,
35724          "type": "string",
35725          "uniqueItems": true
35726        },
35727        {
35728          "description": "If 'true', then the output is pretty printed.",
35729          "in": "query",
35730          "name": "pretty",
35731          "type": "string",
35732          "uniqueItems": true
35733        },
35734        {
35735          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35736          "in": "query",
35737          "name": "resourceVersion",
35738          "type": "string",
35739          "uniqueItems": true
35740        },
35741        {
35742          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35743          "in": "query",
35744          "name": "timeoutSeconds",
35745          "type": "integer",
35746          "uniqueItems": true
35747        },
35748        {
35749          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35750          "in": "query",
35751          "name": "watch",
35752          "type": "boolean",
35753          "uniqueItems": true
35754        }
35755      ]
35756    },
35757    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": {
35758      "get": {
35759        "consumes": [
35760          "*/*"
35761        ],
35762        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
35763        "operationId": "watchCoreV1NamespacedReplicationControllerList",
35764        "produces": [
35765          "application/json",
35766          "application/yaml",
35767          "application/vnd.kubernetes.protobuf",
35768          "application/json;stream=watch",
35769          "application/vnd.kubernetes.protobuf;stream=watch"
35770        ],
35771        "responses": {
35772          "200": {
35773            "description": "OK",
35774            "schema": {
35775              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35776            }
35777          },
35778          "401": {
35779            "description": "Unauthorized"
35780          }
35781        },
35782        "schemes": [
35783          "https"
35784        ],
35785        "tags": [
35786          "core_v1"
35787        ],
35788        "x-kubernetes-action": "watchlist",
35789        "x-kubernetes-group-version-kind": {
35790          "group": "",
35791          "kind": "ReplicationController",
35792          "version": "v1"
35793        }
35794      },
35795      "parameters": [
35796        {
35797          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35798          "in": "query",
35799          "name": "allowWatchBookmarks",
35800          "type": "boolean",
35801          "uniqueItems": true
35802        },
35803        {
35804          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35805          "in": "query",
35806          "name": "continue",
35807          "type": "string",
35808          "uniqueItems": true
35809        },
35810        {
35811          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35812          "in": "query",
35813          "name": "fieldSelector",
35814          "type": "string",
35815          "uniqueItems": true
35816        },
35817        {
35818          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35819          "in": "query",
35820          "name": "labelSelector",
35821          "type": "string",
35822          "uniqueItems": true
35823        },
35824        {
35825          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35826          "in": "query",
35827          "name": "limit",
35828          "type": "integer",
35829          "uniqueItems": true
35830        },
35831        {
35832          "description": "object name and auth scope, such as for teams and projects",
35833          "in": "path",
35834          "name": "namespace",
35835          "required": true,
35836          "type": "string",
35837          "uniqueItems": true
35838        },
35839        {
35840          "description": "If 'true', then the output is pretty printed.",
35841          "in": "query",
35842          "name": "pretty",
35843          "type": "string",
35844          "uniqueItems": true
35845        },
35846        {
35847          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35848          "in": "query",
35849          "name": "resourceVersion",
35850          "type": "string",
35851          "uniqueItems": true
35852        },
35853        {
35854          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35855          "in": "query",
35856          "name": "timeoutSeconds",
35857          "type": "integer",
35858          "uniqueItems": true
35859        },
35860        {
35861          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35862          "in": "query",
35863          "name": "watch",
35864          "type": "boolean",
35865          "uniqueItems": true
35866        }
35867      ]
35868    },
35869    "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": {
35870      "get": {
35871        "consumes": [
35872          "*/*"
35873        ],
35874        "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.",
35875        "operationId": "watchCoreV1NamespacedReplicationController",
35876        "produces": [
35877          "application/json",
35878          "application/yaml",
35879          "application/vnd.kubernetes.protobuf",
35880          "application/json;stream=watch",
35881          "application/vnd.kubernetes.protobuf;stream=watch"
35882        ],
35883        "responses": {
35884          "200": {
35885            "description": "OK",
35886            "schema": {
35887              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
35888            }
35889          },
35890          "401": {
35891            "description": "Unauthorized"
35892          }
35893        },
35894        "schemes": [
35895          "https"
35896        ],
35897        "tags": [
35898          "core_v1"
35899        ],
35900        "x-kubernetes-action": "watch",
35901        "x-kubernetes-group-version-kind": {
35902          "group": "",
35903          "kind": "ReplicationController",
35904          "version": "v1"
35905        }
35906      },
35907      "parameters": [
35908        {
35909          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
35910          "in": "query",
35911          "name": "allowWatchBookmarks",
35912          "type": "boolean",
35913          "uniqueItems": true
35914        },
35915        {
35916          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
35917          "in": "query",
35918          "name": "continue",
35919          "type": "string",
35920          "uniqueItems": true
35921        },
35922        {
35923          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
35924          "in": "query",
35925          "name": "fieldSelector",
35926          "type": "string",
35927          "uniqueItems": true
35928        },
35929        {
35930          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
35931          "in": "query",
35932          "name": "labelSelector",
35933          "type": "string",
35934          "uniqueItems": true
35935        },
35936        {
35937          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
35938          "in": "query",
35939          "name": "limit",
35940          "type": "integer",
35941          "uniqueItems": true
35942        },
35943        {
35944          "description": "name of the ReplicationController",
35945          "in": "path",
35946          "name": "name",
35947          "required": true,
35948          "type": "string",
35949          "uniqueItems": true
35950        },
35951        {
35952          "description": "object name and auth scope, such as for teams and projects",
35953          "in": "path",
35954          "name": "namespace",
35955          "required": true,
35956          "type": "string",
35957          "uniqueItems": true
35958        },
35959        {
35960          "description": "If 'true', then the output is pretty printed.",
35961          "in": "query",
35962          "name": "pretty",
35963          "type": "string",
35964          "uniqueItems": true
35965        },
35966        {
35967          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
35968          "in": "query",
35969          "name": "resourceVersion",
35970          "type": "string",
35971          "uniqueItems": true
35972        },
35973        {
35974          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
35975          "in": "query",
35976          "name": "timeoutSeconds",
35977          "type": "integer",
35978          "uniqueItems": true
35979        },
35980        {
35981          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
35982          "in": "query",
35983          "name": "watch",
35984          "type": "boolean",
35985          "uniqueItems": true
35986        }
35987      ]
35988    },
35989    "/api/v1/watch/namespaces/{namespace}/resourcequotas": {
35990      "get": {
35991        "consumes": [
35992          "*/*"
35993        ],
35994        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
35995        "operationId": "watchCoreV1NamespacedResourceQuotaList",
35996        "produces": [
35997          "application/json",
35998          "application/yaml",
35999          "application/vnd.kubernetes.protobuf",
36000          "application/json;stream=watch",
36001          "application/vnd.kubernetes.protobuf;stream=watch"
36002        ],
36003        "responses": {
36004          "200": {
36005            "description": "OK",
36006            "schema": {
36007              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36008            }
36009          },
36010          "401": {
36011            "description": "Unauthorized"
36012          }
36013        },
36014        "schemes": [
36015          "https"
36016        ],
36017        "tags": [
36018          "core_v1"
36019        ],
36020        "x-kubernetes-action": "watchlist",
36021        "x-kubernetes-group-version-kind": {
36022          "group": "",
36023          "kind": "ResourceQuota",
36024          "version": "v1"
36025        }
36026      },
36027      "parameters": [
36028        {
36029          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36030          "in": "query",
36031          "name": "allowWatchBookmarks",
36032          "type": "boolean",
36033          "uniqueItems": true
36034        },
36035        {
36036          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36037          "in": "query",
36038          "name": "continue",
36039          "type": "string",
36040          "uniqueItems": true
36041        },
36042        {
36043          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36044          "in": "query",
36045          "name": "fieldSelector",
36046          "type": "string",
36047          "uniqueItems": true
36048        },
36049        {
36050          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36051          "in": "query",
36052          "name": "labelSelector",
36053          "type": "string",
36054          "uniqueItems": true
36055        },
36056        {
36057          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36058          "in": "query",
36059          "name": "limit",
36060          "type": "integer",
36061          "uniqueItems": true
36062        },
36063        {
36064          "description": "object name and auth scope, such as for teams and projects",
36065          "in": "path",
36066          "name": "namespace",
36067          "required": true,
36068          "type": "string",
36069          "uniqueItems": true
36070        },
36071        {
36072          "description": "If 'true', then the output is pretty printed.",
36073          "in": "query",
36074          "name": "pretty",
36075          "type": "string",
36076          "uniqueItems": true
36077        },
36078        {
36079          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36080          "in": "query",
36081          "name": "resourceVersion",
36082          "type": "string",
36083          "uniqueItems": true
36084        },
36085        {
36086          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36087          "in": "query",
36088          "name": "timeoutSeconds",
36089          "type": "integer",
36090          "uniqueItems": true
36091        },
36092        {
36093          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36094          "in": "query",
36095          "name": "watch",
36096          "type": "boolean",
36097          "uniqueItems": true
36098        }
36099      ]
36100    },
36101    "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": {
36102      "get": {
36103        "consumes": [
36104          "*/*"
36105        ],
36106        "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.",
36107        "operationId": "watchCoreV1NamespacedResourceQuota",
36108        "produces": [
36109          "application/json",
36110          "application/yaml",
36111          "application/vnd.kubernetes.protobuf",
36112          "application/json;stream=watch",
36113          "application/vnd.kubernetes.protobuf;stream=watch"
36114        ],
36115        "responses": {
36116          "200": {
36117            "description": "OK",
36118            "schema": {
36119              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36120            }
36121          },
36122          "401": {
36123            "description": "Unauthorized"
36124          }
36125        },
36126        "schemes": [
36127          "https"
36128        ],
36129        "tags": [
36130          "core_v1"
36131        ],
36132        "x-kubernetes-action": "watch",
36133        "x-kubernetes-group-version-kind": {
36134          "group": "",
36135          "kind": "ResourceQuota",
36136          "version": "v1"
36137        }
36138      },
36139      "parameters": [
36140        {
36141          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36142          "in": "query",
36143          "name": "allowWatchBookmarks",
36144          "type": "boolean",
36145          "uniqueItems": true
36146        },
36147        {
36148          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36149          "in": "query",
36150          "name": "continue",
36151          "type": "string",
36152          "uniqueItems": true
36153        },
36154        {
36155          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36156          "in": "query",
36157          "name": "fieldSelector",
36158          "type": "string",
36159          "uniqueItems": true
36160        },
36161        {
36162          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36163          "in": "query",
36164          "name": "labelSelector",
36165          "type": "string",
36166          "uniqueItems": true
36167        },
36168        {
36169          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36170          "in": "query",
36171          "name": "limit",
36172          "type": "integer",
36173          "uniqueItems": true
36174        },
36175        {
36176          "description": "name of the ResourceQuota",
36177          "in": "path",
36178          "name": "name",
36179          "required": true,
36180          "type": "string",
36181          "uniqueItems": true
36182        },
36183        {
36184          "description": "object name and auth scope, such as for teams and projects",
36185          "in": "path",
36186          "name": "namespace",
36187          "required": true,
36188          "type": "string",
36189          "uniqueItems": true
36190        },
36191        {
36192          "description": "If 'true', then the output is pretty printed.",
36193          "in": "query",
36194          "name": "pretty",
36195          "type": "string",
36196          "uniqueItems": true
36197        },
36198        {
36199          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36200          "in": "query",
36201          "name": "resourceVersion",
36202          "type": "string",
36203          "uniqueItems": true
36204        },
36205        {
36206          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36207          "in": "query",
36208          "name": "timeoutSeconds",
36209          "type": "integer",
36210          "uniqueItems": true
36211        },
36212        {
36213          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36214          "in": "query",
36215          "name": "watch",
36216          "type": "boolean",
36217          "uniqueItems": true
36218        }
36219      ]
36220    },
36221    "/api/v1/watch/namespaces/{namespace}/secrets": {
36222      "get": {
36223        "consumes": [
36224          "*/*"
36225        ],
36226        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
36227        "operationId": "watchCoreV1NamespacedSecretList",
36228        "produces": [
36229          "application/json",
36230          "application/yaml",
36231          "application/vnd.kubernetes.protobuf",
36232          "application/json;stream=watch",
36233          "application/vnd.kubernetes.protobuf;stream=watch"
36234        ],
36235        "responses": {
36236          "200": {
36237            "description": "OK",
36238            "schema": {
36239              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36240            }
36241          },
36242          "401": {
36243            "description": "Unauthorized"
36244          }
36245        },
36246        "schemes": [
36247          "https"
36248        ],
36249        "tags": [
36250          "core_v1"
36251        ],
36252        "x-kubernetes-action": "watchlist",
36253        "x-kubernetes-group-version-kind": {
36254          "group": "",
36255          "kind": "Secret",
36256          "version": "v1"
36257        }
36258      },
36259      "parameters": [
36260        {
36261          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36262          "in": "query",
36263          "name": "allowWatchBookmarks",
36264          "type": "boolean",
36265          "uniqueItems": true
36266        },
36267        {
36268          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36269          "in": "query",
36270          "name": "continue",
36271          "type": "string",
36272          "uniqueItems": true
36273        },
36274        {
36275          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36276          "in": "query",
36277          "name": "fieldSelector",
36278          "type": "string",
36279          "uniqueItems": true
36280        },
36281        {
36282          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36283          "in": "query",
36284          "name": "labelSelector",
36285          "type": "string",
36286          "uniqueItems": true
36287        },
36288        {
36289          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36290          "in": "query",
36291          "name": "limit",
36292          "type": "integer",
36293          "uniqueItems": true
36294        },
36295        {
36296          "description": "object name and auth scope, such as for teams and projects",
36297          "in": "path",
36298          "name": "namespace",
36299          "required": true,
36300          "type": "string",
36301          "uniqueItems": true
36302        },
36303        {
36304          "description": "If 'true', then the output is pretty printed.",
36305          "in": "query",
36306          "name": "pretty",
36307          "type": "string",
36308          "uniqueItems": true
36309        },
36310        {
36311          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36312          "in": "query",
36313          "name": "resourceVersion",
36314          "type": "string",
36315          "uniqueItems": true
36316        },
36317        {
36318          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36319          "in": "query",
36320          "name": "timeoutSeconds",
36321          "type": "integer",
36322          "uniqueItems": true
36323        },
36324        {
36325          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36326          "in": "query",
36327          "name": "watch",
36328          "type": "boolean",
36329          "uniqueItems": true
36330        }
36331      ]
36332    },
36333    "/api/v1/watch/namespaces/{namespace}/secrets/{name}": {
36334      "get": {
36335        "consumes": [
36336          "*/*"
36337        ],
36338        "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.",
36339        "operationId": "watchCoreV1NamespacedSecret",
36340        "produces": [
36341          "application/json",
36342          "application/yaml",
36343          "application/vnd.kubernetes.protobuf",
36344          "application/json;stream=watch",
36345          "application/vnd.kubernetes.protobuf;stream=watch"
36346        ],
36347        "responses": {
36348          "200": {
36349            "description": "OK",
36350            "schema": {
36351              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36352            }
36353          },
36354          "401": {
36355            "description": "Unauthorized"
36356          }
36357        },
36358        "schemes": [
36359          "https"
36360        ],
36361        "tags": [
36362          "core_v1"
36363        ],
36364        "x-kubernetes-action": "watch",
36365        "x-kubernetes-group-version-kind": {
36366          "group": "",
36367          "kind": "Secret",
36368          "version": "v1"
36369        }
36370      },
36371      "parameters": [
36372        {
36373          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36374          "in": "query",
36375          "name": "allowWatchBookmarks",
36376          "type": "boolean",
36377          "uniqueItems": true
36378        },
36379        {
36380          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36381          "in": "query",
36382          "name": "continue",
36383          "type": "string",
36384          "uniqueItems": true
36385        },
36386        {
36387          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36388          "in": "query",
36389          "name": "fieldSelector",
36390          "type": "string",
36391          "uniqueItems": true
36392        },
36393        {
36394          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36395          "in": "query",
36396          "name": "labelSelector",
36397          "type": "string",
36398          "uniqueItems": true
36399        },
36400        {
36401          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36402          "in": "query",
36403          "name": "limit",
36404          "type": "integer",
36405          "uniqueItems": true
36406        },
36407        {
36408          "description": "name of the Secret",
36409          "in": "path",
36410          "name": "name",
36411          "required": true,
36412          "type": "string",
36413          "uniqueItems": true
36414        },
36415        {
36416          "description": "object name and auth scope, such as for teams and projects",
36417          "in": "path",
36418          "name": "namespace",
36419          "required": true,
36420          "type": "string",
36421          "uniqueItems": true
36422        },
36423        {
36424          "description": "If 'true', then the output is pretty printed.",
36425          "in": "query",
36426          "name": "pretty",
36427          "type": "string",
36428          "uniqueItems": true
36429        },
36430        {
36431          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36432          "in": "query",
36433          "name": "resourceVersion",
36434          "type": "string",
36435          "uniqueItems": true
36436        },
36437        {
36438          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36439          "in": "query",
36440          "name": "timeoutSeconds",
36441          "type": "integer",
36442          "uniqueItems": true
36443        },
36444        {
36445          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36446          "in": "query",
36447          "name": "watch",
36448          "type": "boolean",
36449          "uniqueItems": true
36450        }
36451      ]
36452    },
36453    "/api/v1/watch/namespaces/{namespace}/serviceaccounts": {
36454      "get": {
36455        "consumes": [
36456          "*/*"
36457        ],
36458        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
36459        "operationId": "watchCoreV1NamespacedServiceAccountList",
36460        "produces": [
36461          "application/json",
36462          "application/yaml",
36463          "application/vnd.kubernetes.protobuf",
36464          "application/json;stream=watch",
36465          "application/vnd.kubernetes.protobuf;stream=watch"
36466        ],
36467        "responses": {
36468          "200": {
36469            "description": "OK",
36470            "schema": {
36471              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36472            }
36473          },
36474          "401": {
36475            "description": "Unauthorized"
36476          }
36477        },
36478        "schemes": [
36479          "https"
36480        ],
36481        "tags": [
36482          "core_v1"
36483        ],
36484        "x-kubernetes-action": "watchlist",
36485        "x-kubernetes-group-version-kind": {
36486          "group": "",
36487          "kind": "ServiceAccount",
36488          "version": "v1"
36489        }
36490      },
36491      "parameters": [
36492        {
36493          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36494          "in": "query",
36495          "name": "allowWatchBookmarks",
36496          "type": "boolean",
36497          "uniqueItems": true
36498        },
36499        {
36500          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36501          "in": "query",
36502          "name": "continue",
36503          "type": "string",
36504          "uniqueItems": true
36505        },
36506        {
36507          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36508          "in": "query",
36509          "name": "fieldSelector",
36510          "type": "string",
36511          "uniqueItems": true
36512        },
36513        {
36514          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36515          "in": "query",
36516          "name": "labelSelector",
36517          "type": "string",
36518          "uniqueItems": true
36519        },
36520        {
36521          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36522          "in": "query",
36523          "name": "limit",
36524          "type": "integer",
36525          "uniqueItems": true
36526        },
36527        {
36528          "description": "object name and auth scope, such as for teams and projects",
36529          "in": "path",
36530          "name": "namespace",
36531          "required": true,
36532          "type": "string",
36533          "uniqueItems": true
36534        },
36535        {
36536          "description": "If 'true', then the output is pretty printed.",
36537          "in": "query",
36538          "name": "pretty",
36539          "type": "string",
36540          "uniqueItems": true
36541        },
36542        {
36543          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36544          "in": "query",
36545          "name": "resourceVersion",
36546          "type": "string",
36547          "uniqueItems": true
36548        },
36549        {
36550          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36551          "in": "query",
36552          "name": "timeoutSeconds",
36553          "type": "integer",
36554          "uniqueItems": true
36555        },
36556        {
36557          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36558          "in": "query",
36559          "name": "watch",
36560          "type": "boolean",
36561          "uniqueItems": true
36562        }
36563      ]
36564    },
36565    "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": {
36566      "get": {
36567        "consumes": [
36568          "*/*"
36569        ],
36570        "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.",
36571        "operationId": "watchCoreV1NamespacedServiceAccount",
36572        "produces": [
36573          "application/json",
36574          "application/yaml",
36575          "application/vnd.kubernetes.protobuf",
36576          "application/json;stream=watch",
36577          "application/vnd.kubernetes.protobuf;stream=watch"
36578        ],
36579        "responses": {
36580          "200": {
36581            "description": "OK",
36582            "schema": {
36583              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36584            }
36585          },
36586          "401": {
36587            "description": "Unauthorized"
36588          }
36589        },
36590        "schemes": [
36591          "https"
36592        ],
36593        "tags": [
36594          "core_v1"
36595        ],
36596        "x-kubernetes-action": "watch",
36597        "x-kubernetes-group-version-kind": {
36598          "group": "",
36599          "kind": "ServiceAccount",
36600          "version": "v1"
36601        }
36602      },
36603      "parameters": [
36604        {
36605          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36606          "in": "query",
36607          "name": "allowWatchBookmarks",
36608          "type": "boolean",
36609          "uniqueItems": true
36610        },
36611        {
36612          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36613          "in": "query",
36614          "name": "continue",
36615          "type": "string",
36616          "uniqueItems": true
36617        },
36618        {
36619          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36620          "in": "query",
36621          "name": "fieldSelector",
36622          "type": "string",
36623          "uniqueItems": true
36624        },
36625        {
36626          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36627          "in": "query",
36628          "name": "labelSelector",
36629          "type": "string",
36630          "uniqueItems": true
36631        },
36632        {
36633          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36634          "in": "query",
36635          "name": "limit",
36636          "type": "integer",
36637          "uniqueItems": true
36638        },
36639        {
36640          "description": "name of the ServiceAccount",
36641          "in": "path",
36642          "name": "name",
36643          "required": true,
36644          "type": "string",
36645          "uniqueItems": true
36646        },
36647        {
36648          "description": "object name and auth scope, such as for teams and projects",
36649          "in": "path",
36650          "name": "namespace",
36651          "required": true,
36652          "type": "string",
36653          "uniqueItems": true
36654        },
36655        {
36656          "description": "If 'true', then the output is pretty printed.",
36657          "in": "query",
36658          "name": "pretty",
36659          "type": "string",
36660          "uniqueItems": true
36661        },
36662        {
36663          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36664          "in": "query",
36665          "name": "resourceVersion",
36666          "type": "string",
36667          "uniqueItems": true
36668        },
36669        {
36670          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36671          "in": "query",
36672          "name": "timeoutSeconds",
36673          "type": "integer",
36674          "uniqueItems": true
36675        },
36676        {
36677          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36678          "in": "query",
36679          "name": "watch",
36680          "type": "boolean",
36681          "uniqueItems": true
36682        }
36683      ]
36684    },
36685    "/api/v1/watch/namespaces/{namespace}/services": {
36686      "get": {
36687        "consumes": [
36688          "*/*"
36689        ],
36690        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
36691        "operationId": "watchCoreV1NamespacedServiceList",
36692        "produces": [
36693          "application/json",
36694          "application/yaml",
36695          "application/vnd.kubernetes.protobuf",
36696          "application/json;stream=watch",
36697          "application/vnd.kubernetes.protobuf;stream=watch"
36698        ],
36699        "responses": {
36700          "200": {
36701            "description": "OK",
36702            "schema": {
36703              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36704            }
36705          },
36706          "401": {
36707            "description": "Unauthorized"
36708          }
36709        },
36710        "schemes": [
36711          "https"
36712        ],
36713        "tags": [
36714          "core_v1"
36715        ],
36716        "x-kubernetes-action": "watchlist",
36717        "x-kubernetes-group-version-kind": {
36718          "group": "",
36719          "kind": "Service",
36720          "version": "v1"
36721        }
36722      },
36723      "parameters": [
36724        {
36725          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36726          "in": "query",
36727          "name": "allowWatchBookmarks",
36728          "type": "boolean",
36729          "uniqueItems": true
36730        },
36731        {
36732          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36733          "in": "query",
36734          "name": "continue",
36735          "type": "string",
36736          "uniqueItems": true
36737        },
36738        {
36739          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36740          "in": "query",
36741          "name": "fieldSelector",
36742          "type": "string",
36743          "uniqueItems": true
36744        },
36745        {
36746          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36747          "in": "query",
36748          "name": "labelSelector",
36749          "type": "string",
36750          "uniqueItems": true
36751        },
36752        {
36753          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36754          "in": "query",
36755          "name": "limit",
36756          "type": "integer",
36757          "uniqueItems": true
36758        },
36759        {
36760          "description": "object name and auth scope, such as for teams and projects",
36761          "in": "path",
36762          "name": "namespace",
36763          "required": true,
36764          "type": "string",
36765          "uniqueItems": true
36766        },
36767        {
36768          "description": "If 'true', then the output is pretty printed.",
36769          "in": "query",
36770          "name": "pretty",
36771          "type": "string",
36772          "uniqueItems": true
36773        },
36774        {
36775          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36776          "in": "query",
36777          "name": "resourceVersion",
36778          "type": "string",
36779          "uniqueItems": true
36780        },
36781        {
36782          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36783          "in": "query",
36784          "name": "timeoutSeconds",
36785          "type": "integer",
36786          "uniqueItems": true
36787        },
36788        {
36789          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36790          "in": "query",
36791          "name": "watch",
36792          "type": "boolean",
36793          "uniqueItems": true
36794        }
36795      ]
36796    },
36797    "/api/v1/watch/namespaces/{namespace}/services/{name}": {
36798      "get": {
36799        "consumes": [
36800          "*/*"
36801        ],
36802        "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.",
36803        "operationId": "watchCoreV1NamespacedService",
36804        "produces": [
36805          "application/json",
36806          "application/yaml",
36807          "application/vnd.kubernetes.protobuf",
36808          "application/json;stream=watch",
36809          "application/vnd.kubernetes.protobuf;stream=watch"
36810        ],
36811        "responses": {
36812          "200": {
36813            "description": "OK",
36814            "schema": {
36815              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36816            }
36817          },
36818          "401": {
36819            "description": "Unauthorized"
36820          }
36821        },
36822        "schemes": [
36823          "https"
36824        ],
36825        "tags": [
36826          "core_v1"
36827        ],
36828        "x-kubernetes-action": "watch",
36829        "x-kubernetes-group-version-kind": {
36830          "group": "",
36831          "kind": "Service",
36832          "version": "v1"
36833        }
36834      },
36835      "parameters": [
36836        {
36837          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36838          "in": "query",
36839          "name": "allowWatchBookmarks",
36840          "type": "boolean",
36841          "uniqueItems": true
36842        },
36843        {
36844          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36845          "in": "query",
36846          "name": "continue",
36847          "type": "string",
36848          "uniqueItems": true
36849        },
36850        {
36851          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36852          "in": "query",
36853          "name": "fieldSelector",
36854          "type": "string",
36855          "uniqueItems": true
36856        },
36857        {
36858          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36859          "in": "query",
36860          "name": "labelSelector",
36861          "type": "string",
36862          "uniqueItems": true
36863        },
36864        {
36865          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36866          "in": "query",
36867          "name": "limit",
36868          "type": "integer",
36869          "uniqueItems": true
36870        },
36871        {
36872          "description": "name of the Service",
36873          "in": "path",
36874          "name": "name",
36875          "required": true,
36876          "type": "string",
36877          "uniqueItems": true
36878        },
36879        {
36880          "description": "object name and auth scope, such as for teams and projects",
36881          "in": "path",
36882          "name": "namespace",
36883          "required": true,
36884          "type": "string",
36885          "uniqueItems": true
36886        },
36887        {
36888          "description": "If 'true', then the output is pretty printed.",
36889          "in": "query",
36890          "name": "pretty",
36891          "type": "string",
36892          "uniqueItems": true
36893        },
36894        {
36895          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
36896          "in": "query",
36897          "name": "resourceVersion",
36898          "type": "string",
36899          "uniqueItems": true
36900        },
36901        {
36902          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
36903          "in": "query",
36904          "name": "timeoutSeconds",
36905          "type": "integer",
36906          "uniqueItems": true
36907        },
36908        {
36909          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
36910          "in": "query",
36911          "name": "watch",
36912          "type": "boolean",
36913          "uniqueItems": true
36914        }
36915      ]
36916    },
36917    "/api/v1/watch/namespaces/{name}": {
36918      "get": {
36919        "consumes": [
36920          "*/*"
36921        ],
36922        "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.",
36923        "operationId": "watchCoreV1Namespace",
36924        "produces": [
36925          "application/json",
36926          "application/yaml",
36927          "application/vnd.kubernetes.protobuf",
36928          "application/json;stream=watch",
36929          "application/vnd.kubernetes.protobuf;stream=watch"
36930        ],
36931        "responses": {
36932          "200": {
36933            "description": "OK",
36934            "schema": {
36935              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
36936            }
36937          },
36938          "401": {
36939            "description": "Unauthorized"
36940          }
36941        },
36942        "schemes": [
36943          "https"
36944        ],
36945        "tags": [
36946          "core_v1"
36947        ],
36948        "x-kubernetes-action": "watch",
36949        "x-kubernetes-group-version-kind": {
36950          "group": "",
36951          "kind": "Namespace",
36952          "version": "v1"
36953        }
36954      },
36955      "parameters": [
36956        {
36957          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
36958          "in": "query",
36959          "name": "allowWatchBookmarks",
36960          "type": "boolean",
36961          "uniqueItems": true
36962        },
36963        {
36964          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
36965          "in": "query",
36966          "name": "continue",
36967          "type": "string",
36968          "uniqueItems": true
36969        },
36970        {
36971          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
36972          "in": "query",
36973          "name": "fieldSelector",
36974          "type": "string",
36975          "uniqueItems": true
36976        },
36977        {
36978          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
36979          "in": "query",
36980          "name": "labelSelector",
36981          "type": "string",
36982          "uniqueItems": true
36983        },
36984        {
36985          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
36986          "in": "query",
36987          "name": "limit",
36988          "type": "integer",
36989          "uniqueItems": true
36990        },
36991        {
36992          "description": "name of the Namespace",
36993          "in": "path",
36994          "name": "name",
36995          "required": true,
36996          "type": "string",
36997          "uniqueItems": true
36998        },
36999        {
37000          "description": "If 'true', then the output is pretty printed.",
37001          "in": "query",
37002          "name": "pretty",
37003          "type": "string",
37004          "uniqueItems": true
37005        },
37006        {
37007          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37008          "in": "query",
37009          "name": "resourceVersion",
37010          "type": "string",
37011          "uniqueItems": true
37012        },
37013        {
37014          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37015          "in": "query",
37016          "name": "timeoutSeconds",
37017          "type": "integer",
37018          "uniqueItems": true
37019        },
37020        {
37021          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37022          "in": "query",
37023          "name": "watch",
37024          "type": "boolean",
37025          "uniqueItems": true
37026        }
37027      ]
37028    },
37029    "/api/v1/watch/nodes": {
37030      "get": {
37031        "consumes": [
37032          "*/*"
37033        ],
37034        "description": "watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead.",
37035        "operationId": "watchCoreV1NodeList",
37036        "produces": [
37037          "application/json",
37038          "application/yaml",
37039          "application/vnd.kubernetes.protobuf",
37040          "application/json;stream=watch",
37041          "application/vnd.kubernetes.protobuf;stream=watch"
37042        ],
37043        "responses": {
37044          "200": {
37045            "description": "OK",
37046            "schema": {
37047              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37048            }
37049          },
37050          "401": {
37051            "description": "Unauthorized"
37052          }
37053        },
37054        "schemes": [
37055          "https"
37056        ],
37057        "tags": [
37058          "core_v1"
37059        ],
37060        "x-kubernetes-action": "watchlist",
37061        "x-kubernetes-group-version-kind": {
37062          "group": "",
37063          "kind": "Node",
37064          "version": "v1"
37065        }
37066      },
37067      "parameters": [
37068        {
37069          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37070          "in": "query",
37071          "name": "allowWatchBookmarks",
37072          "type": "boolean",
37073          "uniqueItems": true
37074        },
37075        {
37076          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37077          "in": "query",
37078          "name": "continue",
37079          "type": "string",
37080          "uniqueItems": true
37081        },
37082        {
37083          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37084          "in": "query",
37085          "name": "fieldSelector",
37086          "type": "string",
37087          "uniqueItems": true
37088        },
37089        {
37090          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37091          "in": "query",
37092          "name": "labelSelector",
37093          "type": "string",
37094          "uniqueItems": true
37095        },
37096        {
37097          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37098          "in": "query",
37099          "name": "limit",
37100          "type": "integer",
37101          "uniqueItems": true
37102        },
37103        {
37104          "description": "If 'true', then the output is pretty printed.",
37105          "in": "query",
37106          "name": "pretty",
37107          "type": "string",
37108          "uniqueItems": true
37109        },
37110        {
37111          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37112          "in": "query",
37113          "name": "resourceVersion",
37114          "type": "string",
37115          "uniqueItems": true
37116        },
37117        {
37118          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37119          "in": "query",
37120          "name": "timeoutSeconds",
37121          "type": "integer",
37122          "uniqueItems": true
37123        },
37124        {
37125          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37126          "in": "query",
37127          "name": "watch",
37128          "type": "boolean",
37129          "uniqueItems": true
37130        }
37131      ]
37132    },
37133    "/api/v1/watch/nodes/{name}": {
37134      "get": {
37135        "consumes": [
37136          "*/*"
37137        ],
37138        "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.",
37139        "operationId": "watchCoreV1Node",
37140        "produces": [
37141          "application/json",
37142          "application/yaml",
37143          "application/vnd.kubernetes.protobuf",
37144          "application/json;stream=watch",
37145          "application/vnd.kubernetes.protobuf;stream=watch"
37146        ],
37147        "responses": {
37148          "200": {
37149            "description": "OK",
37150            "schema": {
37151              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37152            }
37153          },
37154          "401": {
37155            "description": "Unauthorized"
37156          }
37157        },
37158        "schemes": [
37159          "https"
37160        ],
37161        "tags": [
37162          "core_v1"
37163        ],
37164        "x-kubernetes-action": "watch",
37165        "x-kubernetes-group-version-kind": {
37166          "group": "",
37167          "kind": "Node",
37168          "version": "v1"
37169        }
37170      },
37171      "parameters": [
37172        {
37173          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37174          "in": "query",
37175          "name": "allowWatchBookmarks",
37176          "type": "boolean",
37177          "uniqueItems": true
37178        },
37179        {
37180          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37181          "in": "query",
37182          "name": "continue",
37183          "type": "string",
37184          "uniqueItems": true
37185        },
37186        {
37187          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37188          "in": "query",
37189          "name": "fieldSelector",
37190          "type": "string",
37191          "uniqueItems": true
37192        },
37193        {
37194          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37195          "in": "query",
37196          "name": "labelSelector",
37197          "type": "string",
37198          "uniqueItems": true
37199        },
37200        {
37201          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37202          "in": "query",
37203          "name": "limit",
37204          "type": "integer",
37205          "uniqueItems": true
37206        },
37207        {
37208          "description": "name of the Node",
37209          "in": "path",
37210          "name": "name",
37211          "required": true,
37212          "type": "string",
37213          "uniqueItems": true
37214        },
37215        {
37216          "description": "If 'true', then the output is pretty printed.",
37217          "in": "query",
37218          "name": "pretty",
37219          "type": "string",
37220          "uniqueItems": true
37221        },
37222        {
37223          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37224          "in": "query",
37225          "name": "resourceVersion",
37226          "type": "string",
37227          "uniqueItems": true
37228        },
37229        {
37230          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37231          "in": "query",
37232          "name": "timeoutSeconds",
37233          "type": "integer",
37234          "uniqueItems": true
37235        },
37236        {
37237          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37238          "in": "query",
37239          "name": "watch",
37240          "type": "boolean",
37241          "uniqueItems": true
37242        }
37243      ]
37244    },
37245    "/api/v1/watch/persistentvolumeclaims": {
37246      "get": {
37247        "consumes": [
37248          "*/*"
37249        ],
37250        "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.",
37251        "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
37252        "produces": [
37253          "application/json",
37254          "application/yaml",
37255          "application/vnd.kubernetes.protobuf",
37256          "application/json;stream=watch",
37257          "application/vnd.kubernetes.protobuf;stream=watch"
37258        ],
37259        "responses": {
37260          "200": {
37261            "description": "OK",
37262            "schema": {
37263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37264            }
37265          },
37266          "401": {
37267            "description": "Unauthorized"
37268          }
37269        },
37270        "schemes": [
37271          "https"
37272        ],
37273        "tags": [
37274          "core_v1"
37275        ],
37276        "x-kubernetes-action": "watchlist",
37277        "x-kubernetes-group-version-kind": {
37278          "group": "",
37279          "kind": "PersistentVolumeClaim",
37280          "version": "v1"
37281        }
37282      },
37283      "parameters": [
37284        {
37285          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37286          "in": "query",
37287          "name": "allowWatchBookmarks",
37288          "type": "boolean",
37289          "uniqueItems": true
37290        },
37291        {
37292          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37293          "in": "query",
37294          "name": "continue",
37295          "type": "string",
37296          "uniqueItems": true
37297        },
37298        {
37299          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37300          "in": "query",
37301          "name": "fieldSelector",
37302          "type": "string",
37303          "uniqueItems": true
37304        },
37305        {
37306          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37307          "in": "query",
37308          "name": "labelSelector",
37309          "type": "string",
37310          "uniqueItems": true
37311        },
37312        {
37313          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37314          "in": "query",
37315          "name": "limit",
37316          "type": "integer",
37317          "uniqueItems": true
37318        },
37319        {
37320          "description": "If 'true', then the output is pretty printed.",
37321          "in": "query",
37322          "name": "pretty",
37323          "type": "string",
37324          "uniqueItems": true
37325        },
37326        {
37327          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37328          "in": "query",
37329          "name": "resourceVersion",
37330          "type": "string",
37331          "uniqueItems": true
37332        },
37333        {
37334          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37335          "in": "query",
37336          "name": "timeoutSeconds",
37337          "type": "integer",
37338          "uniqueItems": true
37339        },
37340        {
37341          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37342          "in": "query",
37343          "name": "watch",
37344          "type": "boolean",
37345          "uniqueItems": true
37346        }
37347      ]
37348    },
37349    "/api/v1/watch/persistentvolumes": {
37350      "get": {
37351        "consumes": [
37352          "*/*"
37353        ],
37354        "description": "watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead.",
37355        "operationId": "watchCoreV1PersistentVolumeList",
37356        "produces": [
37357          "application/json",
37358          "application/yaml",
37359          "application/vnd.kubernetes.protobuf",
37360          "application/json;stream=watch",
37361          "application/vnd.kubernetes.protobuf;stream=watch"
37362        ],
37363        "responses": {
37364          "200": {
37365            "description": "OK",
37366            "schema": {
37367              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37368            }
37369          },
37370          "401": {
37371            "description": "Unauthorized"
37372          }
37373        },
37374        "schemes": [
37375          "https"
37376        ],
37377        "tags": [
37378          "core_v1"
37379        ],
37380        "x-kubernetes-action": "watchlist",
37381        "x-kubernetes-group-version-kind": {
37382          "group": "",
37383          "kind": "PersistentVolume",
37384          "version": "v1"
37385        }
37386      },
37387      "parameters": [
37388        {
37389          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37390          "in": "query",
37391          "name": "allowWatchBookmarks",
37392          "type": "boolean",
37393          "uniqueItems": true
37394        },
37395        {
37396          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37397          "in": "query",
37398          "name": "continue",
37399          "type": "string",
37400          "uniqueItems": true
37401        },
37402        {
37403          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37404          "in": "query",
37405          "name": "fieldSelector",
37406          "type": "string",
37407          "uniqueItems": true
37408        },
37409        {
37410          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37411          "in": "query",
37412          "name": "labelSelector",
37413          "type": "string",
37414          "uniqueItems": true
37415        },
37416        {
37417          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37418          "in": "query",
37419          "name": "limit",
37420          "type": "integer",
37421          "uniqueItems": true
37422        },
37423        {
37424          "description": "If 'true', then the output is pretty printed.",
37425          "in": "query",
37426          "name": "pretty",
37427          "type": "string",
37428          "uniqueItems": true
37429        },
37430        {
37431          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37432          "in": "query",
37433          "name": "resourceVersion",
37434          "type": "string",
37435          "uniqueItems": true
37436        },
37437        {
37438          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37439          "in": "query",
37440          "name": "timeoutSeconds",
37441          "type": "integer",
37442          "uniqueItems": true
37443        },
37444        {
37445          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37446          "in": "query",
37447          "name": "watch",
37448          "type": "boolean",
37449          "uniqueItems": true
37450        }
37451      ]
37452    },
37453    "/api/v1/watch/persistentvolumes/{name}": {
37454      "get": {
37455        "consumes": [
37456          "*/*"
37457        ],
37458        "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.",
37459        "operationId": "watchCoreV1PersistentVolume",
37460        "produces": [
37461          "application/json",
37462          "application/yaml",
37463          "application/vnd.kubernetes.protobuf",
37464          "application/json;stream=watch",
37465          "application/vnd.kubernetes.protobuf;stream=watch"
37466        ],
37467        "responses": {
37468          "200": {
37469            "description": "OK",
37470            "schema": {
37471              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37472            }
37473          },
37474          "401": {
37475            "description": "Unauthorized"
37476          }
37477        },
37478        "schemes": [
37479          "https"
37480        ],
37481        "tags": [
37482          "core_v1"
37483        ],
37484        "x-kubernetes-action": "watch",
37485        "x-kubernetes-group-version-kind": {
37486          "group": "",
37487          "kind": "PersistentVolume",
37488          "version": "v1"
37489        }
37490      },
37491      "parameters": [
37492        {
37493          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37494          "in": "query",
37495          "name": "allowWatchBookmarks",
37496          "type": "boolean",
37497          "uniqueItems": true
37498        },
37499        {
37500          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37501          "in": "query",
37502          "name": "continue",
37503          "type": "string",
37504          "uniqueItems": true
37505        },
37506        {
37507          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37508          "in": "query",
37509          "name": "fieldSelector",
37510          "type": "string",
37511          "uniqueItems": true
37512        },
37513        {
37514          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37515          "in": "query",
37516          "name": "labelSelector",
37517          "type": "string",
37518          "uniqueItems": true
37519        },
37520        {
37521          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37522          "in": "query",
37523          "name": "limit",
37524          "type": "integer",
37525          "uniqueItems": true
37526        },
37527        {
37528          "description": "name of the PersistentVolume",
37529          "in": "path",
37530          "name": "name",
37531          "required": true,
37532          "type": "string",
37533          "uniqueItems": true
37534        },
37535        {
37536          "description": "If 'true', then the output is pretty printed.",
37537          "in": "query",
37538          "name": "pretty",
37539          "type": "string",
37540          "uniqueItems": true
37541        },
37542        {
37543          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37544          "in": "query",
37545          "name": "resourceVersion",
37546          "type": "string",
37547          "uniqueItems": true
37548        },
37549        {
37550          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37551          "in": "query",
37552          "name": "timeoutSeconds",
37553          "type": "integer",
37554          "uniqueItems": true
37555        },
37556        {
37557          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37558          "in": "query",
37559          "name": "watch",
37560          "type": "boolean",
37561          "uniqueItems": true
37562        }
37563      ]
37564    },
37565    "/api/v1/watch/pods": {
37566      "get": {
37567        "consumes": [
37568          "*/*"
37569        ],
37570        "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.",
37571        "operationId": "watchCoreV1PodListForAllNamespaces",
37572        "produces": [
37573          "application/json",
37574          "application/yaml",
37575          "application/vnd.kubernetes.protobuf",
37576          "application/json;stream=watch",
37577          "application/vnd.kubernetes.protobuf;stream=watch"
37578        ],
37579        "responses": {
37580          "200": {
37581            "description": "OK",
37582            "schema": {
37583              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37584            }
37585          },
37586          "401": {
37587            "description": "Unauthorized"
37588          }
37589        },
37590        "schemes": [
37591          "https"
37592        ],
37593        "tags": [
37594          "core_v1"
37595        ],
37596        "x-kubernetes-action": "watchlist",
37597        "x-kubernetes-group-version-kind": {
37598          "group": "",
37599          "kind": "Pod",
37600          "version": "v1"
37601        }
37602      },
37603      "parameters": [
37604        {
37605          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37606          "in": "query",
37607          "name": "allowWatchBookmarks",
37608          "type": "boolean",
37609          "uniqueItems": true
37610        },
37611        {
37612          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37613          "in": "query",
37614          "name": "continue",
37615          "type": "string",
37616          "uniqueItems": true
37617        },
37618        {
37619          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37620          "in": "query",
37621          "name": "fieldSelector",
37622          "type": "string",
37623          "uniqueItems": true
37624        },
37625        {
37626          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37627          "in": "query",
37628          "name": "labelSelector",
37629          "type": "string",
37630          "uniqueItems": true
37631        },
37632        {
37633          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37634          "in": "query",
37635          "name": "limit",
37636          "type": "integer",
37637          "uniqueItems": true
37638        },
37639        {
37640          "description": "If 'true', then the output is pretty printed.",
37641          "in": "query",
37642          "name": "pretty",
37643          "type": "string",
37644          "uniqueItems": true
37645        },
37646        {
37647          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37648          "in": "query",
37649          "name": "resourceVersion",
37650          "type": "string",
37651          "uniqueItems": true
37652        },
37653        {
37654          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37655          "in": "query",
37656          "name": "timeoutSeconds",
37657          "type": "integer",
37658          "uniqueItems": true
37659        },
37660        {
37661          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37662          "in": "query",
37663          "name": "watch",
37664          "type": "boolean",
37665          "uniqueItems": true
37666        }
37667      ]
37668    },
37669    "/api/v1/watch/podtemplates": {
37670      "get": {
37671        "consumes": [
37672          "*/*"
37673        ],
37674        "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.",
37675        "operationId": "watchCoreV1PodTemplateListForAllNamespaces",
37676        "produces": [
37677          "application/json",
37678          "application/yaml",
37679          "application/vnd.kubernetes.protobuf",
37680          "application/json;stream=watch",
37681          "application/vnd.kubernetes.protobuf;stream=watch"
37682        ],
37683        "responses": {
37684          "200": {
37685            "description": "OK",
37686            "schema": {
37687              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37688            }
37689          },
37690          "401": {
37691            "description": "Unauthorized"
37692          }
37693        },
37694        "schemes": [
37695          "https"
37696        ],
37697        "tags": [
37698          "core_v1"
37699        ],
37700        "x-kubernetes-action": "watchlist",
37701        "x-kubernetes-group-version-kind": {
37702          "group": "",
37703          "kind": "PodTemplate",
37704          "version": "v1"
37705        }
37706      },
37707      "parameters": [
37708        {
37709          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37710          "in": "query",
37711          "name": "allowWatchBookmarks",
37712          "type": "boolean",
37713          "uniqueItems": true
37714        },
37715        {
37716          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37717          "in": "query",
37718          "name": "continue",
37719          "type": "string",
37720          "uniqueItems": true
37721        },
37722        {
37723          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37724          "in": "query",
37725          "name": "fieldSelector",
37726          "type": "string",
37727          "uniqueItems": true
37728        },
37729        {
37730          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37731          "in": "query",
37732          "name": "labelSelector",
37733          "type": "string",
37734          "uniqueItems": true
37735        },
37736        {
37737          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37738          "in": "query",
37739          "name": "limit",
37740          "type": "integer",
37741          "uniqueItems": true
37742        },
37743        {
37744          "description": "If 'true', then the output is pretty printed.",
37745          "in": "query",
37746          "name": "pretty",
37747          "type": "string",
37748          "uniqueItems": true
37749        },
37750        {
37751          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37752          "in": "query",
37753          "name": "resourceVersion",
37754          "type": "string",
37755          "uniqueItems": true
37756        },
37757        {
37758          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37759          "in": "query",
37760          "name": "timeoutSeconds",
37761          "type": "integer",
37762          "uniqueItems": true
37763        },
37764        {
37765          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37766          "in": "query",
37767          "name": "watch",
37768          "type": "boolean",
37769          "uniqueItems": true
37770        }
37771      ]
37772    },
37773    "/api/v1/watch/replicationcontrollers": {
37774      "get": {
37775        "consumes": [
37776          "*/*"
37777        ],
37778        "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.",
37779        "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces",
37780        "produces": [
37781          "application/json",
37782          "application/yaml",
37783          "application/vnd.kubernetes.protobuf",
37784          "application/json;stream=watch",
37785          "application/vnd.kubernetes.protobuf;stream=watch"
37786        ],
37787        "responses": {
37788          "200": {
37789            "description": "OK",
37790            "schema": {
37791              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37792            }
37793          },
37794          "401": {
37795            "description": "Unauthorized"
37796          }
37797        },
37798        "schemes": [
37799          "https"
37800        ],
37801        "tags": [
37802          "core_v1"
37803        ],
37804        "x-kubernetes-action": "watchlist",
37805        "x-kubernetes-group-version-kind": {
37806          "group": "",
37807          "kind": "ReplicationController",
37808          "version": "v1"
37809        }
37810      },
37811      "parameters": [
37812        {
37813          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37814          "in": "query",
37815          "name": "allowWatchBookmarks",
37816          "type": "boolean",
37817          "uniqueItems": true
37818        },
37819        {
37820          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37821          "in": "query",
37822          "name": "continue",
37823          "type": "string",
37824          "uniqueItems": true
37825        },
37826        {
37827          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37828          "in": "query",
37829          "name": "fieldSelector",
37830          "type": "string",
37831          "uniqueItems": true
37832        },
37833        {
37834          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37835          "in": "query",
37836          "name": "labelSelector",
37837          "type": "string",
37838          "uniqueItems": true
37839        },
37840        {
37841          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37842          "in": "query",
37843          "name": "limit",
37844          "type": "integer",
37845          "uniqueItems": true
37846        },
37847        {
37848          "description": "If 'true', then the output is pretty printed.",
37849          "in": "query",
37850          "name": "pretty",
37851          "type": "string",
37852          "uniqueItems": true
37853        },
37854        {
37855          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37856          "in": "query",
37857          "name": "resourceVersion",
37858          "type": "string",
37859          "uniqueItems": true
37860        },
37861        {
37862          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37863          "in": "query",
37864          "name": "timeoutSeconds",
37865          "type": "integer",
37866          "uniqueItems": true
37867        },
37868        {
37869          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37870          "in": "query",
37871          "name": "watch",
37872          "type": "boolean",
37873          "uniqueItems": true
37874        }
37875      ]
37876    },
37877    "/api/v1/watch/resourcequotas": {
37878      "get": {
37879        "consumes": [
37880          "*/*"
37881        ],
37882        "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.",
37883        "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces",
37884        "produces": [
37885          "application/json",
37886          "application/yaml",
37887          "application/vnd.kubernetes.protobuf",
37888          "application/json;stream=watch",
37889          "application/vnd.kubernetes.protobuf;stream=watch"
37890        ],
37891        "responses": {
37892          "200": {
37893            "description": "OK",
37894            "schema": {
37895              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
37896            }
37897          },
37898          "401": {
37899            "description": "Unauthorized"
37900          }
37901        },
37902        "schemes": [
37903          "https"
37904        ],
37905        "tags": [
37906          "core_v1"
37907        ],
37908        "x-kubernetes-action": "watchlist",
37909        "x-kubernetes-group-version-kind": {
37910          "group": "",
37911          "kind": "ResourceQuota",
37912          "version": "v1"
37913        }
37914      },
37915      "parameters": [
37916        {
37917          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
37918          "in": "query",
37919          "name": "allowWatchBookmarks",
37920          "type": "boolean",
37921          "uniqueItems": true
37922        },
37923        {
37924          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
37925          "in": "query",
37926          "name": "continue",
37927          "type": "string",
37928          "uniqueItems": true
37929        },
37930        {
37931          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
37932          "in": "query",
37933          "name": "fieldSelector",
37934          "type": "string",
37935          "uniqueItems": true
37936        },
37937        {
37938          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
37939          "in": "query",
37940          "name": "labelSelector",
37941          "type": "string",
37942          "uniqueItems": true
37943        },
37944        {
37945          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
37946          "in": "query",
37947          "name": "limit",
37948          "type": "integer",
37949          "uniqueItems": true
37950        },
37951        {
37952          "description": "If 'true', then the output is pretty printed.",
37953          "in": "query",
37954          "name": "pretty",
37955          "type": "string",
37956          "uniqueItems": true
37957        },
37958        {
37959          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
37960          "in": "query",
37961          "name": "resourceVersion",
37962          "type": "string",
37963          "uniqueItems": true
37964        },
37965        {
37966          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
37967          "in": "query",
37968          "name": "timeoutSeconds",
37969          "type": "integer",
37970          "uniqueItems": true
37971        },
37972        {
37973          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
37974          "in": "query",
37975          "name": "watch",
37976          "type": "boolean",
37977          "uniqueItems": true
37978        }
37979      ]
37980    },
37981    "/api/v1/watch/secrets": {
37982      "get": {
37983        "consumes": [
37984          "*/*"
37985        ],
37986        "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.",
37987        "operationId": "watchCoreV1SecretListForAllNamespaces",
37988        "produces": [
37989          "application/json",
37990          "application/yaml",
37991          "application/vnd.kubernetes.protobuf",
37992          "application/json;stream=watch",
37993          "application/vnd.kubernetes.protobuf;stream=watch"
37994        ],
37995        "responses": {
37996          "200": {
37997            "description": "OK",
37998            "schema": {
37999              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38000            }
38001          },
38002          "401": {
38003            "description": "Unauthorized"
38004          }
38005        },
38006        "schemes": [
38007          "https"
38008        ],
38009        "tags": [
38010          "core_v1"
38011        ],
38012        "x-kubernetes-action": "watchlist",
38013        "x-kubernetes-group-version-kind": {
38014          "group": "",
38015          "kind": "Secret",
38016          "version": "v1"
38017        }
38018      },
38019      "parameters": [
38020        {
38021          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
38022          "in": "query",
38023          "name": "allowWatchBookmarks",
38024          "type": "boolean",
38025          "uniqueItems": true
38026        },
38027        {
38028          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38029          "in": "query",
38030          "name": "continue",
38031          "type": "string",
38032          "uniqueItems": true
38033        },
38034        {
38035          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38036          "in": "query",
38037          "name": "fieldSelector",
38038          "type": "string",
38039          "uniqueItems": true
38040        },
38041        {
38042          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38043          "in": "query",
38044          "name": "labelSelector",
38045          "type": "string",
38046          "uniqueItems": true
38047        },
38048        {
38049          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38050          "in": "query",
38051          "name": "limit",
38052          "type": "integer",
38053          "uniqueItems": true
38054        },
38055        {
38056          "description": "If 'true', then the output is pretty printed.",
38057          "in": "query",
38058          "name": "pretty",
38059          "type": "string",
38060          "uniqueItems": true
38061        },
38062        {
38063          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
38064          "in": "query",
38065          "name": "resourceVersion",
38066          "type": "string",
38067          "uniqueItems": true
38068        },
38069        {
38070          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38071          "in": "query",
38072          "name": "timeoutSeconds",
38073          "type": "integer",
38074          "uniqueItems": true
38075        },
38076        {
38077          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38078          "in": "query",
38079          "name": "watch",
38080          "type": "boolean",
38081          "uniqueItems": true
38082        }
38083      ]
38084    },
38085    "/api/v1/watch/serviceaccounts": {
38086      "get": {
38087        "consumes": [
38088          "*/*"
38089        ],
38090        "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.",
38091        "operationId": "watchCoreV1ServiceAccountListForAllNamespaces",
38092        "produces": [
38093          "application/json",
38094          "application/yaml",
38095          "application/vnd.kubernetes.protobuf",
38096          "application/json;stream=watch",
38097          "application/vnd.kubernetes.protobuf;stream=watch"
38098        ],
38099        "responses": {
38100          "200": {
38101            "description": "OK",
38102            "schema": {
38103              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38104            }
38105          },
38106          "401": {
38107            "description": "Unauthorized"
38108          }
38109        },
38110        "schemes": [
38111          "https"
38112        ],
38113        "tags": [
38114          "core_v1"
38115        ],
38116        "x-kubernetes-action": "watchlist",
38117        "x-kubernetes-group-version-kind": {
38118          "group": "",
38119          "kind": "ServiceAccount",
38120          "version": "v1"
38121        }
38122      },
38123      "parameters": [
38124        {
38125          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
38126          "in": "query",
38127          "name": "allowWatchBookmarks",
38128          "type": "boolean",
38129          "uniqueItems": true
38130        },
38131        {
38132          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38133          "in": "query",
38134          "name": "continue",
38135          "type": "string",
38136          "uniqueItems": true
38137        },
38138        {
38139          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38140          "in": "query",
38141          "name": "fieldSelector",
38142          "type": "string",
38143          "uniqueItems": true
38144        },
38145        {
38146          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38147          "in": "query",
38148          "name": "labelSelector",
38149          "type": "string",
38150          "uniqueItems": true
38151        },
38152        {
38153          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38154          "in": "query",
38155          "name": "limit",
38156          "type": "integer",
38157          "uniqueItems": true
38158        },
38159        {
38160          "description": "If 'true', then the output is pretty printed.",
38161          "in": "query",
38162          "name": "pretty",
38163          "type": "string",
38164          "uniqueItems": true
38165        },
38166        {
38167          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
38168          "in": "query",
38169          "name": "resourceVersion",
38170          "type": "string",
38171          "uniqueItems": true
38172        },
38173        {
38174          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38175          "in": "query",
38176          "name": "timeoutSeconds",
38177          "type": "integer",
38178          "uniqueItems": true
38179        },
38180        {
38181          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38182          "in": "query",
38183          "name": "watch",
38184          "type": "boolean",
38185          "uniqueItems": true
38186        }
38187      ]
38188    },
38189    "/api/v1/watch/services": {
38190      "get": {
38191        "consumes": [
38192          "*/*"
38193        ],
38194        "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.",
38195        "operationId": "watchCoreV1ServiceListForAllNamespaces",
38196        "produces": [
38197          "application/json",
38198          "application/yaml",
38199          "application/vnd.kubernetes.protobuf",
38200          "application/json;stream=watch",
38201          "application/vnd.kubernetes.protobuf;stream=watch"
38202        ],
38203        "responses": {
38204          "200": {
38205            "description": "OK",
38206            "schema": {
38207              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
38208            }
38209          },
38210          "401": {
38211            "description": "Unauthorized"
38212          }
38213        },
38214        "schemes": [
38215          "https"
38216        ],
38217        "tags": [
38218          "core_v1"
38219        ],
38220        "x-kubernetes-action": "watchlist",
38221        "x-kubernetes-group-version-kind": {
38222          "group": "",
38223          "kind": "Service",
38224          "version": "v1"
38225        }
38226      },
38227      "parameters": [
38228        {
38229          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
38230          "in": "query",
38231          "name": "allowWatchBookmarks",
38232          "type": "boolean",
38233          "uniqueItems": true
38234        },
38235        {
38236          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38237          "in": "query",
38238          "name": "continue",
38239          "type": "string",
38240          "uniqueItems": true
38241        },
38242        {
38243          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38244          "in": "query",
38245          "name": "fieldSelector",
38246          "type": "string",
38247          "uniqueItems": true
38248        },
38249        {
38250          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38251          "in": "query",
38252          "name": "labelSelector",
38253          "type": "string",
38254          "uniqueItems": true
38255        },
38256        {
38257          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38258          "in": "query",
38259          "name": "limit",
38260          "type": "integer",
38261          "uniqueItems": true
38262        },
38263        {
38264          "description": "If 'true', then the output is pretty printed.",
38265          "in": "query",
38266          "name": "pretty",
38267          "type": "string",
38268          "uniqueItems": true
38269        },
38270        {
38271          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
38272          "in": "query",
38273          "name": "resourceVersion",
38274          "type": "string",
38275          "uniqueItems": true
38276        },
38277        {
38278          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38279          "in": "query",
38280          "name": "timeoutSeconds",
38281          "type": "integer",
38282          "uniqueItems": true
38283        },
38284        {
38285          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38286          "in": "query",
38287          "name": "watch",
38288          "type": "boolean",
38289          "uniqueItems": true
38290        }
38291      ]
38292    },
38293    "/apis/": {
38294      "get": {
38295        "consumes": [
38296          "application/json",
38297          "application/yaml",
38298          "application/vnd.kubernetes.protobuf"
38299        ],
38300        "description": "get available API versions",
38301        "operationId": "getAPIVersions",
38302        "produces": [
38303          "application/json",
38304          "application/yaml",
38305          "application/vnd.kubernetes.protobuf"
38306        ],
38307        "responses": {
38308          "200": {
38309            "description": "OK",
38310            "schema": {
38311              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList"
38312            }
38313          },
38314          "401": {
38315            "description": "Unauthorized"
38316          }
38317        },
38318        "schemes": [
38319          "https"
38320        ],
38321        "tags": [
38322          "apis"
38323        ]
38324      }
38325    },
38326    "/apis/admissionregistration.k8s.io/": {
38327      "get": {
38328        "consumes": [
38329          "application/json",
38330          "application/yaml",
38331          "application/vnd.kubernetes.protobuf"
38332        ],
38333        "description": "get information of a group",
38334        "operationId": "getAdmissionregistrationAPIGroup",
38335        "produces": [
38336          "application/json",
38337          "application/yaml",
38338          "application/vnd.kubernetes.protobuf"
38339        ],
38340        "responses": {
38341          "200": {
38342            "description": "OK",
38343            "schema": {
38344              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
38345            }
38346          },
38347          "401": {
38348            "description": "Unauthorized"
38349          }
38350        },
38351        "schemes": [
38352          "https"
38353        ],
38354        "tags": [
38355          "admissionregistration"
38356        ]
38357      }
38358    },
38359    "/apis/admissionregistration.k8s.io/v1/": {
38360      "get": {
38361        "consumes": [
38362          "application/json",
38363          "application/yaml",
38364          "application/vnd.kubernetes.protobuf"
38365        ],
38366        "description": "get available resources",
38367        "operationId": "getAdmissionregistrationV1APIResources",
38368        "produces": [
38369          "application/json",
38370          "application/yaml",
38371          "application/vnd.kubernetes.protobuf"
38372        ],
38373        "responses": {
38374          "200": {
38375            "description": "OK",
38376            "schema": {
38377              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
38378            }
38379          },
38380          "401": {
38381            "description": "Unauthorized"
38382          }
38383        },
38384        "schemes": [
38385          "https"
38386        ],
38387        "tags": [
38388          "admissionregistration_v1"
38389        ]
38390      }
38391    },
38392    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations": {
38393      "delete": {
38394        "consumes": [
38395          "*/*"
38396        ],
38397        "description": "delete collection of MutatingWebhookConfiguration",
38398        "operationId": "deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration",
38399        "parameters": [
38400          {
38401            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
38402            "in": "query",
38403            "name": "allowWatchBookmarks",
38404            "type": "boolean",
38405            "uniqueItems": true
38406          },
38407          {
38408            "in": "body",
38409            "name": "body",
38410            "schema": {
38411              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
38412            }
38413          },
38414          {
38415            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38416            "in": "query",
38417            "name": "continue",
38418            "type": "string",
38419            "uniqueItems": true
38420          },
38421          {
38422            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38423            "in": "query",
38424            "name": "dryRun",
38425            "type": "string",
38426            "uniqueItems": true
38427          },
38428          {
38429            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38430            "in": "query",
38431            "name": "fieldSelector",
38432            "type": "string",
38433            "uniqueItems": true
38434          },
38435          {
38436            "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.",
38437            "in": "query",
38438            "name": "gracePeriodSeconds",
38439            "type": "integer",
38440            "uniqueItems": true
38441          },
38442          {
38443            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38444            "in": "query",
38445            "name": "labelSelector",
38446            "type": "string",
38447            "uniqueItems": true
38448          },
38449          {
38450            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38451            "in": "query",
38452            "name": "limit",
38453            "type": "integer",
38454            "uniqueItems": true
38455          },
38456          {
38457            "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.",
38458            "in": "query",
38459            "name": "orphanDependents",
38460            "type": "boolean",
38461            "uniqueItems": true
38462          },
38463          {
38464            "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.",
38465            "in": "query",
38466            "name": "propagationPolicy",
38467            "type": "string",
38468            "uniqueItems": true
38469          },
38470          {
38471            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
38472            "in": "query",
38473            "name": "resourceVersion",
38474            "type": "string",
38475            "uniqueItems": true
38476          },
38477          {
38478            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38479            "in": "query",
38480            "name": "timeoutSeconds",
38481            "type": "integer",
38482            "uniqueItems": true
38483          },
38484          {
38485            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38486            "in": "query",
38487            "name": "watch",
38488            "type": "boolean",
38489            "uniqueItems": true
38490          }
38491        ],
38492        "produces": [
38493          "application/json",
38494          "application/yaml",
38495          "application/vnd.kubernetes.protobuf"
38496        ],
38497        "responses": {
38498          "200": {
38499            "description": "OK",
38500            "schema": {
38501              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
38502            }
38503          },
38504          "401": {
38505            "description": "Unauthorized"
38506          }
38507        },
38508        "schemes": [
38509          "https"
38510        ],
38511        "tags": [
38512          "admissionregistration_v1"
38513        ],
38514        "x-kubernetes-action": "deletecollection",
38515        "x-kubernetes-group-version-kind": {
38516          "group": "admissionregistration.k8s.io",
38517          "kind": "MutatingWebhookConfiguration",
38518          "version": "v1"
38519        }
38520      },
38521      "get": {
38522        "consumes": [
38523          "*/*"
38524        ],
38525        "description": "list or watch objects of kind MutatingWebhookConfiguration",
38526        "operationId": "listAdmissionregistrationV1MutatingWebhookConfiguration",
38527        "parameters": [
38528          {
38529            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
38530            "in": "query",
38531            "name": "allowWatchBookmarks",
38532            "type": "boolean",
38533            "uniqueItems": true
38534          },
38535          {
38536            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
38537            "in": "query",
38538            "name": "continue",
38539            "type": "string",
38540            "uniqueItems": true
38541          },
38542          {
38543            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
38544            "in": "query",
38545            "name": "fieldSelector",
38546            "type": "string",
38547            "uniqueItems": true
38548          },
38549          {
38550            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
38551            "in": "query",
38552            "name": "labelSelector",
38553            "type": "string",
38554            "uniqueItems": true
38555          },
38556          {
38557            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
38558            "in": "query",
38559            "name": "limit",
38560            "type": "integer",
38561            "uniqueItems": true
38562          },
38563          {
38564            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
38565            "in": "query",
38566            "name": "resourceVersion",
38567            "type": "string",
38568            "uniqueItems": true
38569          },
38570          {
38571            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
38572            "in": "query",
38573            "name": "timeoutSeconds",
38574            "type": "integer",
38575            "uniqueItems": true
38576          },
38577          {
38578            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
38579            "in": "query",
38580            "name": "watch",
38581            "type": "boolean",
38582            "uniqueItems": true
38583          }
38584        ],
38585        "produces": [
38586          "application/json",
38587          "application/yaml",
38588          "application/vnd.kubernetes.protobuf",
38589          "application/json;stream=watch",
38590          "application/vnd.kubernetes.protobuf;stream=watch"
38591        ],
38592        "responses": {
38593          "200": {
38594            "description": "OK",
38595            "schema": {
38596              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList"
38597            }
38598          },
38599          "401": {
38600            "description": "Unauthorized"
38601          }
38602        },
38603        "schemes": [
38604          "https"
38605        ],
38606        "tags": [
38607          "admissionregistration_v1"
38608        ],
38609        "x-kubernetes-action": "list",
38610        "x-kubernetes-group-version-kind": {
38611          "group": "admissionregistration.k8s.io",
38612          "kind": "MutatingWebhookConfiguration",
38613          "version": "v1"
38614        }
38615      },
38616      "parameters": [
38617        {
38618          "description": "If 'true', then the output is pretty printed.",
38619          "in": "query",
38620          "name": "pretty",
38621          "type": "string",
38622          "uniqueItems": true
38623        }
38624      ],
38625      "post": {
38626        "consumes": [
38627          "*/*"
38628        ],
38629        "description": "create a MutatingWebhookConfiguration",
38630        "operationId": "createAdmissionregistrationV1MutatingWebhookConfiguration",
38631        "parameters": [
38632          {
38633            "in": "body",
38634            "name": "body",
38635            "required": true,
38636            "schema": {
38637              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38638            }
38639          },
38640          {
38641            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38642            "in": "query",
38643            "name": "dryRun",
38644            "type": "string",
38645            "uniqueItems": true
38646          },
38647          {
38648            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
38649            "in": "query",
38650            "name": "fieldManager",
38651            "type": "string",
38652            "uniqueItems": true
38653          }
38654        ],
38655        "produces": [
38656          "application/json",
38657          "application/yaml",
38658          "application/vnd.kubernetes.protobuf"
38659        ],
38660        "responses": {
38661          "200": {
38662            "description": "OK",
38663            "schema": {
38664              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38665            }
38666          },
38667          "201": {
38668            "description": "Created",
38669            "schema": {
38670              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38671            }
38672          },
38673          "202": {
38674            "description": "Accepted",
38675            "schema": {
38676              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38677            }
38678          },
38679          "401": {
38680            "description": "Unauthorized"
38681          }
38682        },
38683        "schemes": [
38684          "https"
38685        ],
38686        "tags": [
38687          "admissionregistration_v1"
38688        ],
38689        "x-kubernetes-action": "post",
38690        "x-kubernetes-group-version-kind": {
38691          "group": "admissionregistration.k8s.io",
38692          "kind": "MutatingWebhookConfiguration",
38693          "version": "v1"
38694        }
38695      }
38696    },
38697    "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}": {
38698      "delete": {
38699        "consumes": [
38700          "*/*"
38701        ],
38702        "description": "delete a MutatingWebhookConfiguration",
38703        "operationId": "deleteAdmissionregistrationV1MutatingWebhookConfiguration",
38704        "parameters": [
38705          {
38706            "in": "body",
38707            "name": "body",
38708            "schema": {
38709              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
38710            }
38711          },
38712          {
38713            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38714            "in": "query",
38715            "name": "dryRun",
38716            "type": "string",
38717            "uniqueItems": true
38718          },
38719          {
38720            "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.",
38721            "in": "query",
38722            "name": "gracePeriodSeconds",
38723            "type": "integer",
38724            "uniqueItems": true
38725          },
38726          {
38727            "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.",
38728            "in": "query",
38729            "name": "orphanDependents",
38730            "type": "boolean",
38731            "uniqueItems": true
38732          },
38733          {
38734            "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.",
38735            "in": "query",
38736            "name": "propagationPolicy",
38737            "type": "string",
38738            "uniqueItems": true
38739          }
38740        ],
38741        "produces": [
38742          "application/json",
38743          "application/yaml",
38744          "application/vnd.kubernetes.protobuf"
38745        ],
38746        "responses": {
38747          "200": {
38748            "description": "OK",
38749            "schema": {
38750              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
38751            }
38752          },
38753          "202": {
38754            "description": "Accepted",
38755            "schema": {
38756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
38757            }
38758          },
38759          "401": {
38760            "description": "Unauthorized"
38761          }
38762        },
38763        "schemes": [
38764          "https"
38765        ],
38766        "tags": [
38767          "admissionregistration_v1"
38768        ],
38769        "x-kubernetes-action": "delete",
38770        "x-kubernetes-group-version-kind": {
38771          "group": "admissionregistration.k8s.io",
38772          "kind": "MutatingWebhookConfiguration",
38773          "version": "v1"
38774        }
38775      },
38776      "get": {
38777        "consumes": [
38778          "*/*"
38779        ],
38780        "description": "read the specified MutatingWebhookConfiguration",
38781        "operationId": "readAdmissionregistrationV1MutatingWebhookConfiguration",
38782        "parameters": [
38783          {
38784            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
38785            "in": "query",
38786            "name": "exact",
38787            "type": "boolean",
38788            "uniqueItems": true
38789          },
38790          {
38791            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
38792            "in": "query",
38793            "name": "export",
38794            "type": "boolean",
38795            "uniqueItems": true
38796          }
38797        ],
38798        "produces": [
38799          "application/json",
38800          "application/yaml",
38801          "application/vnd.kubernetes.protobuf"
38802        ],
38803        "responses": {
38804          "200": {
38805            "description": "OK",
38806            "schema": {
38807              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38808            }
38809          },
38810          "401": {
38811            "description": "Unauthorized"
38812          }
38813        },
38814        "schemes": [
38815          "https"
38816        ],
38817        "tags": [
38818          "admissionregistration_v1"
38819        ],
38820        "x-kubernetes-action": "get",
38821        "x-kubernetes-group-version-kind": {
38822          "group": "admissionregistration.k8s.io",
38823          "kind": "MutatingWebhookConfiguration",
38824          "version": "v1"
38825        }
38826      },
38827      "parameters": [
38828        {
38829          "description": "name of the MutatingWebhookConfiguration",
38830          "in": "path",
38831          "name": "name",
38832          "required": true,
38833          "type": "string",
38834          "uniqueItems": true
38835        },
38836        {
38837          "description": "If 'true', then the output is pretty printed.",
38838          "in": "query",
38839          "name": "pretty",
38840          "type": "string",
38841          "uniqueItems": true
38842        }
38843      ],
38844      "patch": {
38845        "consumes": [
38846          "application/json-patch+json",
38847          "application/merge-patch+json",
38848          "application/strategic-merge-patch+json"
38849        ],
38850        "description": "partially update the specified MutatingWebhookConfiguration",
38851        "operationId": "patchAdmissionregistrationV1MutatingWebhookConfiguration",
38852        "parameters": [
38853          {
38854            "in": "body",
38855            "name": "body",
38856            "required": true,
38857            "schema": {
38858              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
38859            }
38860          },
38861          {
38862            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38863            "in": "query",
38864            "name": "dryRun",
38865            "type": "string",
38866            "uniqueItems": true
38867          },
38868          {
38869            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
38870            "in": "query",
38871            "name": "fieldManager",
38872            "type": "string",
38873            "uniqueItems": true
38874          },
38875          {
38876            "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.",
38877            "in": "query",
38878            "name": "force",
38879            "type": "boolean",
38880            "uniqueItems": true
38881          }
38882        ],
38883        "produces": [
38884          "application/json",
38885          "application/yaml",
38886          "application/vnd.kubernetes.protobuf"
38887        ],
38888        "responses": {
38889          "200": {
38890            "description": "OK",
38891            "schema": {
38892              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38893            }
38894          },
38895          "401": {
38896            "description": "Unauthorized"
38897          }
38898        },
38899        "schemes": [
38900          "https"
38901        ],
38902        "tags": [
38903          "admissionregistration_v1"
38904        ],
38905        "x-kubernetes-action": "patch",
38906        "x-kubernetes-group-version-kind": {
38907          "group": "admissionregistration.k8s.io",
38908          "kind": "MutatingWebhookConfiguration",
38909          "version": "v1"
38910        }
38911      },
38912      "put": {
38913        "consumes": [
38914          "*/*"
38915        ],
38916        "description": "replace the specified MutatingWebhookConfiguration",
38917        "operationId": "replaceAdmissionregistrationV1MutatingWebhookConfiguration",
38918        "parameters": [
38919          {
38920            "in": "body",
38921            "name": "body",
38922            "required": true,
38923            "schema": {
38924              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38925            }
38926          },
38927          {
38928            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
38929            "in": "query",
38930            "name": "dryRun",
38931            "type": "string",
38932            "uniqueItems": true
38933          },
38934          {
38935            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
38936            "in": "query",
38937            "name": "fieldManager",
38938            "type": "string",
38939            "uniqueItems": true
38940          }
38941        ],
38942        "produces": [
38943          "application/json",
38944          "application/yaml",
38945          "application/vnd.kubernetes.protobuf"
38946        ],
38947        "responses": {
38948          "200": {
38949            "description": "OK",
38950            "schema": {
38951              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38952            }
38953          },
38954          "201": {
38955            "description": "Created",
38956            "schema": {
38957              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration"
38958            }
38959          },
38960          "401": {
38961            "description": "Unauthorized"
38962          }
38963        },
38964        "schemes": [
38965          "https"
38966        ],
38967        "tags": [
38968          "admissionregistration_v1"
38969        ],
38970        "x-kubernetes-action": "put",
38971        "x-kubernetes-group-version-kind": {
38972          "group": "admissionregistration.k8s.io",
38973          "kind": "MutatingWebhookConfiguration",
38974          "version": "v1"
38975        }
38976      }
38977    },
38978    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations": {
38979      "delete": {
38980        "consumes": [
38981          "*/*"
38982        ],
38983        "description": "delete collection of ValidatingWebhookConfiguration",
38984        "operationId": "deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration",
38985        "parameters": [
38986          {
38987            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
38988            "in": "query",
38989            "name": "allowWatchBookmarks",
38990            "type": "boolean",
38991            "uniqueItems": true
38992          },
38993          {
38994            "in": "body",
38995            "name": "body",
38996            "schema": {
38997              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
38998            }
38999          },
39000          {
39001            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39002            "in": "query",
39003            "name": "continue",
39004            "type": "string",
39005            "uniqueItems": true
39006          },
39007          {
39008            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39009            "in": "query",
39010            "name": "dryRun",
39011            "type": "string",
39012            "uniqueItems": true
39013          },
39014          {
39015            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39016            "in": "query",
39017            "name": "fieldSelector",
39018            "type": "string",
39019            "uniqueItems": true
39020          },
39021          {
39022            "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.",
39023            "in": "query",
39024            "name": "gracePeriodSeconds",
39025            "type": "integer",
39026            "uniqueItems": true
39027          },
39028          {
39029            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39030            "in": "query",
39031            "name": "labelSelector",
39032            "type": "string",
39033            "uniqueItems": true
39034          },
39035          {
39036            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39037            "in": "query",
39038            "name": "limit",
39039            "type": "integer",
39040            "uniqueItems": true
39041          },
39042          {
39043            "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.",
39044            "in": "query",
39045            "name": "orphanDependents",
39046            "type": "boolean",
39047            "uniqueItems": true
39048          },
39049          {
39050            "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.",
39051            "in": "query",
39052            "name": "propagationPolicy",
39053            "type": "string",
39054            "uniqueItems": true
39055          },
39056          {
39057            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
39058            "in": "query",
39059            "name": "resourceVersion",
39060            "type": "string",
39061            "uniqueItems": true
39062          },
39063          {
39064            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39065            "in": "query",
39066            "name": "timeoutSeconds",
39067            "type": "integer",
39068            "uniqueItems": true
39069          },
39070          {
39071            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39072            "in": "query",
39073            "name": "watch",
39074            "type": "boolean",
39075            "uniqueItems": true
39076          }
39077        ],
39078        "produces": [
39079          "application/json",
39080          "application/yaml",
39081          "application/vnd.kubernetes.protobuf"
39082        ],
39083        "responses": {
39084          "200": {
39085            "description": "OK",
39086            "schema": {
39087              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39088            }
39089          },
39090          "401": {
39091            "description": "Unauthorized"
39092          }
39093        },
39094        "schemes": [
39095          "https"
39096        ],
39097        "tags": [
39098          "admissionregistration_v1"
39099        ],
39100        "x-kubernetes-action": "deletecollection",
39101        "x-kubernetes-group-version-kind": {
39102          "group": "admissionregistration.k8s.io",
39103          "kind": "ValidatingWebhookConfiguration",
39104          "version": "v1"
39105        }
39106      },
39107      "get": {
39108        "consumes": [
39109          "*/*"
39110        ],
39111        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
39112        "operationId": "listAdmissionregistrationV1ValidatingWebhookConfiguration",
39113        "parameters": [
39114          {
39115            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
39116            "in": "query",
39117            "name": "allowWatchBookmarks",
39118            "type": "boolean",
39119            "uniqueItems": true
39120          },
39121          {
39122            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39123            "in": "query",
39124            "name": "continue",
39125            "type": "string",
39126            "uniqueItems": true
39127          },
39128          {
39129            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39130            "in": "query",
39131            "name": "fieldSelector",
39132            "type": "string",
39133            "uniqueItems": true
39134          },
39135          {
39136            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39137            "in": "query",
39138            "name": "labelSelector",
39139            "type": "string",
39140            "uniqueItems": true
39141          },
39142          {
39143            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39144            "in": "query",
39145            "name": "limit",
39146            "type": "integer",
39147            "uniqueItems": true
39148          },
39149          {
39150            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
39151            "in": "query",
39152            "name": "resourceVersion",
39153            "type": "string",
39154            "uniqueItems": true
39155          },
39156          {
39157            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39158            "in": "query",
39159            "name": "timeoutSeconds",
39160            "type": "integer",
39161            "uniqueItems": true
39162          },
39163          {
39164            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39165            "in": "query",
39166            "name": "watch",
39167            "type": "boolean",
39168            "uniqueItems": true
39169          }
39170        ],
39171        "produces": [
39172          "application/json",
39173          "application/yaml",
39174          "application/vnd.kubernetes.protobuf",
39175          "application/json;stream=watch",
39176          "application/vnd.kubernetes.protobuf;stream=watch"
39177        ],
39178        "responses": {
39179          "200": {
39180            "description": "OK",
39181            "schema": {
39182              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList"
39183            }
39184          },
39185          "401": {
39186            "description": "Unauthorized"
39187          }
39188        },
39189        "schemes": [
39190          "https"
39191        ],
39192        "tags": [
39193          "admissionregistration_v1"
39194        ],
39195        "x-kubernetes-action": "list",
39196        "x-kubernetes-group-version-kind": {
39197          "group": "admissionregistration.k8s.io",
39198          "kind": "ValidatingWebhookConfiguration",
39199          "version": "v1"
39200        }
39201      },
39202      "parameters": [
39203        {
39204          "description": "If 'true', then the output is pretty printed.",
39205          "in": "query",
39206          "name": "pretty",
39207          "type": "string",
39208          "uniqueItems": true
39209        }
39210      ],
39211      "post": {
39212        "consumes": [
39213          "*/*"
39214        ],
39215        "description": "create a ValidatingWebhookConfiguration",
39216        "operationId": "createAdmissionregistrationV1ValidatingWebhookConfiguration",
39217        "parameters": [
39218          {
39219            "in": "body",
39220            "name": "body",
39221            "required": true,
39222            "schema": {
39223              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39224            }
39225          },
39226          {
39227            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39228            "in": "query",
39229            "name": "dryRun",
39230            "type": "string",
39231            "uniqueItems": true
39232          },
39233          {
39234            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39235            "in": "query",
39236            "name": "fieldManager",
39237            "type": "string",
39238            "uniqueItems": true
39239          }
39240        ],
39241        "produces": [
39242          "application/json",
39243          "application/yaml",
39244          "application/vnd.kubernetes.protobuf"
39245        ],
39246        "responses": {
39247          "200": {
39248            "description": "OK",
39249            "schema": {
39250              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39251            }
39252          },
39253          "201": {
39254            "description": "Created",
39255            "schema": {
39256              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39257            }
39258          },
39259          "202": {
39260            "description": "Accepted",
39261            "schema": {
39262              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39263            }
39264          },
39265          "401": {
39266            "description": "Unauthorized"
39267          }
39268        },
39269        "schemes": [
39270          "https"
39271        ],
39272        "tags": [
39273          "admissionregistration_v1"
39274        ],
39275        "x-kubernetes-action": "post",
39276        "x-kubernetes-group-version-kind": {
39277          "group": "admissionregistration.k8s.io",
39278          "kind": "ValidatingWebhookConfiguration",
39279          "version": "v1"
39280        }
39281      }
39282    },
39283    "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}": {
39284      "delete": {
39285        "consumes": [
39286          "*/*"
39287        ],
39288        "description": "delete a ValidatingWebhookConfiguration",
39289        "operationId": "deleteAdmissionregistrationV1ValidatingWebhookConfiguration",
39290        "parameters": [
39291          {
39292            "in": "body",
39293            "name": "body",
39294            "schema": {
39295              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
39296            }
39297          },
39298          {
39299            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39300            "in": "query",
39301            "name": "dryRun",
39302            "type": "string",
39303            "uniqueItems": true
39304          },
39305          {
39306            "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.",
39307            "in": "query",
39308            "name": "gracePeriodSeconds",
39309            "type": "integer",
39310            "uniqueItems": true
39311          },
39312          {
39313            "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.",
39314            "in": "query",
39315            "name": "orphanDependents",
39316            "type": "boolean",
39317            "uniqueItems": true
39318          },
39319          {
39320            "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.",
39321            "in": "query",
39322            "name": "propagationPolicy",
39323            "type": "string",
39324            "uniqueItems": true
39325          }
39326        ],
39327        "produces": [
39328          "application/json",
39329          "application/yaml",
39330          "application/vnd.kubernetes.protobuf"
39331        ],
39332        "responses": {
39333          "200": {
39334            "description": "OK",
39335            "schema": {
39336              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39337            }
39338          },
39339          "202": {
39340            "description": "Accepted",
39341            "schema": {
39342              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
39343            }
39344          },
39345          "401": {
39346            "description": "Unauthorized"
39347          }
39348        },
39349        "schemes": [
39350          "https"
39351        ],
39352        "tags": [
39353          "admissionregistration_v1"
39354        ],
39355        "x-kubernetes-action": "delete",
39356        "x-kubernetes-group-version-kind": {
39357          "group": "admissionregistration.k8s.io",
39358          "kind": "ValidatingWebhookConfiguration",
39359          "version": "v1"
39360        }
39361      },
39362      "get": {
39363        "consumes": [
39364          "*/*"
39365        ],
39366        "description": "read the specified ValidatingWebhookConfiguration",
39367        "operationId": "readAdmissionregistrationV1ValidatingWebhookConfiguration",
39368        "parameters": [
39369          {
39370            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
39371            "in": "query",
39372            "name": "exact",
39373            "type": "boolean",
39374            "uniqueItems": true
39375          },
39376          {
39377            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
39378            "in": "query",
39379            "name": "export",
39380            "type": "boolean",
39381            "uniqueItems": true
39382          }
39383        ],
39384        "produces": [
39385          "application/json",
39386          "application/yaml",
39387          "application/vnd.kubernetes.protobuf"
39388        ],
39389        "responses": {
39390          "200": {
39391            "description": "OK",
39392            "schema": {
39393              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39394            }
39395          },
39396          "401": {
39397            "description": "Unauthorized"
39398          }
39399        },
39400        "schemes": [
39401          "https"
39402        ],
39403        "tags": [
39404          "admissionregistration_v1"
39405        ],
39406        "x-kubernetes-action": "get",
39407        "x-kubernetes-group-version-kind": {
39408          "group": "admissionregistration.k8s.io",
39409          "kind": "ValidatingWebhookConfiguration",
39410          "version": "v1"
39411        }
39412      },
39413      "parameters": [
39414        {
39415          "description": "name of the ValidatingWebhookConfiguration",
39416          "in": "path",
39417          "name": "name",
39418          "required": true,
39419          "type": "string",
39420          "uniqueItems": true
39421        },
39422        {
39423          "description": "If 'true', then the output is pretty printed.",
39424          "in": "query",
39425          "name": "pretty",
39426          "type": "string",
39427          "uniqueItems": true
39428        }
39429      ],
39430      "patch": {
39431        "consumes": [
39432          "application/json-patch+json",
39433          "application/merge-patch+json",
39434          "application/strategic-merge-patch+json"
39435        ],
39436        "description": "partially update the specified ValidatingWebhookConfiguration",
39437        "operationId": "patchAdmissionregistrationV1ValidatingWebhookConfiguration",
39438        "parameters": [
39439          {
39440            "in": "body",
39441            "name": "body",
39442            "required": true,
39443            "schema": {
39444              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
39445            }
39446          },
39447          {
39448            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39449            "in": "query",
39450            "name": "dryRun",
39451            "type": "string",
39452            "uniqueItems": true
39453          },
39454          {
39455            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
39456            "in": "query",
39457            "name": "fieldManager",
39458            "type": "string",
39459            "uniqueItems": true
39460          },
39461          {
39462            "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.",
39463            "in": "query",
39464            "name": "force",
39465            "type": "boolean",
39466            "uniqueItems": true
39467          }
39468        ],
39469        "produces": [
39470          "application/json",
39471          "application/yaml",
39472          "application/vnd.kubernetes.protobuf"
39473        ],
39474        "responses": {
39475          "200": {
39476            "description": "OK",
39477            "schema": {
39478              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39479            }
39480          },
39481          "401": {
39482            "description": "Unauthorized"
39483          }
39484        },
39485        "schemes": [
39486          "https"
39487        ],
39488        "tags": [
39489          "admissionregistration_v1"
39490        ],
39491        "x-kubernetes-action": "patch",
39492        "x-kubernetes-group-version-kind": {
39493          "group": "admissionregistration.k8s.io",
39494          "kind": "ValidatingWebhookConfiguration",
39495          "version": "v1"
39496        }
39497      },
39498      "put": {
39499        "consumes": [
39500          "*/*"
39501        ],
39502        "description": "replace the specified ValidatingWebhookConfiguration",
39503        "operationId": "replaceAdmissionregistrationV1ValidatingWebhookConfiguration",
39504        "parameters": [
39505          {
39506            "in": "body",
39507            "name": "body",
39508            "required": true,
39509            "schema": {
39510              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39511            }
39512          },
39513          {
39514            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
39515            "in": "query",
39516            "name": "dryRun",
39517            "type": "string",
39518            "uniqueItems": true
39519          },
39520          {
39521            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
39522            "in": "query",
39523            "name": "fieldManager",
39524            "type": "string",
39525            "uniqueItems": true
39526          }
39527        ],
39528        "produces": [
39529          "application/json",
39530          "application/yaml",
39531          "application/vnd.kubernetes.protobuf"
39532        ],
39533        "responses": {
39534          "200": {
39535            "description": "OK",
39536            "schema": {
39537              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39538            }
39539          },
39540          "201": {
39541            "description": "Created",
39542            "schema": {
39543              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration"
39544            }
39545          },
39546          "401": {
39547            "description": "Unauthorized"
39548          }
39549        },
39550        "schemes": [
39551          "https"
39552        ],
39553        "tags": [
39554          "admissionregistration_v1"
39555        ],
39556        "x-kubernetes-action": "put",
39557        "x-kubernetes-group-version-kind": {
39558          "group": "admissionregistration.k8s.io",
39559          "kind": "ValidatingWebhookConfiguration",
39560          "version": "v1"
39561        }
39562      }
39563    },
39564    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations": {
39565      "get": {
39566        "consumes": [
39567          "*/*"
39568        ],
39569        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
39570        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfigurationList",
39571        "produces": [
39572          "application/json",
39573          "application/yaml",
39574          "application/vnd.kubernetes.protobuf",
39575          "application/json;stream=watch",
39576          "application/vnd.kubernetes.protobuf;stream=watch"
39577        ],
39578        "responses": {
39579          "200": {
39580            "description": "OK",
39581            "schema": {
39582              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39583            }
39584          },
39585          "401": {
39586            "description": "Unauthorized"
39587          }
39588        },
39589        "schemes": [
39590          "https"
39591        ],
39592        "tags": [
39593          "admissionregistration_v1"
39594        ],
39595        "x-kubernetes-action": "watchlist",
39596        "x-kubernetes-group-version-kind": {
39597          "group": "admissionregistration.k8s.io",
39598          "kind": "MutatingWebhookConfiguration",
39599          "version": "v1"
39600        }
39601      },
39602      "parameters": [
39603        {
39604          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
39605          "in": "query",
39606          "name": "allowWatchBookmarks",
39607          "type": "boolean",
39608          "uniqueItems": true
39609        },
39610        {
39611          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39612          "in": "query",
39613          "name": "continue",
39614          "type": "string",
39615          "uniqueItems": true
39616        },
39617        {
39618          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39619          "in": "query",
39620          "name": "fieldSelector",
39621          "type": "string",
39622          "uniqueItems": true
39623        },
39624        {
39625          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39626          "in": "query",
39627          "name": "labelSelector",
39628          "type": "string",
39629          "uniqueItems": true
39630        },
39631        {
39632          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39633          "in": "query",
39634          "name": "limit",
39635          "type": "integer",
39636          "uniqueItems": true
39637        },
39638        {
39639          "description": "If 'true', then the output is pretty printed.",
39640          "in": "query",
39641          "name": "pretty",
39642          "type": "string",
39643          "uniqueItems": true
39644        },
39645        {
39646          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
39647          "in": "query",
39648          "name": "resourceVersion",
39649          "type": "string",
39650          "uniqueItems": true
39651        },
39652        {
39653          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39654          "in": "query",
39655          "name": "timeoutSeconds",
39656          "type": "integer",
39657          "uniqueItems": true
39658        },
39659        {
39660          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39661          "in": "query",
39662          "name": "watch",
39663          "type": "boolean",
39664          "uniqueItems": true
39665        }
39666      ]
39667    },
39668    "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/{name}": {
39669      "get": {
39670        "consumes": [
39671          "*/*"
39672        ],
39673        "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.",
39674        "operationId": "watchAdmissionregistrationV1MutatingWebhookConfiguration",
39675        "produces": [
39676          "application/json",
39677          "application/yaml",
39678          "application/vnd.kubernetes.protobuf",
39679          "application/json;stream=watch",
39680          "application/vnd.kubernetes.protobuf;stream=watch"
39681        ],
39682        "responses": {
39683          "200": {
39684            "description": "OK",
39685            "schema": {
39686              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39687            }
39688          },
39689          "401": {
39690            "description": "Unauthorized"
39691          }
39692        },
39693        "schemes": [
39694          "https"
39695        ],
39696        "tags": [
39697          "admissionregistration_v1"
39698        ],
39699        "x-kubernetes-action": "watch",
39700        "x-kubernetes-group-version-kind": {
39701          "group": "admissionregistration.k8s.io",
39702          "kind": "MutatingWebhookConfiguration",
39703          "version": "v1"
39704        }
39705      },
39706      "parameters": [
39707        {
39708          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
39709          "in": "query",
39710          "name": "allowWatchBookmarks",
39711          "type": "boolean",
39712          "uniqueItems": true
39713        },
39714        {
39715          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39716          "in": "query",
39717          "name": "continue",
39718          "type": "string",
39719          "uniqueItems": true
39720        },
39721        {
39722          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39723          "in": "query",
39724          "name": "fieldSelector",
39725          "type": "string",
39726          "uniqueItems": true
39727        },
39728        {
39729          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39730          "in": "query",
39731          "name": "labelSelector",
39732          "type": "string",
39733          "uniqueItems": true
39734        },
39735        {
39736          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39737          "in": "query",
39738          "name": "limit",
39739          "type": "integer",
39740          "uniqueItems": true
39741        },
39742        {
39743          "description": "name of the MutatingWebhookConfiguration",
39744          "in": "path",
39745          "name": "name",
39746          "required": true,
39747          "type": "string",
39748          "uniqueItems": true
39749        },
39750        {
39751          "description": "If 'true', then the output is pretty printed.",
39752          "in": "query",
39753          "name": "pretty",
39754          "type": "string",
39755          "uniqueItems": true
39756        },
39757        {
39758          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
39759          "in": "query",
39760          "name": "resourceVersion",
39761          "type": "string",
39762          "uniqueItems": true
39763        },
39764        {
39765          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39766          "in": "query",
39767          "name": "timeoutSeconds",
39768          "type": "integer",
39769          "uniqueItems": true
39770        },
39771        {
39772          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39773          "in": "query",
39774          "name": "watch",
39775          "type": "boolean",
39776          "uniqueItems": true
39777        }
39778      ]
39779    },
39780    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations": {
39781      "get": {
39782        "consumes": [
39783          "*/*"
39784        ],
39785        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
39786        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfigurationList",
39787        "produces": [
39788          "application/json",
39789          "application/yaml",
39790          "application/vnd.kubernetes.protobuf",
39791          "application/json;stream=watch",
39792          "application/vnd.kubernetes.protobuf;stream=watch"
39793        ],
39794        "responses": {
39795          "200": {
39796            "description": "OK",
39797            "schema": {
39798              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39799            }
39800          },
39801          "401": {
39802            "description": "Unauthorized"
39803          }
39804        },
39805        "schemes": [
39806          "https"
39807        ],
39808        "tags": [
39809          "admissionregistration_v1"
39810        ],
39811        "x-kubernetes-action": "watchlist",
39812        "x-kubernetes-group-version-kind": {
39813          "group": "admissionregistration.k8s.io",
39814          "kind": "ValidatingWebhookConfiguration",
39815          "version": "v1"
39816        }
39817      },
39818      "parameters": [
39819        {
39820          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
39821          "in": "query",
39822          "name": "allowWatchBookmarks",
39823          "type": "boolean",
39824          "uniqueItems": true
39825        },
39826        {
39827          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39828          "in": "query",
39829          "name": "continue",
39830          "type": "string",
39831          "uniqueItems": true
39832        },
39833        {
39834          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39835          "in": "query",
39836          "name": "fieldSelector",
39837          "type": "string",
39838          "uniqueItems": true
39839        },
39840        {
39841          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39842          "in": "query",
39843          "name": "labelSelector",
39844          "type": "string",
39845          "uniqueItems": true
39846        },
39847        {
39848          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39849          "in": "query",
39850          "name": "limit",
39851          "type": "integer",
39852          "uniqueItems": true
39853        },
39854        {
39855          "description": "If 'true', then the output is pretty printed.",
39856          "in": "query",
39857          "name": "pretty",
39858          "type": "string",
39859          "uniqueItems": true
39860        },
39861        {
39862          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
39863          "in": "query",
39864          "name": "resourceVersion",
39865          "type": "string",
39866          "uniqueItems": true
39867        },
39868        {
39869          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39870          "in": "query",
39871          "name": "timeoutSeconds",
39872          "type": "integer",
39873          "uniqueItems": true
39874        },
39875        {
39876          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39877          "in": "query",
39878          "name": "watch",
39879          "type": "boolean",
39880          "uniqueItems": true
39881        }
39882      ]
39883    },
39884    "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/{name}": {
39885      "get": {
39886        "consumes": [
39887          "*/*"
39888        ],
39889        "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.",
39890        "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfiguration",
39891        "produces": [
39892          "application/json",
39893          "application/yaml",
39894          "application/vnd.kubernetes.protobuf",
39895          "application/json;stream=watch",
39896          "application/vnd.kubernetes.protobuf;stream=watch"
39897        ],
39898        "responses": {
39899          "200": {
39900            "description": "OK",
39901            "schema": {
39902              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
39903            }
39904          },
39905          "401": {
39906            "description": "Unauthorized"
39907          }
39908        },
39909        "schemes": [
39910          "https"
39911        ],
39912        "tags": [
39913          "admissionregistration_v1"
39914        ],
39915        "x-kubernetes-action": "watch",
39916        "x-kubernetes-group-version-kind": {
39917          "group": "admissionregistration.k8s.io",
39918          "kind": "ValidatingWebhookConfiguration",
39919          "version": "v1"
39920        }
39921      },
39922      "parameters": [
39923        {
39924          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
39925          "in": "query",
39926          "name": "allowWatchBookmarks",
39927          "type": "boolean",
39928          "uniqueItems": true
39929        },
39930        {
39931          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
39932          "in": "query",
39933          "name": "continue",
39934          "type": "string",
39935          "uniqueItems": true
39936        },
39937        {
39938          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
39939          "in": "query",
39940          "name": "fieldSelector",
39941          "type": "string",
39942          "uniqueItems": true
39943        },
39944        {
39945          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
39946          "in": "query",
39947          "name": "labelSelector",
39948          "type": "string",
39949          "uniqueItems": true
39950        },
39951        {
39952          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
39953          "in": "query",
39954          "name": "limit",
39955          "type": "integer",
39956          "uniqueItems": true
39957        },
39958        {
39959          "description": "name of the ValidatingWebhookConfiguration",
39960          "in": "path",
39961          "name": "name",
39962          "required": true,
39963          "type": "string",
39964          "uniqueItems": true
39965        },
39966        {
39967          "description": "If 'true', then the output is pretty printed.",
39968          "in": "query",
39969          "name": "pretty",
39970          "type": "string",
39971          "uniqueItems": true
39972        },
39973        {
39974          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
39975          "in": "query",
39976          "name": "resourceVersion",
39977          "type": "string",
39978          "uniqueItems": true
39979        },
39980        {
39981          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
39982          "in": "query",
39983          "name": "timeoutSeconds",
39984          "type": "integer",
39985          "uniqueItems": true
39986        },
39987        {
39988          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
39989          "in": "query",
39990          "name": "watch",
39991          "type": "boolean",
39992          "uniqueItems": true
39993        }
39994      ]
39995    },
39996    "/apis/admissionregistration.k8s.io/v1beta1/": {
39997      "get": {
39998        "consumes": [
39999          "application/json",
40000          "application/yaml",
40001          "application/vnd.kubernetes.protobuf"
40002        ],
40003        "description": "get available resources",
40004        "operationId": "getAdmissionregistrationV1beta1APIResources",
40005        "produces": [
40006          "application/json",
40007          "application/yaml",
40008          "application/vnd.kubernetes.protobuf"
40009        ],
40010        "responses": {
40011          "200": {
40012            "description": "OK",
40013            "schema": {
40014              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
40015            }
40016          },
40017          "401": {
40018            "description": "Unauthorized"
40019          }
40020        },
40021        "schemes": [
40022          "https"
40023        ],
40024        "tags": [
40025          "admissionregistration_v1beta1"
40026        ]
40027      }
40028    },
40029    "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations": {
40030      "delete": {
40031        "consumes": [
40032          "*/*"
40033        ],
40034        "description": "delete collection of MutatingWebhookConfiguration",
40035        "operationId": "deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration",
40036        "parameters": [
40037          {
40038            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
40039            "in": "query",
40040            "name": "allowWatchBookmarks",
40041            "type": "boolean",
40042            "uniqueItems": true
40043          },
40044          {
40045            "in": "body",
40046            "name": "body",
40047            "schema": {
40048              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40049            }
40050          },
40051          {
40052            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40053            "in": "query",
40054            "name": "continue",
40055            "type": "string",
40056            "uniqueItems": true
40057          },
40058          {
40059            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40060            "in": "query",
40061            "name": "dryRun",
40062            "type": "string",
40063            "uniqueItems": true
40064          },
40065          {
40066            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40067            "in": "query",
40068            "name": "fieldSelector",
40069            "type": "string",
40070            "uniqueItems": true
40071          },
40072          {
40073            "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.",
40074            "in": "query",
40075            "name": "gracePeriodSeconds",
40076            "type": "integer",
40077            "uniqueItems": true
40078          },
40079          {
40080            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40081            "in": "query",
40082            "name": "labelSelector",
40083            "type": "string",
40084            "uniqueItems": true
40085          },
40086          {
40087            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40088            "in": "query",
40089            "name": "limit",
40090            "type": "integer",
40091            "uniqueItems": true
40092          },
40093          {
40094            "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.",
40095            "in": "query",
40096            "name": "orphanDependents",
40097            "type": "boolean",
40098            "uniqueItems": true
40099          },
40100          {
40101            "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.",
40102            "in": "query",
40103            "name": "propagationPolicy",
40104            "type": "string",
40105            "uniqueItems": true
40106          },
40107          {
40108            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
40109            "in": "query",
40110            "name": "resourceVersion",
40111            "type": "string",
40112            "uniqueItems": true
40113          },
40114          {
40115            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40116            "in": "query",
40117            "name": "timeoutSeconds",
40118            "type": "integer",
40119            "uniqueItems": true
40120          },
40121          {
40122            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40123            "in": "query",
40124            "name": "watch",
40125            "type": "boolean",
40126            "uniqueItems": true
40127          }
40128        ],
40129        "produces": [
40130          "application/json",
40131          "application/yaml",
40132          "application/vnd.kubernetes.protobuf"
40133        ],
40134        "responses": {
40135          "200": {
40136            "description": "OK",
40137            "schema": {
40138              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40139            }
40140          },
40141          "401": {
40142            "description": "Unauthorized"
40143          }
40144        },
40145        "schemes": [
40146          "https"
40147        ],
40148        "tags": [
40149          "admissionregistration_v1beta1"
40150        ],
40151        "x-kubernetes-action": "deletecollection",
40152        "x-kubernetes-group-version-kind": {
40153          "group": "admissionregistration.k8s.io",
40154          "kind": "MutatingWebhookConfiguration",
40155          "version": "v1beta1"
40156        }
40157      },
40158      "get": {
40159        "consumes": [
40160          "*/*"
40161        ],
40162        "description": "list or watch objects of kind MutatingWebhookConfiguration",
40163        "operationId": "listAdmissionregistrationV1beta1MutatingWebhookConfiguration",
40164        "parameters": [
40165          {
40166            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
40167            "in": "query",
40168            "name": "allowWatchBookmarks",
40169            "type": "boolean",
40170            "uniqueItems": true
40171          },
40172          {
40173            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40174            "in": "query",
40175            "name": "continue",
40176            "type": "string",
40177            "uniqueItems": true
40178          },
40179          {
40180            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40181            "in": "query",
40182            "name": "fieldSelector",
40183            "type": "string",
40184            "uniqueItems": true
40185          },
40186          {
40187            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40188            "in": "query",
40189            "name": "labelSelector",
40190            "type": "string",
40191            "uniqueItems": true
40192          },
40193          {
40194            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40195            "in": "query",
40196            "name": "limit",
40197            "type": "integer",
40198            "uniqueItems": true
40199          },
40200          {
40201            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
40202            "in": "query",
40203            "name": "resourceVersion",
40204            "type": "string",
40205            "uniqueItems": true
40206          },
40207          {
40208            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40209            "in": "query",
40210            "name": "timeoutSeconds",
40211            "type": "integer",
40212            "uniqueItems": true
40213          },
40214          {
40215            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40216            "in": "query",
40217            "name": "watch",
40218            "type": "boolean",
40219            "uniqueItems": true
40220          }
40221        ],
40222        "produces": [
40223          "application/json",
40224          "application/yaml",
40225          "application/vnd.kubernetes.protobuf",
40226          "application/json;stream=watch",
40227          "application/vnd.kubernetes.protobuf;stream=watch"
40228        ],
40229        "responses": {
40230          "200": {
40231            "description": "OK",
40232            "schema": {
40233              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList"
40234            }
40235          },
40236          "401": {
40237            "description": "Unauthorized"
40238          }
40239        },
40240        "schemes": [
40241          "https"
40242        ],
40243        "tags": [
40244          "admissionregistration_v1beta1"
40245        ],
40246        "x-kubernetes-action": "list",
40247        "x-kubernetes-group-version-kind": {
40248          "group": "admissionregistration.k8s.io",
40249          "kind": "MutatingWebhookConfiguration",
40250          "version": "v1beta1"
40251        }
40252      },
40253      "parameters": [
40254        {
40255          "description": "If 'true', then the output is pretty printed.",
40256          "in": "query",
40257          "name": "pretty",
40258          "type": "string",
40259          "uniqueItems": true
40260        }
40261      ],
40262      "post": {
40263        "consumes": [
40264          "*/*"
40265        ],
40266        "description": "create a MutatingWebhookConfiguration",
40267        "operationId": "createAdmissionregistrationV1beta1MutatingWebhookConfiguration",
40268        "parameters": [
40269          {
40270            "in": "body",
40271            "name": "body",
40272            "required": true,
40273            "schema": {
40274              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40275            }
40276          },
40277          {
40278            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40279            "in": "query",
40280            "name": "dryRun",
40281            "type": "string",
40282            "uniqueItems": true
40283          },
40284          {
40285            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40286            "in": "query",
40287            "name": "fieldManager",
40288            "type": "string",
40289            "uniqueItems": true
40290          }
40291        ],
40292        "produces": [
40293          "application/json",
40294          "application/yaml",
40295          "application/vnd.kubernetes.protobuf"
40296        ],
40297        "responses": {
40298          "200": {
40299            "description": "OK",
40300            "schema": {
40301              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40302            }
40303          },
40304          "201": {
40305            "description": "Created",
40306            "schema": {
40307              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40308            }
40309          },
40310          "202": {
40311            "description": "Accepted",
40312            "schema": {
40313              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40314            }
40315          },
40316          "401": {
40317            "description": "Unauthorized"
40318          }
40319        },
40320        "schemes": [
40321          "https"
40322        ],
40323        "tags": [
40324          "admissionregistration_v1beta1"
40325        ],
40326        "x-kubernetes-action": "post",
40327        "x-kubernetes-group-version-kind": {
40328          "group": "admissionregistration.k8s.io",
40329          "kind": "MutatingWebhookConfiguration",
40330          "version": "v1beta1"
40331        }
40332      }
40333    },
40334    "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}": {
40335      "delete": {
40336        "consumes": [
40337          "*/*"
40338        ],
40339        "description": "delete a MutatingWebhookConfiguration",
40340        "operationId": "deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration",
40341        "parameters": [
40342          {
40343            "in": "body",
40344            "name": "body",
40345            "schema": {
40346              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40347            }
40348          },
40349          {
40350            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40351            "in": "query",
40352            "name": "dryRun",
40353            "type": "string",
40354            "uniqueItems": true
40355          },
40356          {
40357            "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.",
40358            "in": "query",
40359            "name": "gracePeriodSeconds",
40360            "type": "integer",
40361            "uniqueItems": true
40362          },
40363          {
40364            "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.",
40365            "in": "query",
40366            "name": "orphanDependents",
40367            "type": "boolean",
40368            "uniqueItems": true
40369          },
40370          {
40371            "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.",
40372            "in": "query",
40373            "name": "propagationPolicy",
40374            "type": "string",
40375            "uniqueItems": true
40376          }
40377        ],
40378        "produces": [
40379          "application/json",
40380          "application/yaml",
40381          "application/vnd.kubernetes.protobuf"
40382        ],
40383        "responses": {
40384          "200": {
40385            "description": "OK",
40386            "schema": {
40387              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40388            }
40389          },
40390          "202": {
40391            "description": "Accepted",
40392            "schema": {
40393              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40394            }
40395          },
40396          "401": {
40397            "description": "Unauthorized"
40398          }
40399        },
40400        "schemes": [
40401          "https"
40402        ],
40403        "tags": [
40404          "admissionregistration_v1beta1"
40405        ],
40406        "x-kubernetes-action": "delete",
40407        "x-kubernetes-group-version-kind": {
40408          "group": "admissionregistration.k8s.io",
40409          "kind": "MutatingWebhookConfiguration",
40410          "version": "v1beta1"
40411        }
40412      },
40413      "get": {
40414        "consumes": [
40415          "*/*"
40416        ],
40417        "description": "read the specified MutatingWebhookConfiguration",
40418        "operationId": "readAdmissionregistrationV1beta1MutatingWebhookConfiguration",
40419        "parameters": [
40420          {
40421            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
40422            "in": "query",
40423            "name": "exact",
40424            "type": "boolean",
40425            "uniqueItems": true
40426          },
40427          {
40428            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
40429            "in": "query",
40430            "name": "export",
40431            "type": "boolean",
40432            "uniqueItems": true
40433          }
40434        ],
40435        "produces": [
40436          "application/json",
40437          "application/yaml",
40438          "application/vnd.kubernetes.protobuf"
40439        ],
40440        "responses": {
40441          "200": {
40442            "description": "OK",
40443            "schema": {
40444              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40445            }
40446          },
40447          "401": {
40448            "description": "Unauthorized"
40449          }
40450        },
40451        "schemes": [
40452          "https"
40453        ],
40454        "tags": [
40455          "admissionregistration_v1beta1"
40456        ],
40457        "x-kubernetes-action": "get",
40458        "x-kubernetes-group-version-kind": {
40459          "group": "admissionregistration.k8s.io",
40460          "kind": "MutatingWebhookConfiguration",
40461          "version": "v1beta1"
40462        }
40463      },
40464      "parameters": [
40465        {
40466          "description": "name of the MutatingWebhookConfiguration",
40467          "in": "path",
40468          "name": "name",
40469          "required": true,
40470          "type": "string",
40471          "uniqueItems": true
40472        },
40473        {
40474          "description": "If 'true', then the output is pretty printed.",
40475          "in": "query",
40476          "name": "pretty",
40477          "type": "string",
40478          "uniqueItems": true
40479        }
40480      ],
40481      "patch": {
40482        "consumes": [
40483          "application/json-patch+json",
40484          "application/merge-patch+json",
40485          "application/strategic-merge-patch+json"
40486        ],
40487        "description": "partially update the specified MutatingWebhookConfiguration",
40488        "operationId": "patchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
40489        "parameters": [
40490          {
40491            "in": "body",
40492            "name": "body",
40493            "required": true,
40494            "schema": {
40495              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
40496            }
40497          },
40498          {
40499            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40500            "in": "query",
40501            "name": "dryRun",
40502            "type": "string",
40503            "uniqueItems": true
40504          },
40505          {
40506            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
40507            "in": "query",
40508            "name": "fieldManager",
40509            "type": "string",
40510            "uniqueItems": true
40511          },
40512          {
40513            "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.",
40514            "in": "query",
40515            "name": "force",
40516            "type": "boolean",
40517            "uniqueItems": true
40518          }
40519        ],
40520        "produces": [
40521          "application/json",
40522          "application/yaml",
40523          "application/vnd.kubernetes.protobuf"
40524        ],
40525        "responses": {
40526          "200": {
40527            "description": "OK",
40528            "schema": {
40529              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40530            }
40531          },
40532          "401": {
40533            "description": "Unauthorized"
40534          }
40535        },
40536        "schemes": [
40537          "https"
40538        ],
40539        "tags": [
40540          "admissionregistration_v1beta1"
40541        ],
40542        "x-kubernetes-action": "patch",
40543        "x-kubernetes-group-version-kind": {
40544          "group": "admissionregistration.k8s.io",
40545          "kind": "MutatingWebhookConfiguration",
40546          "version": "v1beta1"
40547        }
40548      },
40549      "put": {
40550        "consumes": [
40551          "*/*"
40552        ],
40553        "description": "replace the specified MutatingWebhookConfiguration",
40554        "operationId": "replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration",
40555        "parameters": [
40556          {
40557            "in": "body",
40558            "name": "body",
40559            "required": true,
40560            "schema": {
40561              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40562            }
40563          },
40564          {
40565            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40566            "in": "query",
40567            "name": "dryRun",
40568            "type": "string",
40569            "uniqueItems": true
40570          },
40571          {
40572            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40573            "in": "query",
40574            "name": "fieldManager",
40575            "type": "string",
40576            "uniqueItems": true
40577          }
40578        ],
40579        "produces": [
40580          "application/json",
40581          "application/yaml",
40582          "application/vnd.kubernetes.protobuf"
40583        ],
40584        "responses": {
40585          "200": {
40586            "description": "OK",
40587            "schema": {
40588              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40589            }
40590          },
40591          "201": {
40592            "description": "Created",
40593            "schema": {
40594              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration"
40595            }
40596          },
40597          "401": {
40598            "description": "Unauthorized"
40599          }
40600        },
40601        "schemes": [
40602          "https"
40603        ],
40604        "tags": [
40605          "admissionregistration_v1beta1"
40606        ],
40607        "x-kubernetes-action": "put",
40608        "x-kubernetes-group-version-kind": {
40609          "group": "admissionregistration.k8s.io",
40610          "kind": "MutatingWebhookConfiguration",
40611          "version": "v1beta1"
40612        }
40613      }
40614    },
40615    "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations": {
40616      "delete": {
40617        "consumes": [
40618          "*/*"
40619        ],
40620        "description": "delete collection of ValidatingWebhookConfiguration",
40621        "operationId": "deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration",
40622        "parameters": [
40623          {
40624            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
40625            "in": "query",
40626            "name": "allowWatchBookmarks",
40627            "type": "boolean",
40628            "uniqueItems": true
40629          },
40630          {
40631            "in": "body",
40632            "name": "body",
40633            "schema": {
40634              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40635            }
40636          },
40637          {
40638            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40639            "in": "query",
40640            "name": "continue",
40641            "type": "string",
40642            "uniqueItems": true
40643          },
40644          {
40645            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40646            "in": "query",
40647            "name": "dryRun",
40648            "type": "string",
40649            "uniqueItems": true
40650          },
40651          {
40652            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40653            "in": "query",
40654            "name": "fieldSelector",
40655            "type": "string",
40656            "uniqueItems": true
40657          },
40658          {
40659            "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.",
40660            "in": "query",
40661            "name": "gracePeriodSeconds",
40662            "type": "integer",
40663            "uniqueItems": true
40664          },
40665          {
40666            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40667            "in": "query",
40668            "name": "labelSelector",
40669            "type": "string",
40670            "uniqueItems": true
40671          },
40672          {
40673            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40674            "in": "query",
40675            "name": "limit",
40676            "type": "integer",
40677            "uniqueItems": true
40678          },
40679          {
40680            "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.",
40681            "in": "query",
40682            "name": "orphanDependents",
40683            "type": "boolean",
40684            "uniqueItems": true
40685          },
40686          {
40687            "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.",
40688            "in": "query",
40689            "name": "propagationPolicy",
40690            "type": "string",
40691            "uniqueItems": true
40692          },
40693          {
40694            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
40695            "in": "query",
40696            "name": "resourceVersion",
40697            "type": "string",
40698            "uniqueItems": true
40699          },
40700          {
40701            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40702            "in": "query",
40703            "name": "timeoutSeconds",
40704            "type": "integer",
40705            "uniqueItems": true
40706          },
40707          {
40708            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40709            "in": "query",
40710            "name": "watch",
40711            "type": "boolean",
40712            "uniqueItems": true
40713          }
40714        ],
40715        "produces": [
40716          "application/json",
40717          "application/yaml",
40718          "application/vnd.kubernetes.protobuf"
40719        ],
40720        "responses": {
40721          "200": {
40722            "description": "OK",
40723            "schema": {
40724              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40725            }
40726          },
40727          "401": {
40728            "description": "Unauthorized"
40729          }
40730        },
40731        "schemes": [
40732          "https"
40733        ],
40734        "tags": [
40735          "admissionregistration_v1beta1"
40736        ],
40737        "x-kubernetes-action": "deletecollection",
40738        "x-kubernetes-group-version-kind": {
40739          "group": "admissionregistration.k8s.io",
40740          "kind": "ValidatingWebhookConfiguration",
40741          "version": "v1beta1"
40742        }
40743      },
40744      "get": {
40745        "consumes": [
40746          "*/*"
40747        ],
40748        "description": "list or watch objects of kind ValidatingWebhookConfiguration",
40749        "operationId": "listAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
40750        "parameters": [
40751          {
40752            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
40753            "in": "query",
40754            "name": "allowWatchBookmarks",
40755            "type": "boolean",
40756            "uniqueItems": true
40757          },
40758          {
40759            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
40760            "in": "query",
40761            "name": "continue",
40762            "type": "string",
40763            "uniqueItems": true
40764          },
40765          {
40766            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
40767            "in": "query",
40768            "name": "fieldSelector",
40769            "type": "string",
40770            "uniqueItems": true
40771          },
40772          {
40773            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
40774            "in": "query",
40775            "name": "labelSelector",
40776            "type": "string",
40777            "uniqueItems": true
40778          },
40779          {
40780            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
40781            "in": "query",
40782            "name": "limit",
40783            "type": "integer",
40784            "uniqueItems": true
40785          },
40786          {
40787            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
40788            "in": "query",
40789            "name": "resourceVersion",
40790            "type": "string",
40791            "uniqueItems": true
40792          },
40793          {
40794            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
40795            "in": "query",
40796            "name": "timeoutSeconds",
40797            "type": "integer",
40798            "uniqueItems": true
40799          },
40800          {
40801            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
40802            "in": "query",
40803            "name": "watch",
40804            "type": "boolean",
40805            "uniqueItems": true
40806          }
40807        ],
40808        "produces": [
40809          "application/json",
40810          "application/yaml",
40811          "application/vnd.kubernetes.protobuf",
40812          "application/json;stream=watch",
40813          "application/vnd.kubernetes.protobuf;stream=watch"
40814        ],
40815        "responses": {
40816          "200": {
40817            "description": "OK",
40818            "schema": {
40819              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList"
40820            }
40821          },
40822          "401": {
40823            "description": "Unauthorized"
40824          }
40825        },
40826        "schemes": [
40827          "https"
40828        ],
40829        "tags": [
40830          "admissionregistration_v1beta1"
40831        ],
40832        "x-kubernetes-action": "list",
40833        "x-kubernetes-group-version-kind": {
40834          "group": "admissionregistration.k8s.io",
40835          "kind": "ValidatingWebhookConfiguration",
40836          "version": "v1beta1"
40837        }
40838      },
40839      "parameters": [
40840        {
40841          "description": "If 'true', then the output is pretty printed.",
40842          "in": "query",
40843          "name": "pretty",
40844          "type": "string",
40845          "uniqueItems": true
40846        }
40847      ],
40848      "post": {
40849        "consumes": [
40850          "*/*"
40851        ],
40852        "description": "create a ValidatingWebhookConfiguration",
40853        "operationId": "createAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
40854        "parameters": [
40855          {
40856            "in": "body",
40857            "name": "body",
40858            "required": true,
40859            "schema": {
40860              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
40861            }
40862          },
40863          {
40864            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40865            "in": "query",
40866            "name": "dryRun",
40867            "type": "string",
40868            "uniqueItems": true
40869          },
40870          {
40871            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
40872            "in": "query",
40873            "name": "fieldManager",
40874            "type": "string",
40875            "uniqueItems": true
40876          }
40877        ],
40878        "produces": [
40879          "application/json",
40880          "application/yaml",
40881          "application/vnd.kubernetes.protobuf"
40882        ],
40883        "responses": {
40884          "200": {
40885            "description": "OK",
40886            "schema": {
40887              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
40888            }
40889          },
40890          "201": {
40891            "description": "Created",
40892            "schema": {
40893              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
40894            }
40895          },
40896          "202": {
40897            "description": "Accepted",
40898            "schema": {
40899              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
40900            }
40901          },
40902          "401": {
40903            "description": "Unauthorized"
40904          }
40905        },
40906        "schemes": [
40907          "https"
40908        ],
40909        "tags": [
40910          "admissionregistration_v1beta1"
40911        ],
40912        "x-kubernetes-action": "post",
40913        "x-kubernetes-group-version-kind": {
40914          "group": "admissionregistration.k8s.io",
40915          "kind": "ValidatingWebhookConfiguration",
40916          "version": "v1beta1"
40917        }
40918      }
40919    },
40920    "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}": {
40921      "delete": {
40922        "consumes": [
40923          "*/*"
40924        ],
40925        "description": "delete a ValidatingWebhookConfiguration",
40926        "operationId": "deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
40927        "parameters": [
40928          {
40929            "in": "body",
40930            "name": "body",
40931            "schema": {
40932              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
40933            }
40934          },
40935          {
40936            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
40937            "in": "query",
40938            "name": "dryRun",
40939            "type": "string",
40940            "uniqueItems": true
40941          },
40942          {
40943            "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.",
40944            "in": "query",
40945            "name": "gracePeriodSeconds",
40946            "type": "integer",
40947            "uniqueItems": true
40948          },
40949          {
40950            "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.",
40951            "in": "query",
40952            "name": "orphanDependents",
40953            "type": "boolean",
40954            "uniqueItems": true
40955          },
40956          {
40957            "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.",
40958            "in": "query",
40959            "name": "propagationPolicy",
40960            "type": "string",
40961            "uniqueItems": true
40962          }
40963        ],
40964        "produces": [
40965          "application/json",
40966          "application/yaml",
40967          "application/vnd.kubernetes.protobuf"
40968        ],
40969        "responses": {
40970          "200": {
40971            "description": "OK",
40972            "schema": {
40973              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40974            }
40975          },
40976          "202": {
40977            "description": "Accepted",
40978            "schema": {
40979              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
40980            }
40981          },
40982          "401": {
40983            "description": "Unauthorized"
40984          }
40985        },
40986        "schemes": [
40987          "https"
40988        ],
40989        "tags": [
40990          "admissionregistration_v1beta1"
40991        ],
40992        "x-kubernetes-action": "delete",
40993        "x-kubernetes-group-version-kind": {
40994          "group": "admissionregistration.k8s.io",
40995          "kind": "ValidatingWebhookConfiguration",
40996          "version": "v1beta1"
40997        }
40998      },
40999      "get": {
41000        "consumes": [
41001          "*/*"
41002        ],
41003        "description": "read the specified ValidatingWebhookConfiguration",
41004        "operationId": "readAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41005        "parameters": [
41006          {
41007            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
41008            "in": "query",
41009            "name": "exact",
41010            "type": "boolean",
41011            "uniqueItems": true
41012          },
41013          {
41014            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
41015            "in": "query",
41016            "name": "export",
41017            "type": "boolean",
41018            "uniqueItems": true
41019          }
41020        ],
41021        "produces": [
41022          "application/json",
41023          "application/yaml",
41024          "application/vnd.kubernetes.protobuf"
41025        ],
41026        "responses": {
41027          "200": {
41028            "description": "OK",
41029            "schema": {
41030              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41031            }
41032          },
41033          "401": {
41034            "description": "Unauthorized"
41035          }
41036        },
41037        "schemes": [
41038          "https"
41039        ],
41040        "tags": [
41041          "admissionregistration_v1beta1"
41042        ],
41043        "x-kubernetes-action": "get",
41044        "x-kubernetes-group-version-kind": {
41045          "group": "admissionregistration.k8s.io",
41046          "kind": "ValidatingWebhookConfiguration",
41047          "version": "v1beta1"
41048        }
41049      },
41050      "parameters": [
41051        {
41052          "description": "name of the ValidatingWebhookConfiguration",
41053          "in": "path",
41054          "name": "name",
41055          "required": true,
41056          "type": "string",
41057          "uniqueItems": true
41058        },
41059        {
41060          "description": "If 'true', then the output is pretty printed.",
41061          "in": "query",
41062          "name": "pretty",
41063          "type": "string",
41064          "uniqueItems": true
41065        }
41066      ],
41067      "patch": {
41068        "consumes": [
41069          "application/json-patch+json",
41070          "application/merge-patch+json",
41071          "application/strategic-merge-patch+json"
41072        ],
41073        "description": "partially update the specified ValidatingWebhookConfiguration",
41074        "operationId": "patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41075        "parameters": [
41076          {
41077            "in": "body",
41078            "name": "body",
41079            "required": true,
41080            "schema": {
41081              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
41082            }
41083          },
41084          {
41085            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41086            "in": "query",
41087            "name": "dryRun",
41088            "type": "string",
41089            "uniqueItems": true
41090          },
41091          {
41092            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
41093            "in": "query",
41094            "name": "fieldManager",
41095            "type": "string",
41096            "uniqueItems": true
41097          },
41098          {
41099            "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.",
41100            "in": "query",
41101            "name": "force",
41102            "type": "boolean",
41103            "uniqueItems": true
41104          }
41105        ],
41106        "produces": [
41107          "application/json",
41108          "application/yaml",
41109          "application/vnd.kubernetes.protobuf"
41110        ],
41111        "responses": {
41112          "200": {
41113            "description": "OK",
41114            "schema": {
41115              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41116            }
41117          },
41118          "401": {
41119            "description": "Unauthorized"
41120          }
41121        },
41122        "schemes": [
41123          "https"
41124        ],
41125        "tags": [
41126          "admissionregistration_v1beta1"
41127        ],
41128        "x-kubernetes-action": "patch",
41129        "x-kubernetes-group-version-kind": {
41130          "group": "admissionregistration.k8s.io",
41131          "kind": "ValidatingWebhookConfiguration",
41132          "version": "v1beta1"
41133        }
41134      },
41135      "put": {
41136        "consumes": [
41137          "*/*"
41138        ],
41139        "description": "replace the specified ValidatingWebhookConfiguration",
41140        "operationId": "replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41141        "parameters": [
41142          {
41143            "in": "body",
41144            "name": "body",
41145            "required": true,
41146            "schema": {
41147              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41148            }
41149          },
41150          {
41151            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41152            "in": "query",
41153            "name": "dryRun",
41154            "type": "string",
41155            "uniqueItems": true
41156          },
41157          {
41158            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41159            "in": "query",
41160            "name": "fieldManager",
41161            "type": "string",
41162            "uniqueItems": true
41163          }
41164        ],
41165        "produces": [
41166          "application/json",
41167          "application/yaml",
41168          "application/vnd.kubernetes.protobuf"
41169        ],
41170        "responses": {
41171          "200": {
41172            "description": "OK",
41173            "schema": {
41174              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41175            }
41176          },
41177          "201": {
41178            "description": "Created",
41179            "schema": {
41180              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration"
41181            }
41182          },
41183          "401": {
41184            "description": "Unauthorized"
41185          }
41186        },
41187        "schemes": [
41188          "https"
41189        ],
41190        "tags": [
41191          "admissionregistration_v1beta1"
41192        ],
41193        "x-kubernetes-action": "put",
41194        "x-kubernetes-group-version-kind": {
41195          "group": "admissionregistration.k8s.io",
41196          "kind": "ValidatingWebhookConfiguration",
41197          "version": "v1beta1"
41198        }
41199      }
41200    },
41201    "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations": {
41202      "get": {
41203        "consumes": [
41204          "*/*"
41205        ],
41206        "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
41207        "operationId": "watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList",
41208        "produces": [
41209          "application/json",
41210          "application/yaml",
41211          "application/vnd.kubernetes.protobuf",
41212          "application/json;stream=watch",
41213          "application/vnd.kubernetes.protobuf;stream=watch"
41214        ],
41215        "responses": {
41216          "200": {
41217            "description": "OK",
41218            "schema": {
41219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
41220            }
41221          },
41222          "401": {
41223            "description": "Unauthorized"
41224          }
41225        },
41226        "schemes": [
41227          "https"
41228        ],
41229        "tags": [
41230          "admissionregistration_v1beta1"
41231        ],
41232        "x-kubernetes-action": "watchlist",
41233        "x-kubernetes-group-version-kind": {
41234          "group": "admissionregistration.k8s.io",
41235          "kind": "MutatingWebhookConfiguration",
41236          "version": "v1beta1"
41237        }
41238      },
41239      "parameters": [
41240        {
41241          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
41242          "in": "query",
41243          "name": "allowWatchBookmarks",
41244          "type": "boolean",
41245          "uniqueItems": true
41246        },
41247        {
41248          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41249          "in": "query",
41250          "name": "continue",
41251          "type": "string",
41252          "uniqueItems": true
41253        },
41254        {
41255          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41256          "in": "query",
41257          "name": "fieldSelector",
41258          "type": "string",
41259          "uniqueItems": true
41260        },
41261        {
41262          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41263          "in": "query",
41264          "name": "labelSelector",
41265          "type": "string",
41266          "uniqueItems": true
41267        },
41268        {
41269          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41270          "in": "query",
41271          "name": "limit",
41272          "type": "integer",
41273          "uniqueItems": true
41274        },
41275        {
41276          "description": "If 'true', then the output is pretty printed.",
41277          "in": "query",
41278          "name": "pretty",
41279          "type": "string",
41280          "uniqueItems": true
41281        },
41282        {
41283          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
41284          "in": "query",
41285          "name": "resourceVersion",
41286          "type": "string",
41287          "uniqueItems": true
41288        },
41289        {
41290          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41291          "in": "query",
41292          "name": "timeoutSeconds",
41293          "type": "integer",
41294          "uniqueItems": true
41295        },
41296        {
41297          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41298          "in": "query",
41299          "name": "watch",
41300          "type": "boolean",
41301          "uniqueItems": true
41302        }
41303      ]
41304    },
41305    "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{name}": {
41306      "get": {
41307        "consumes": [
41308          "*/*"
41309        ],
41310        "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.",
41311        "operationId": "watchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
41312        "produces": [
41313          "application/json",
41314          "application/yaml",
41315          "application/vnd.kubernetes.protobuf",
41316          "application/json;stream=watch",
41317          "application/vnd.kubernetes.protobuf;stream=watch"
41318        ],
41319        "responses": {
41320          "200": {
41321            "description": "OK",
41322            "schema": {
41323              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
41324            }
41325          },
41326          "401": {
41327            "description": "Unauthorized"
41328          }
41329        },
41330        "schemes": [
41331          "https"
41332        ],
41333        "tags": [
41334          "admissionregistration_v1beta1"
41335        ],
41336        "x-kubernetes-action": "watch",
41337        "x-kubernetes-group-version-kind": {
41338          "group": "admissionregistration.k8s.io",
41339          "kind": "MutatingWebhookConfiguration",
41340          "version": "v1beta1"
41341        }
41342      },
41343      "parameters": [
41344        {
41345          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
41346          "in": "query",
41347          "name": "allowWatchBookmarks",
41348          "type": "boolean",
41349          "uniqueItems": true
41350        },
41351        {
41352          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41353          "in": "query",
41354          "name": "continue",
41355          "type": "string",
41356          "uniqueItems": true
41357        },
41358        {
41359          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41360          "in": "query",
41361          "name": "fieldSelector",
41362          "type": "string",
41363          "uniqueItems": true
41364        },
41365        {
41366          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41367          "in": "query",
41368          "name": "labelSelector",
41369          "type": "string",
41370          "uniqueItems": true
41371        },
41372        {
41373          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41374          "in": "query",
41375          "name": "limit",
41376          "type": "integer",
41377          "uniqueItems": true
41378        },
41379        {
41380          "description": "name of the MutatingWebhookConfiguration",
41381          "in": "path",
41382          "name": "name",
41383          "required": true,
41384          "type": "string",
41385          "uniqueItems": true
41386        },
41387        {
41388          "description": "If 'true', then the output is pretty printed.",
41389          "in": "query",
41390          "name": "pretty",
41391          "type": "string",
41392          "uniqueItems": true
41393        },
41394        {
41395          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
41396          "in": "query",
41397          "name": "resourceVersion",
41398          "type": "string",
41399          "uniqueItems": true
41400        },
41401        {
41402          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41403          "in": "query",
41404          "name": "timeoutSeconds",
41405          "type": "integer",
41406          "uniqueItems": true
41407        },
41408        {
41409          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41410          "in": "query",
41411          "name": "watch",
41412          "type": "boolean",
41413          "uniqueItems": true
41414        }
41415      ]
41416    },
41417    "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations": {
41418      "get": {
41419        "consumes": [
41420          "*/*"
41421        ],
41422        "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.",
41423        "operationId": "watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList",
41424        "produces": [
41425          "application/json",
41426          "application/yaml",
41427          "application/vnd.kubernetes.protobuf",
41428          "application/json;stream=watch",
41429          "application/vnd.kubernetes.protobuf;stream=watch"
41430        ],
41431        "responses": {
41432          "200": {
41433            "description": "OK",
41434            "schema": {
41435              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
41436            }
41437          },
41438          "401": {
41439            "description": "Unauthorized"
41440          }
41441        },
41442        "schemes": [
41443          "https"
41444        ],
41445        "tags": [
41446          "admissionregistration_v1beta1"
41447        ],
41448        "x-kubernetes-action": "watchlist",
41449        "x-kubernetes-group-version-kind": {
41450          "group": "admissionregistration.k8s.io",
41451          "kind": "ValidatingWebhookConfiguration",
41452          "version": "v1beta1"
41453        }
41454      },
41455      "parameters": [
41456        {
41457          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
41458          "in": "query",
41459          "name": "allowWatchBookmarks",
41460          "type": "boolean",
41461          "uniqueItems": true
41462        },
41463        {
41464          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41465          "in": "query",
41466          "name": "continue",
41467          "type": "string",
41468          "uniqueItems": true
41469        },
41470        {
41471          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41472          "in": "query",
41473          "name": "fieldSelector",
41474          "type": "string",
41475          "uniqueItems": true
41476        },
41477        {
41478          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41479          "in": "query",
41480          "name": "labelSelector",
41481          "type": "string",
41482          "uniqueItems": true
41483        },
41484        {
41485          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41486          "in": "query",
41487          "name": "limit",
41488          "type": "integer",
41489          "uniqueItems": true
41490        },
41491        {
41492          "description": "If 'true', then the output is pretty printed.",
41493          "in": "query",
41494          "name": "pretty",
41495          "type": "string",
41496          "uniqueItems": true
41497        },
41498        {
41499          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
41500          "in": "query",
41501          "name": "resourceVersion",
41502          "type": "string",
41503          "uniqueItems": true
41504        },
41505        {
41506          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41507          "in": "query",
41508          "name": "timeoutSeconds",
41509          "type": "integer",
41510          "uniqueItems": true
41511        },
41512        {
41513          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41514          "in": "query",
41515          "name": "watch",
41516          "type": "boolean",
41517          "uniqueItems": true
41518        }
41519      ]
41520    },
41521    "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{name}": {
41522      "get": {
41523        "consumes": [
41524          "*/*"
41525        ],
41526        "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.",
41527        "operationId": "watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
41528        "produces": [
41529          "application/json",
41530          "application/yaml",
41531          "application/vnd.kubernetes.protobuf",
41532          "application/json;stream=watch",
41533          "application/vnd.kubernetes.protobuf;stream=watch"
41534        ],
41535        "responses": {
41536          "200": {
41537            "description": "OK",
41538            "schema": {
41539              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
41540            }
41541          },
41542          "401": {
41543            "description": "Unauthorized"
41544          }
41545        },
41546        "schemes": [
41547          "https"
41548        ],
41549        "tags": [
41550          "admissionregistration_v1beta1"
41551        ],
41552        "x-kubernetes-action": "watch",
41553        "x-kubernetes-group-version-kind": {
41554          "group": "admissionregistration.k8s.io",
41555          "kind": "ValidatingWebhookConfiguration",
41556          "version": "v1beta1"
41557        }
41558      },
41559      "parameters": [
41560        {
41561          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
41562          "in": "query",
41563          "name": "allowWatchBookmarks",
41564          "type": "boolean",
41565          "uniqueItems": true
41566        },
41567        {
41568          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41569          "in": "query",
41570          "name": "continue",
41571          "type": "string",
41572          "uniqueItems": true
41573        },
41574        {
41575          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41576          "in": "query",
41577          "name": "fieldSelector",
41578          "type": "string",
41579          "uniqueItems": true
41580        },
41581        {
41582          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41583          "in": "query",
41584          "name": "labelSelector",
41585          "type": "string",
41586          "uniqueItems": true
41587        },
41588        {
41589          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41590          "in": "query",
41591          "name": "limit",
41592          "type": "integer",
41593          "uniqueItems": true
41594        },
41595        {
41596          "description": "name of the ValidatingWebhookConfiguration",
41597          "in": "path",
41598          "name": "name",
41599          "required": true,
41600          "type": "string",
41601          "uniqueItems": true
41602        },
41603        {
41604          "description": "If 'true', then the output is pretty printed.",
41605          "in": "query",
41606          "name": "pretty",
41607          "type": "string",
41608          "uniqueItems": true
41609        },
41610        {
41611          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
41612          "in": "query",
41613          "name": "resourceVersion",
41614          "type": "string",
41615          "uniqueItems": true
41616        },
41617        {
41618          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41619          "in": "query",
41620          "name": "timeoutSeconds",
41621          "type": "integer",
41622          "uniqueItems": true
41623        },
41624        {
41625          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41626          "in": "query",
41627          "name": "watch",
41628          "type": "boolean",
41629          "uniqueItems": true
41630        }
41631      ]
41632    },
41633    "/apis/apiextensions.k8s.io/": {
41634      "get": {
41635        "consumes": [
41636          "application/json",
41637          "application/yaml",
41638          "application/vnd.kubernetes.protobuf"
41639        ],
41640        "description": "get information of a group",
41641        "operationId": "getApiextensionsAPIGroup",
41642        "produces": [
41643          "application/json",
41644          "application/yaml",
41645          "application/vnd.kubernetes.protobuf"
41646        ],
41647        "responses": {
41648          "200": {
41649            "description": "OK",
41650            "schema": {
41651              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
41652            }
41653          },
41654          "401": {
41655            "description": "Unauthorized"
41656          }
41657        },
41658        "schemes": [
41659          "https"
41660        ],
41661        "tags": [
41662          "apiextensions"
41663        ]
41664      }
41665    },
41666    "/apis/apiextensions.k8s.io/v1beta1/": {
41667      "get": {
41668        "consumes": [
41669          "application/json",
41670          "application/yaml",
41671          "application/vnd.kubernetes.protobuf"
41672        ],
41673        "description": "get available resources",
41674        "operationId": "getApiextensionsV1beta1APIResources",
41675        "produces": [
41676          "application/json",
41677          "application/yaml",
41678          "application/vnd.kubernetes.protobuf"
41679        ],
41680        "responses": {
41681          "200": {
41682            "description": "OK",
41683            "schema": {
41684              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
41685            }
41686          },
41687          "401": {
41688            "description": "Unauthorized"
41689          }
41690        },
41691        "schemes": [
41692          "https"
41693        ],
41694        "tags": [
41695          "apiextensions_v1beta1"
41696        ]
41697      }
41698    },
41699    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions": {
41700      "delete": {
41701        "consumes": [
41702          "*/*"
41703        ],
41704        "description": "delete collection of CustomResourceDefinition",
41705        "operationId": "deleteApiextensionsV1beta1CollectionCustomResourceDefinition",
41706        "parameters": [
41707          {
41708            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
41709            "in": "query",
41710            "name": "allowWatchBookmarks",
41711            "type": "boolean",
41712            "uniqueItems": true
41713          },
41714          {
41715            "in": "body",
41716            "name": "body",
41717            "schema": {
41718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
41719            }
41720          },
41721          {
41722            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41723            "in": "query",
41724            "name": "continue",
41725            "type": "string",
41726            "uniqueItems": true
41727          },
41728          {
41729            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41730            "in": "query",
41731            "name": "dryRun",
41732            "type": "string",
41733            "uniqueItems": true
41734          },
41735          {
41736            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41737            "in": "query",
41738            "name": "fieldSelector",
41739            "type": "string",
41740            "uniqueItems": true
41741          },
41742          {
41743            "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.",
41744            "in": "query",
41745            "name": "gracePeriodSeconds",
41746            "type": "integer",
41747            "uniqueItems": true
41748          },
41749          {
41750            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41751            "in": "query",
41752            "name": "labelSelector",
41753            "type": "string",
41754            "uniqueItems": true
41755          },
41756          {
41757            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41758            "in": "query",
41759            "name": "limit",
41760            "type": "integer",
41761            "uniqueItems": true
41762          },
41763          {
41764            "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.",
41765            "in": "query",
41766            "name": "orphanDependents",
41767            "type": "boolean",
41768            "uniqueItems": true
41769          },
41770          {
41771            "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.",
41772            "in": "query",
41773            "name": "propagationPolicy",
41774            "type": "string",
41775            "uniqueItems": true
41776          },
41777          {
41778            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
41779            "in": "query",
41780            "name": "resourceVersion",
41781            "type": "string",
41782            "uniqueItems": true
41783          },
41784          {
41785            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41786            "in": "query",
41787            "name": "timeoutSeconds",
41788            "type": "integer",
41789            "uniqueItems": true
41790          },
41791          {
41792            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41793            "in": "query",
41794            "name": "watch",
41795            "type": "boolean",
41796            "uniqueItems": true
41797          }
41798        ],
41799        "produces": [
41800          "application/json",
41801          "application/yaml",
41802          "application/vnd.kubernetes.protobuf"
41803        ],
41804        "responses": {
41805          "200": {
41806            "description": "OK",
41807            "schema": {
41808              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
41809            }
41810          },
41811          "401": {
41812            "description": "Unauthorized"
41813          }
41814        },
41815        "schemes": [
41816          "https"
41817        ],
41818        "tags": [
41819          "apiextensions_v1beta1"
41820        ],
41821        "x-kubernetes-action": "deletecollection",
41822        "x-kubernetes-group-version-kind": {
41823          "group": "apiextensions.k8s.io",
41824          "kind": "CustomResourceDefinition",
41825          "version": "v1beta1"
41826        }
41827      },
41828      "get": {
41829        "consumes": [
41830          "*/*"
41831        ],
41832        "description": "list or watch objects of kind CustomResourceDefinition",
41833        "operationId": "listApiextensionsV1beta1CustomResourceDefinition",
41834        "parameters": [
41835          {
41836            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
41837            "in": "query",
41838            "name": "allowWatchBookmarks",
41839            "type": "boolean",
41840            "uniqueItems": true
41841          },
41842          {
41843            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
41844            "in": "query",
41845            "name": "continue",
41846            "type": "string",
41847            "uniqueItems": true
41848          },
41849          {
41850            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
41851            "in": "query",
41852            "name": "fieldSelector",
41853            "type": "string",
41854            "uniqueItems": true
41855          },
41856          {
41857            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
41858            "in": "query",
41859            "name": "labelSelector",
41860            "type": "string",
41861            "uniqueItems": true
41862          },
41863          {
41864            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
41865            "in": "query",
41866            "name": "limit",
41867            "type": "integer",
41868            "uniqueItems": true
41869          },
41870          {
41871            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
41872            "in": "query",
41873            "name": "resourceVersion",
41874            "type": "string",
41875            "uniqueItems": true
41876          },
41877          {
41878            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
41879            "in": "query",
41880            "name": "timeoutSeconds",
41881            "type": "integer",
41882            "uniqueItems": true
41883          },
41884          {
41885            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
41886            "in": "query",
41887            "name": "watch",
41888            "type": "boolean",
41889            "uniqueItems": true
41890          }
41891        ],
41892        "produces": [
41893          "application/json",
41894          "application/yaml",
41895          "application/vnd.kubernetes.protobuf",
41896          "application/json;stream=watch",
41897          "application/vnd.kubernetes.protobuf;stream=watch"
41898        ],
41899        "responses": {
41900          "200": {
41901            "description": "OK",
41902            "schema": {
41903              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionList"
41904            }
41905          },
41906          "401": {
41907            "description": "Unauthorized"
41908          }
41909        },
41910        "schemes": [
41911          "https"
41912        ],
41913        "tags": [
41914          "apiextensions_v1beta1"
41915        ],
41916        "x-kubernetes-action": "list",
41917        "x-kubernetes-group-version-kind": {
41918          "group": "apiextensions.k8s.io",
41919          "kind": "CustomResourceDefinition",
41920          "version": "v1beta1"
41921        }
41922      },
41923      "parameters": [
41924        {
41925          "description": "If 'true', then the output is pretty printed.",
41926          "in": "query",
41927          "name": "pretty",
41928          "type": "string",
41929          "uniqueItems": true
41930        }
41931      ],
41932      "post": {
41933        "consumes": [
41934          "*/*"
41935        ],
41936        "description": "create a CustomResourceDefinition",
41937        "operationId": "createApiextensionsV1beta1CustomResourceDefinition",
41938        "parameters": [
41939          {
41940            "in": "body",
41941            "name": "body",
41942            "required": true,
41943            "schema": {
41944              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
41945            }
41946          },
41947          {
41948            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
41949            "in": "query",
41950            "name": "dryRun",
41951            "type": "string",
41952            "uniqueItems": true
41953          },
41954          {
41955            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
41956            "in": "query",
41957            "name": "fieldManager",
41958            "type": "string",
41959            "uniqueItems": true
41960          }
41961        ],
41962        "produces": [
41963          "application/json",
41964          "application/yaml",
41965          "application/vnd.kubernetes.protobuf"
41966        ],
41967        "responses": {
41968          "200": {
41969            "description": "OK",
41970            "schema": {
41971              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
41972            }
41973          },
41974          "201": {
41975            "description": "Created",
41976            "schema": {
41977              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
41978            }
41979          },
41980          "202": {
41981            "description": "Accepted",
41982            "schema": {
41983              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
41984            }
41985          },
41986          "401": {
41987            "description": "Unauthorized"
41988          }
41989        },
41990        "schemes": [
41991          "https"
41992        ],
41993        "tags": [
41994          "apiextensions_v1beta1"
41995        ],
41996        "x-kubernetes-action": "post",
41997        "x-kubernetes-group-version-kind": {
41998          "group": "apiextensions.k8s.io",
41999          "kind": "CustomResourceDefinition",
42000          "version": "v1beta1"
42001        }
42002      }
42003    },
42004    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}": {
42005      "delete": {
42006        "consumes": [
42007          "*/*"
42008        ],
42009        "description": "delete a CustomResourceDefinition",
42010        "operationId": "deleteApiextensionsV1beta1CustomResourceDefinition",
42011        "parameters": [
42012          {
42013            "in": "body",
42014            "name": "body",
42015            "schema": {
42016              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
42017            }
42018          },
42019          {
42020            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42021            "in": "query",
42022            "name": "dryRun",
42023            "type": "string",
42024            "uniqueItems": true
42025          },
42026          {
42027            "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.",
42028            "in": "query",
42029            "name": "gracePeriodSeconds",
42030            "type": "integer",
42031            "uniqueItems": true
42032          },
42033          {
42034            "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.",
42035            "in": "query",
42036            "name": "orphanDependents",
42037            "type": "boolean",
42038            "uniqueItems": true
42039          },
42040          {
42041            "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.",
42042            "in": "query",
42043            "name": "propagationPolicy",
42044            "type": "string",
42045            "uniqueItems": true
42046          }
42047        ],
42048        "produces": [
42049          "application/json",
42050          "application/yaml",
42051          "application/vnd.kubernetes.protobuf"
42052        ],
42053        "responses": {
42054          "200": {
42055            "description": "OK",
42056            "schema": {
42057              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42058            }
42059          },
42060          "202": {
42061            "description": "Accepted",
42062            "schema": {
42063              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42064            }
42065          },
42066          "401": {
42067            "description": "Unauthorized"
42068          }
42069        },
42070        "schemes": [
42071          "https"
42072        ],
42073        "tags": [
42074          "apiextensions_v1beta1"
42075        ],
42076        "x-kubernetes-action": "delete",
42077        "x-kubernetes-group-version-kind": {
42078          "group": "apiextensions.k8s.io",
42079          "kind": "CustomResourceDefinition",
42080          "version": "v1beta1"
42081        }
42082      },
42083      "get": {
42084        "consumes": [
42085          "*/*"
42086        ],
42087        "description": "read the specified CustomResourceDefinition",
42088        "operationId": "readApiextensionsV1beta1CustomResourceDefinition",
42089        "parameters": [
42090          {
42091            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
42092            "in": "query",
42093            "name": "exact",
42094            "type": "boolean",
42095            "uniqueItems": true
42096          },
42097          {
42098            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
42099            "in": "query",
42100            "name": "export",
42101            "type": "boolean",
42102            "uniqueItems": true
42103          }
42104        ],
42105        "produces": [
42106          "application/json",
42107          "application/yaml",
42108          "application/vnd.kubernetes.protobuf"
42109        ],
42110        "responses": {
42111          "200": {
42112            "description": "OK",
42113            "schema": {
42114              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42115            }
42116          },
42117          "401": {
42118            "description": "Unauthorized"
42119          }
42120        },
42121        "schemes": [
42122          "https"
42123        ],
42124        "tags": [
42125          "apiextensions_v1beta1"
42126        ],
42127        "x-kubernetes-action": "get",
42128        "x-kubernetes-group-version-kind": {
42129          "group": "apiextensions.k8s.io",
42130          "kind": "CustomResourceDefinition",
42131          "version": "v1beta1"
42132        }
42133      },
42134      "parameters": [
42135        {
42136          "description": "name of the CustomResourceDefinition",
42137          "in": "path",
42138          "name": "name",
42139          "required": true,
42140          "type": "string",
42141          "uniqueItems": true
42142        },
42143        {
42144          "description": "If 'true', then the output is pretty printed.",
42145          "in": "query",
42146          "name": "pretty",
42147          "type": "string",
42148          "uniqueItems": true
42149        }
42150      ],
42151      "patch": {
42152        "consumes": [
42153          "application/json-patch+json",
42154          "application/merge-patch+json",
42155          "application/strategic-merge-patch+json"
42156        ],
42157        "description": "partially update the specified CustomResourceDefinition",
42158        "operationId": "patchApiextensionsV1beta1CustomResourceDefinition",
42159        "parameters": [
42160          {
42161            "in": "body",
42162            "name": "body",
42163            "required": true,
42164            "schema": {
42165              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42166            }
42167          },
42168          {
42169            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42170            "in": "query",
42171            "name": "dryRun",
42172            "type": "string",
42173            "uniqueItems": true
42174          },
42175          {
42176            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
42177            "in": "query",
42178            "name": "fieldManager",
42179            "type": "string",
42180            "uniqueItems": true
42181          },
42182          {
42183            "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.",
42184            "in": "query",
42185            "name": "force",
42186            "type": "boolean",
42187            "uniqueItems": true
42188          }
42189        ],
42190        "produces": [
42191          "application/json",
42192          "application/yaml",
42193          "application/vnd.kubernetes.protobuf"
42194        ],
42195        "responses": {
42196          "200": {
42197            "description": "OK",
42198            "schema": {
42199              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42200            }
42201          },
42202          "401": {
42203            "description": "Unauthorized"
42204          }
42205        },
42206        "schemes": [
42207          "https"
42208        ],
42209        "tags": [
42210          "apiextensions_v1beta1"
42211        ],
42212        "x-kubernetes-action": "patch",
42213        "x-kubernetes-group-version-kind": {
42214          "group": "apiextensions.k8s.io",
42215          "kind": "CustomResourceDefinition",
42216          "version": "v1beta1"
42217        }
42218      },
42219      "put": {
42220        "consumes": [
42221          "*/*"
42222        ],
42223        "description": "replace the specified CustomResourceDefinition",
42224        "operationId": "replaceApiextensionsV1beta1CustomResourceDefinition",
42225        "parameters": [
42226          {
42227            "in": "body",
42228            "name": "body",
42229            "required": true,
42230            "schema": {
42231              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42232            }
42233          },
42234          {
42235            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42236            "in": "query",
42237            "name": "dryRun",
42238            "type": "string",
42239            "uniqueItems": true
42240          },
42241          {
42242            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42243            "in": "query",
42244            "name": "fieldManager",
42245            "type": "string",
42246            "uniqueItems": true
42247          }
42248        ],
42249        "produces": [
42250          "application/json",
42251          "application/yaml",
42252          "application/vnd.kubernetes.protobuf"
42253        ],
42254        "responses": {
42255          "200": {
42256            "description": "OK",
42257            "schema": {
42258              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42259            }
42260          },
42261          "201": {
42262            "description": "Created",
42263            "schema": {
42264              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42265            }
42266          },
42267          "401": {
42268            "description": "Unauthorized"
42269          }
42270        },
42271        "schemes": [
42272          "https"
42273        ],
42274        "tags": [
42275          "apiextensions_v1beta1"
42276        ],
42277        "x-kubernetes-action": "put",
42278        "x-kubernetes-group-version-kind": {
42279          "group": "apiextensions.k8s.io",
42280          "kind": "CustomResourceDefinition",
42281          "version": "v1beta1"
42282        }
42283      }
42284    },
42285    "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status": {
42286      "get": {
42287        "consumes": [
42288          "*/*"
42289        ],
42290        "description": "read status of the specified CustomResourceDefinition",
42291        "operationId": "readApiextensionsV1beta1CustomResourceDefinitionStatus",
42292        "produces": [
42293          "application/json",
42294          "application/yaml",
42295          "application/vnd.kubernetes.protobuf"
42296        ],
42297        "responses": {
42298          "200": {
42299            "description": "OK",
42300            "schema": {
42301              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42302            }
42303          },
42304          "401": {
42305            "description": "Unauthorized"
42306          }
42307        },
42308        "schemes": [
42309          "https"
42310        ],
42311        "tags": [
42312          "apiextensions_v1beta1"
42313        ],
42314        "x-kubernetes-action": "get",
42315        "x-kubernetes-group-version-kind": {
42316          "group": "apiextensions.k8s.io",
42317          "kind": "CustomResourceDefinition",
42318          "version": "v1beta1"
42319        }
42320      },
42321      "parameters": [
42322        {
42323          "description": "name of the CustomResourceDefinition",
42324          "in": "path",
42325          "name": "name",
42326          "required": true,
42327          "type": "string",
42328          "uniqueItems": true
42329        },
42330        {
42331          "description": "If 'true', then the output is pretty printed.",
42332          "in": "query",
42333          "name": "pretty",
42334          "type": "string",
42335          "uniqueItems": true
42336        }
42337      ],
42338      "patch": {
42339        "consumes": [
42340          "application/json-patch+json",
42341          "application/merge-patch+json",
42342          "application/strategic-merge-patch+json"
42343        ],
42344        "description": "partially update status of the specified CustomResourceDefinition",
42345        "operationId": "patchApiextensionsV1beta1CustomResourceDefinitionStatus",
42346        "parameters": [
42347          {
42348            "in": "body",
42349            "name": "body",
42350            "required": true,
42351            "schema": {
42352              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
42353            }
42354          },
42355          {
42356            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42357            "in": "query",
42358            "name": "dryRun",
42359            "type": "string",
42360            "uniqueItems": true
42361          },
42362          {
42363            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
42364            "in": "query",
42365            "name": "fieldManager",
42366            "type": "string",
42367            "uniqueItems": true
42368          },
42369          {
42370            "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.",
42371            "in": "query",
42372            "name": "force",
42373            "type": "boolean",
42374            "uniqueItems": true
42375          }
42376        ],
42377        "produces": [
42378          "application/json",
42379          "application/yaml",
42380          "application/vnd.kubernetes.protobuf"
42381        ],
42382        "responses": {
42383          "200": {
42384            "description": "OK",
42385            "schema": {
42386              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42387            }
42388          },
42389          "401": {
42390            "description": "Unauthorized"
42391          }
42392        },
42393        "schemes": [
42394          "https"
42395        ],
42396        "tags": [
42397          "apiextensions_v1beta1"
42398        ],
42399        "x-kubernetes-action": "patch",
42400        "x-kubernetes-group-version-kind": {
42401          "group": "apiextensions.k8s.io",
42402          "kind": "CustomResourceDefinition",
42403          "version": "v1beta1"
42404        }
42405      },
42406      "put": {
42407        "consumes": [
42408          "*/*"
42409        ],
42410        "description": "replace status of the specified CustomResourceDefinition",
42411        "operationId": "replaceApiextensionsV1beta1CustomResourceDefinitionStatus",
42412        "parameters": [
42413          {
42414            "in": "body",
42415            "name": "body",
42416            "required": true,
42417            "schema": {
42418              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42419            }
42420          },
42421          {
42422            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42423            "in": "query",
42424            "name": "dryRun",
42425            "type": "string",
42426            "uniqueItems": true
42427          },
42428          {
42429            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
42430            "in": "query",
42431            "name": "fieldManager",
42432            "type": "string",
42433            "uniqueItems": true
42434          }
42435        ],
42436        "produces": [
42437          "application/json",
42438          "application/yaml",
42439          "application/vnd.kubernetes.protobuf"
42440        ],
42441        "responses": {
42442          "200": {
42443            "description": "OK",
42444            "schema": {
42445              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42446            }
42447          },
42448          "201": {
42449            "description": "Created",
42450            "schema": {
42451              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition"
42452            }
42453          },
42454          "401": {
42455            "description": "Unauthorized"
42456          }
42457        },
42458        "schemes": [
42459          "https"
42460        ],
42461        "tags": [
42462          "apiextensions_v1beta1"
42463        ],
42464        "x-kubernetes-action": "put",
42465        "x-kubernetes-group-version-kind": {
42466          "group": "apiextensions.k8s.io",
42467          "kind": "CustomResourceDefinition",
42468          "version": "v1beta1"
42469        }
42470      }
42471    },
42472    "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions": {
42473      "get": {
42474        "consumes": [
42475          "*/*"
42476        ],
42477        "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.",
42478        "operationId": "watchApiextensionsV1beta1CustomResourceDefinitionList",
42479        "produces": [
42480          "application/json",
42481          "application/yaml",
42482          "application/vnd.kubernetes.protobuf",
42483          "application/json;stream=watch",
42484          "application/vnd.kubernetes.protobuf;stream=watch"
42485        ],
42486        "responses": {
42487          "200": {
42488            "description": "OK",
42489            "schema": {
42490              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42491            }
42492          },
42493          "401": {
42494            "description": "Unauthorized"
42495          }
42496        },
42497        "schemes": [
42498          "https"
42499        ],
42500        "tags": [
42501          "apiextensions_v1beta1"
42502        ],
42503        "x-kubernetes-action": "watchlist",
42504        "x-kubernetes-group-version-kind": {
42505          "group": "apiextensions.k8s.io",
42506          "kind": "CustomResourceDefinition",
42507          "version": "v1beta1"
42508        }
42509      },
42510      "parameters": [
42511        {
42512          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
42513          "in": "query",
42514          "name": "allowWatchBookmarks",
42515          "type": "boolean",
42516          "uniqueItems": true
42517        },
42518        {
42519          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42520          "in": "query",
42521          "name": "continue",
42522          "type": "string",
42523          "uniqueItems": true
42524        },
42525        {
42526          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42527          "in": "query",
42528          "name": "fieldSelector",
42529          "type": "string",
42530          "uniqueItems": true
42531        },
42532        {
42533          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42534          "in": "query",
42535          "name": "labelSelector",
42536          "type": "string",
42537          "uniqueItems": true
42538        },
42539        {
42540          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42541          "in": "query",
42542          "name": "limit",
42543          "type": "integer",
42544          "uniqueItems": true
42545        },
42546        {
42547          "description": "If 'true', then the output is pretty printed.",
42548          "in": "query",
42549          "name": "pretty",
42550          "type": "string",
42551          "uniqueItems": true
42552        },
42553        {
42554          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
42555          "in": "query",
42556          "name": "resourceVersion",
42557          "type": "string",
42558          "uniqueItems": true
42559        },
42560        {
42561          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42562          "in": "query",
42563          "name": "timeoutSeconds",
42564          "type": "integer",
42565          "uniqueItems": true
42566        },
42567        {
42568          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42569          "in": "query",
42570          "name": "watch",
42571          "type": "boolean",
42572          "uniqueItems": true
42573        }
42574      ]
42575    },
42576    "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{name}": {
42577      "get": {
42578        "consumes": [
42579          "*/*"
42580        ],
42581        "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.",
42582        "operationId": "watchApiextensionsV1beta1CustomResourceDefinition",
42583        "produces": [
42584          "application/json",
42585          "application/yaml",
42586          "application/vnd.kubernetes.protobuf",
42587          "application/json;stream=watch",
42588          "application/vnd.kubernetes.protobuf;stream=watch"
42589        ],
42590        "responses": {
42591          "200": {
42592            "description": "OK",
42593            "schema": {
42594              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
42595            }
42596          },
42597          "401": {
42598            "description": "Unauthorized"
42599          }
42600        },
42601        "schemes": [
42602          "https"
42603        ],
42604        "tags": [
42605          "apiextensions_v1beta1"
42606        ],
42607        "x-kubernetes-action": "watch",
42608        "x-kubernetes-group-version-kind": {
42609          "group": "apiextensions.k8s.io",
42610          "kind": "CustomResourceDefinition",
42611          "version": "v1beta1"
42612        }
42613      },
42614      "parameters": [
42615        {
42616          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
42617          "in": "query",
42618          "name": "allowWatchBookmarks",
42619          "type": "boolean",
42620          "uniqueItems": true
42621        },
42622        {
42623          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42624          "in": "query",
42625          "name": "continue",
42626          "type": "string",
42627          "uniqueItems": true
42628        },
42629        {
42630          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42631          "in": "query",
42632          "name": "fieldSelector",
42633          "type": "string",
42634          "uniqueItems": true
42635        },
42636        {
42637          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42638          "in": "query",
42639          "name": "labelSelector",
42640          "type": "string",
42641          "uniqueItems": true
42642        },
42643        {
42644          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42645          "in": "query",
42646          "name": "limit",
42647          "type": "integer",
42648          "uniqueItems": true
42649        },
42650        {
42651          "description": "name of the CustomResourceDefinition",
42652          "in": "path",
42653          "name": "name",
42654          "required": true,
42655          "type": "string",
42656          "uniqueItems": true
42657        },
42658        {
42659          "description": "If 'true', then the output is pretty printed.",
42660          "in": "query",
42661          "name": "pretty",
42662          "type": "string",
42663          "uniqueItems": true
42664        },
42665        {
42666          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
42667          "in": "query",
42668          "name": "resourceVersion",
42669          "type": "string",
42670          "uniqueItems": true
42671        },
42672        {
42673          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42674          "in": "query",
42675          "name": "timeoutSeconds",
42676          "type": "integer",
42677          "uniqueItems": true
42678        },
42679        {
42680          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42681          "in": "query",
42682          "name": "watch",
42683          "type": "boolean",
42684          "uniqueItems": true
42685        }
42686      ]
42687    },
42688    "/apis/apiregistration.k8s.io/": {
42689      "get": {
42690        "consumes": [
42691          "application/json",
42692          "application/yaml",
42693          "application/vnd.kubernetes.protobuf"
42694        ],
42695        "description": "get information of a group",
42696        "operationId": "getApiregistrationAPIGroup",
42697        "produces": [
42698          "application/json",
42699          "application/yaml",
42700          "application/vnd.kubernetes.protobuf"
42701        ],
42702        "responses": {
42703          "200": {
42704            "description": "OK",
42705            "schema": {
42706              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
42707            }
42708          },
42709          "401": {
42710            "description": "Unauthorized"
42711          }
42712        },
42713        "schemes": [
42714          "https"
42715        ],
42716        "tags": [
42717          "apiregistration"
42718        ]
42719      }
42720    },
42721    "/apis/apiregistration.k8s.io/v1/": {
42722      "get": {
42723        "consumes": [
42724          "application/json",
42725          "application/yaml",
42726          "application/vnd.kubernetes.protobuf"
42727        ],
42728        "description": "get available resources",
42729        "operationId": "getApiregistrationV1APIResources",
42730        "produces": [
42731          "application/json",
42732          "application/yaml",
42733          "application/vnd.kubernetes.protobuf"
42734        ],
42735        "responses": {
42736          "200": {
42737            "description": "OK",
42738            "schema": {
42739              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
42740            }
42741          },
42742          "401": {
42743            "description": "Unauthorized"
42744          }
42745        },
42746        "schemes": [
42747          "https"
42748        ],
42749        "tags": [
42750          "apiregistration_v1"
42751        ]
42752      }
42753    },
42754    "/apis/apiregistration.k8s.io/v1/apiservices": {
42755      "delete": {
42756        "consumes": [
42757          "*/*"
42758        ],
42759        "description": "delete collection of APIService",
42760        "operationId": "deleteApiregistrationV1CollectionAPIService",
42761        "parameters": [
42762          {
42763            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
42764            "in": "query",
42765            "name": "allowWatchBookmarks",
42766            "type": "boolean",
42767            "uniqueItems": true
42768          },
42769          {
42770            "in": "body",
42771            "name": "body",
42772            "schema": {
42773              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
42774            }
42775          },
42776          {
42777            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42778            "in": "query",
42779            "name": "continue",
42780            "type": "string",
42781            "uniqueItems": true
42782          },
42783          {
42784            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
42785            "in": "query",
42786            "name": "dryRun",
42787            "type": "string",
42788            "uniqueItems": true
42789          },
42790          {
42791            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42792            "in": "query",
42793            "name": "fieldSelector",
42794            "type": "string",
42795            "uniqueItems": true
42796          },
42797          {
42798            "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.",
42799            "in": "query",
42800            "name": "gracePeriodSeconds",
42801            "type": "integer",
42802            "uniqueItems": true
42803          },
42804          {
42805            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42806            "in": "query",
42807            "name": "labelSelector",
42808            "type": "string",
42809            "uniqueItems": true
42810          },
42811          {
42812            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42813            "in": "query",
42814            "name": "limit",
42815            "type": "integer",
42816            "uniqueItems": true
42817          },
42818          {
42819            "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.",
42820            "in": "query",
42821            "name": "orphanDependents",
42822            "type": "boolean",
42823            "uniqueItems": true
42824          },
42825          {
42826            "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.",
42827            "in": "query",
42828            "name": "propagationPolicy",
42829            "type": "string",
42830            "uniqueItems": true
42831          },
42832          {
42833            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
42834            "in": "query",
42835            "name": "resourceVersion",
42836            "type": "string",
42837            "uniqueItems": true
42838          },
42839          {
42840            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42841            "in": "query",
42842            "name": "timeoutSeconds",
42843            "type": "integer",
42844            "uniqueItems": true
42845          },
42846          {
42847            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42848            "in": "query",
42849            "name": "watch",
42850            "type": "boolean",
42851            "uniqueItems": true
42852          }
42853        ],
42854        "produces": [
42855          "application/json",
42856          "application/yaml",
42857          "application/vnd.kubernetes.protobuf"
42858        ],
42859        "responses": {
42860          "200": {
42861            "description": "OK",
42862            "schema": {
42863              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
42864            }
42865          },
42866          "401": {
42867            "description": "Unauthorized"
42868          }
42869        },
42870        "schemes": [
42871          "https"
42872        ],
42873        "tags": [
42874          "apiregistration_v1"
42875        ],
42876        "x-kubernetes-action": "deletecollection",
42877        "x-kubernetes-group-version-kind": {
42878          "group": "apiregistration.k8s.io",
42879          "kind": "APIService",
42880          "version": "v1"
42881        }
42882      },
42883      "get": {
42884        "consumes": [
42885          "*/*"
42886        ],
42887        "description": "list or watch objects of kind APIService",
42888        "operationId": "listApiregistrationV1APIService",
42889        "parameters": [
42890          {
42891            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
42892            "in": "query",
42893            "name": "allowWatchBookmarks",
42894            "type": "boolean",
42895            "uniqueItems": true
42896          },
42897          {
42898            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
42899            "in": "query",
42900            "name": "continue",
42901            "type": "string",
42902            "uniqueItems": true
42903          },
42904          {
42905            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
42906            "in": "query",
42907            "name": "fieldSelector",
42908            "type": "string",
42909            "uniqueItems": true
42910          },
42911          {
42912            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
42913            "in": "query",
42914            "name": "labelSelector",
42915            "type": "string",
42916            "uniqueItems": true
42917          },
42918          {
42919            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
42920            "in": "query",
42921            "name": "limit",
42922            "type": "integer",
42923            "uniqueItems": true
42924          },
42925          {
42926            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
42927            "in": "query",
42928            "name": "resourceVersion",
42929            "type": "string",
42930            "uniqueItems": true
42931          },
42932          {
42933            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
42934            "in": "query",
42935            "name": "timeoutSeconds",
42936            "type": "integer",
42937            "uniqueItems": true
42938          },
42939          {
42940            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
42941            "in": "query",
42942            "name": "watch",
42943            "type": "boolean",
42944            "uniqueItems": true
42945          }
42946        ],
42947        "produces": [
42948          "application/json",
42949          "application/yaml",
42950          "application/vnd.kubernetes.protobuf",
42951          "application/json;stream=watch",
42952          "application/vnd.kubernetes.protobuf;stream=watch"
42953        ],
42954        "responses": {
42955          "200": {
42956            "description": "OK",
42957            "schema": {
42958              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList"
42959            }
42960          },
42961          "401": {
42962            "description": "Unauthorized"
42963          }
42964        },
42965        "schemes": [
42966          "https"
42967        ],
42968        "tags": [
42969          "apiregistration_v1"
42970        ],
42971        "x-kubernetes-action": "list",
42972        "x-kubernetes-group-version-kind": {
42973          "group": "apiregistration.k8s.io",
42974          "kind": "APIService",
42975          "version": "v1"
42976        }
42977      },
42978      "parameters": [
42979        {
42980          "description": "If 'true', then the output is pretty printed.",
42981          "in": "query",
42982          "name": "pretty",
42983          "type": "string",
42984          "uniqueItems": true
42985        }
42986      ],
42987      "post": {
42988        "consumes": [
42989          "*/*"
42990        ],
42991        "description": "create an APIService",
42992        "operationId": "createApiregistrationV1APIService",
42993        "parameters": [
42994          {
42995            "in": "body",
42996            "name": "body",
42997            "required": true,
42998            "schema": {
42999              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43000            }
43001          },
43002          {
43003            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43004            "in": "query",
43005            "name": "dryRun",
43006            "type": "string",
43007            "uniqueItems": true
43008          },
43009          {
43010            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43011            "in": "query",
43012            "name": "fieldManager",
43013            "type": "string",
43014            "uniqueItems": true
43015          }
43016        ],
43017        "produces": [
43018          "application/json",
43019          "application/yaml",
43020          "application/vnd.kubernetes.protobuf"
43021        ],
43022        "responses": {
43023          "200": {
43024            "description": "OK",
43025            "schema": {
43026              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43027            }
43028          },
43029          "201": {
43030            "description": "Created",
43031            "schema": {
43032              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43033            }
43034          },
43035          "202": {
43036            "description": "Accepted",
43037            "schema": {
43038              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43039            }
43040          },
43041          "401": {
43042            "description": "Unauthorized"
43043          }
43044        },
43045        "schemes": [
43046          "https"
43047        ],
43048        "tags": [
43049          "apiregistration_v1"
43050        ],
43051        "x-kubernetes-action": "post",
43052        "x-kubernetes-group-version-kind": {
43053          "group": "apiregistration.k8s.io",
43054          "kind": "APIService",
43055          "version": "v1"
43056        }
43057      }
43058    },
43059    "/apis/apiregistration.k8s.io/v1/apiservices/{name}": {
43060      "delete": {
43061        "consumes": [
43062          "*/*"
43063        ],
43064        "description": "delete an APIService",
43065        "operationId": "deleteApiregistrationV1APIService",
43066        "parameters": [
43067          {
43068            "in": "body",
43069            "name": "body",
43070            "schema": {
43071              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43072            }
43073          },
43074          {
43075            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43076            "in": "query",
43077            "name": "dryRun",
43078            "type": "string",
43079            "uniqueItems": true
43080          },
43081          {
43082            "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.",
43083            "in": "query",
43084            "name": "gracePeriodSeconds",
43085            "type": "integer",
43086            "uniqueItems": true
43087          },
43088          {
43089            "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.",
43090            "in": "query",
43091            "name": "orphanDependents",
43092            "type": "boolean",
43093            "uniqueItems": true
43094          },
43095          {
43096            "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.",
43097            "in": "query",
43098            "name": "propagationPolicy",
43099            "type": "string",
43100            "uniqueItems": true
43101          }
43102        ],
43103        "produces": [
43104          "application/json",
43105          "application/yaml",
43106          "application/vnd.kubernetes.protobuf"
43107        ],
43108        "responses": {
43109          "200": {
43110            "description": "OK",
43111            "schema": {
43112              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43113            }
43114          },
43115          "202": {
43116            "description": "Accepted",
43117            "schema": {
43118              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43119            }
43120          },
43121          "401": {
43122            "description": "Unauthorized"
43123          }
43124        },
43125        "schemes": [
43126          "https"
43127        ],
43128        "tags": [
43129          "apiregistration_v1"
43130        ],
43131        "x-kubernetes-action": "delete",
43132        "x-kubernetes-group-version-kind": {
43133          "group": "apiregistration.k8s.io",
43134          "kind": "APIService",
43135          "version": "v1"
43136        }
43137      },
43138      "get": {
43139        "consumes": [
43140          "*/*"
43141        ],
43142        "description": "read the specified APIService",
43143        "operationId": "readApiregistrationV1APIService",
43144        "parameters": [
43145          {
43146            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
43147            "in": "query",
43148            "name": "exact",
43149            "type": "boolean",
43150            "uniqueItems": true
43151          },
43152          {
43153            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
43154            "in": "query",
43155            "name": "export",
43156            "type": "boolean",
43157            "uniqueItems": true
43158          }
43159        ],
43160        "produces": [
43161          "application/json",
43162          "application/yaml",
43163          "application/vnd.kubernetes.protobuf"
43164        ],
43165        "responses": {
43166          "200": {
43167            "description": "OK",
43168            "schema": {
43169              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43170            }
43171          },
43172          "401": {
43173            "description": "Unauthorized"
43174          }
43175        },
43176        "schemes": [
43177          "https"
43178        ],
43179        "tags": [
43180          "apiregistration_v1"
43181        ],
43182        "x-kubernetes-action": "get",
43183        "x-kubernetes-group-version-kind": {
43184          "group": "apiregistration.k8s.io",
43185          "kind": "APIService",
43186          "version": "v1"
43187        }
43188      },
43189      "parameters": [
43190        {
43191          "description": "name of the APIService",
43192          "in": "path",
43193          "name": "name",
43194          "required": true,
43195          "type": "string",
43196          "uniqueItems": true
43197        },
43198        {
43199          "description": "If 'true', then the output is pretty printed.",
43200          "in": "query",
43201          "name": "pretty",
43202          "type": "string",
43203          "uniqueItems": true
43204        }
43205      ],
43206      "patch": {
43207        "consumes": [
43208          "application/json-patch+json",
43209          "application/merge-patch+json",
43210          "application/strategic-merge-patch+json"
43211        ],
43212        "description": "partially update the specified APIService",
43213        "operationId": "patchApiregistrationV1APIService",
43214        "parameters": [
43215          {
43216            "in": "body",
43217            "name": "body",
43218            "required": true,
43219            "schema": {
43220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43221            }
43222          },
43223          {
43224            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43225            "in": "query",
43226            "name": "dryRun",
43227            "type": "string",
43228            "uniqueItems": true
43229          },
43230          {
43231            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
43232            "in": "query",
43233            "name": "fieldManager",
43234            "type": "string",
43235            "uniqueItems": true
43236          },
43237          {
43238            "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.",
43239            "in": "query",
43240            "name": "force",
43241            "type": "boolean",
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.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43255            }
43256          },
43257          "401": {
43258            "description": "Unauthorized"
43259          }
43260        },
43261        "schemes": [
43262          "https"
43263        ],
43264        "tags": [
43265          "apiregistration_v1"
43266        ],
43267        "x-kubernetes-action": "patch",
43268        "x-kubernetes-group-version-kind": {
43269          "group": "apiregistration.k8s.io",
43270          "kind": "APIService",
43271          "version": "v1"
43272        }
43273      },
43274      "put": {
43275        "consumes": [
43276          "*/*"
43277        ],
43278        "description": "replace the specified APIService",
43279        "operationId": "replaceApiregistrationV1APIService",
43280        "parameters": [
43281          {
43282            "in": "body",
43283            "name": "body",
43284            "required": true,
43285            "schema": {
43286              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43287            }
43288          },
43289          {
43290            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43291            "in": "query",
43292            "name": "dryRun",
43293            "type": "string",
43294            "uniqueItems": true
43295          },
43296          {
43297            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43298            "in": "query",
43299            "name": "fieldManager",
43300            "type": "string",
43301            "uniqueItems": true
43302          }
43303        ],
43304        "produces": [
43305          "application/json",
43306          "application/yaml",
43307          "application/vnd.kubernetes.protobuf"
43308        ],
43309        "responses": {
43310          "200": {
43311            "description": "OK",
43312            "schema": {
43313              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43314            }
43315          },
43316          "201": {
43317            "description": "Created",
43318            "schema": {
43319              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43320            }
43321          },
43322          "401": {
43323            "description": "Unauthorized"
43324          }
43325        },
43326        "schemes": [
43327          "https"
43328        ],
43329        "tags": [
43330          "apiregistration_v1"
43331        ],
43332        "x-kubernetes-action": "put",
43333        "x-kubernetes-group-version-kind": {
43334          "group": "apiregistration.k8s.io",
43335          "kind": "APIService",
43336          "version": "v1"
43337        }
43338      }
43339    },
43340    "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status": {
43341      "get": {
43342        "consumes": [
43343          "*/*"
43344        ],
43345        "description": "read status of the specified APIService",
43346        "operationId": "readApiregistrationV1APIServiceStatus",
43347        "produces": [
43348          "application/json",
43349          "application/yaml",
43350          "application/vnd.kubernetes.protobuf"
43351        ],
43352        "responses": {
43353          "200": {
43354            "description": "OK",
43355            "schema": {
43356              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43357            }
43358          },
43359          "401": {
43360            "description": "Unauthorized"
43361          }
43362        },
43363        "schemes": [
43364          "https"
43365        ],
43366        "tags": [
43367          "apiregistration_v1"
43368        ],
43369        "x-kubernetes-action": "get",
43370        "x-kubernetes-group-version-kind": {
43371          "group": "apiregistration.k8s.io",
43372          "kind": "APIService",
43373          "version": "v1"
43374        }
43375      },
43376      "parameters": [
43377        {
43378          "description": "name of the APIService",
43379          "in": "path",
43380          "name": "name",
43381          "required": true,
43382          "type": "string",
43383          "uniqueItems": true
43384        },
43385        {
43386          "description": "If 'true', then the output is pretty printed.",
43387          "in": "query",
43388          "name": "pretty",
43389          "type": "string",
43390          "uniqueItems": true
43391        }
43392      ],
43393      "patch": {
43394        "consumes": [
43395          "application/json-patch+json",
43396          "application/merge-patch+json",
43397          "application/strategic-merge-patch+json"
43398        ],
43399        "description": "partially update status of the specified APIService",
43400        "operationId": "patchApiregistrationV1APIServiceStatus",
43401        "parameters": [
43402          {
43403            "in": "body",
43404            "name": "body",
43405            "required": true,
43406            "schema": {
43407              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
43408            }
43409          },
43410          {
43411            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43412            "in": "query",
43413            "name": "dryRun",
43414            "type": "string",
43415            "uniqueItems": true
43416          },
43417          {
43418            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
43419            "in": "query",
43420            "name": "fieldManager",
43421            "type": "string",
43422            "uniqueItems": true
43423          },
43424          {
43425            "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.",
43426            "in": "query",
43427            "name": "force",
43428            "type": "boolean",
43429            "uniqueItems": true
43430          }
43431        ],
43432        "produces": [
43433          "application/json",
43434          "application/yaml",
43435          "application/vnd.kubernetes.protobuf"
43436        ],
43437        "responses": {
43438          "200": {
43439            "description": "OK",
43440            "schema": {
43441              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43442            }
43443          },
43444          "401": {
43445            "description": "Unauthorized"
43446          }
43447        },
43448        "schemes": [
43449          "https"
43450        ],
43451        "tags": [
43452          "apiregistration_v1"
43453        ],
43454        "x-kubernetes-action": "patch",
43455        "x-kubernetes-group-version-kind": {
43456          "group": "apiregistration.k8s.io",
43457          "kind": "APIService",
43458          "version": "v1"
43459        }
43460      },
43461      "put": {
43462        "consumes": [
43463          "*/*"
43464        ],
43465        "description": "replace status of the specified APIService",
43466        "operationId": "replaceApiregistrationV1APIServiceStatus",
43467        "parameters": [
43468          {
43469            "in": "body",
43470            "name": "body",
43471            "required": true,
43472            "schema": {
43473              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43474            }
43475          },
43476          {
43477            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43478            "in": "query",
43479            "name": "dryRun",
43480            "type": "string",
43481            "uniqueItems": true
43482          },
43483          {
43484            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
43485            "in": "query",
43486            "name": "fieldManager",
43487            "type": "string",
43488            "uniqueItems": true
43489          }
43490        ],
43491        "produces": [
43492          "application/json",
43493          "application/yaml",
43494          "application/vnd.kubernetes.protobuf"
43495        ],
43496        "responses": {
43497          "200": {
43498            "description": "OK",
43499            "schema": {
43500              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43501            }
43502          },
43503          "201": {
43504            "description": "Created",
43505            "schema": {
43506              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService"
43507            }
43508          },
43509          "401": {
43510            "description": "Unauthorized"
43511          }
43512        },
43513        "schemes": [
43514          "https"
43515        ],
43516        "tags": [
43517          "apiregistration_v1"
43518        ],
43519        "x-kubernetes-action": "put",
43520        "x-kubernetes-group-version-kind": {
43521          "group": "apiregistration.k8s.io",
43522          "kind": "APIService",
43523          "version": "v1"
43524        }
43525      }
43526    },
43527    "/apis/apiregistration.k8s.io/v1/watch/apiservices": {
43528      "get": {
43529        "consumes": [
43530          "*/*"
43531        ],
43532        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
43533        "operationId": "watchApiregistrationV1APIServiceList",
43534        "produces": [
43535          "application/json",
43536          "application/yaml",
43537          "application/vnd.kubernetes.protobuf",
43538          "application/json;stream=watch",
43539          "application/vnd.kubernetes.protobuf;stream=watch"
43540        ],
43541        "responses": {
43542          "200": {
43543            "description": "OK",
43544            "schema": {
43545              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
43546            }
43547          },
43548          "401": {
43549            "description": "Unauthorized"
43550          }
43551        },
43552        "schemes": [
43553          "https"
43554        ],
43555        "tags": [
43556          "apiregistration_v1"
43557        ],
43558        "x-kubernetes-action": "watchlist",
43559        "x-kubernetes-group-version-kind": {
43560          "group": "apiregistration.k8s.io",
43561          "kind": "APIService",
43562          "version": "v1"
43563        }
43564      },
43565      "parameters": [
43566        {
43567          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
43568          "in": "query",
43569          "name": "allowWatchBookmarks",
43570          "type": "boolean",
43571          "uniqueItems": true
43572        },
43573        {
43574          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43575          "in": "query",
43576          "name": "continue",
43577          "type": "string",
43578          "uniqueItems": true
43579        },
43580        {
43581          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43582          "in": "query",
43583          "name": "fieldSelector",
43584          "type": "string",
43585          "uniqueItems": true
43586        },
43587        {
43588          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43589          "in": "query",
43590          "name": "labelSelector",
43591          "type": "string",
43592          "uniqueItems": true
43593        },
43594        {
43595          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43596          "in": "query",
43597          "name": "limit",
43598          "type": "integer",
43599          "uniqueItems": true
43600        },
43601        {
43602          "description": "If 'true', then the output is pretty printed.",
43603          "in": "query",
43604          "name": "pretty",
43605          "type": "string",
43606          "uniqueItems": true
43607        },
43608        {
43609          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
43610          "in": "query",
43611          "name": "resourceVersion",
43612          "type": "string",
43613          "uniqueItems": true
43614        },
43615        {
43616          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43617          "in": "query",
43618          "name": "timeoutSeconds",
43619          "type": "integer",
43620          "uniqueItems": true
43621        },
43622        {
43623          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43624          "in": "query",
43625          "name": "watch",
43626          "type": "boolean",
43627          "uniqueItems": true
43628        }
43629      ]
43630    },
43631    "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}": {
43632      "get": {
43633        "consumes": [
43634          "*/*"
43635        ],
43636        "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.",
43637        "operationId": "watchApiregistrationV1APIService",
43638        "produces": [
43639          "application/json",
43640          "application/yaml",
43641          "application/vnd.kubernetes.protobuf",
43642          "application/json;stream=watch",
43643          "application/vnd.kubernetes.protobuf;stream=watch"
43644        ],
43645        "responses": {
43646          "200": {
43647            "description": "OK",
43648            "schema": {
43649              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
43650            }
43651          },
43652          "401": {
43653            "description": "Unauthorized"
43654          }
43655        },
43656        "schemes": [
43657          "https"
43658        ],
43659        "tags": [
43660          "apiregistration_v1"
43661        ],
43662        "x-kubernetes-action": "watch",
43663        "x-kubernetes-group-version-kind": {
43664          "group": "apiregistration.k8s.io",
43665          "kind": "APIService",
43666          "version": "v1"
43667        }
43668      },
43669      "parameters": [
43670        {
43671          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
43672          "in": "query",
43673          "name": "allowWatchBookmarks",
43674          "type": "boolean",
43675          "uniqueItems": true
43676        },
43677        {
43678          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43679          "in": "query",
43680          "name": "continue",
43681          "type": "string",
43682          "uniqueItems": true
43683        },
43684        {
43685          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43686          "in": "query",
43687          "name": "fieldSelector",
43688          "type": "string",
43689          "uniqueItems": true
43690        },
43691        {
43692          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43693          "in": "query",
43694          "name": "labelSelector",
43695          "type": "string",
43696          "uniqueItems": true
43697        },
43698        {
43699          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43700          "in": "query",
43701          "name": "limit",
43702          "type": "integer",
43703          "uniqueItems": true
43704        },
43705        {
43706          "description": "name of the APIService",
43707          "in": "path",
43708          "name": "name",
43709          "required": true,
43710          "type": "string",
43711          "uniqueItems": true
43712        },
43713        {
43714          "description": "If 'true', then the output is pretty printed.",
43715          "in": "query",
43716          "name": "pretty",
43717          "type": "string",
43718          "uniqueItems": true
43719        },
43720        {
43721          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
43722          "in": "query",
43723          "name": "resourceVersion",
43724          "type": "string",
43725          "uniqueItems": true
43726        },
43727        {
43728          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43729          "in": "query",
43730          "name": "timeoutSeconds",
43731          "type": "integer",
43732          "uniqueItems": true
43733        },
43734        {
43735          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43736          "in": "query",
43737          "name": "watch",
43738          "type": "boolean",
43739          "uniqueItems": true
43740        }
43741      ]
43742    },
43743    "/apis/apiregistration.k8s.io/v1beta1/": {
43744      "get": {
43745        "consumes": [
43746          "application/json",
43747          "application/yaml",
43748          "application/vnd.kubernetes.protobuf"
43749        ],
43750        "description": "get available resources",
43751        "operationId": "getApiregistrationV1beta1APIResources",
43752        "produces": [
43753          "application/json",
43754          "application/yaml",
43755          "application/vnd.kubernetes.protobuf"
43756        ],
43757        "responses": {
43758          "200": {
43759            "description": "OK",
43760            "schema": {
43761              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
43762            }
43763          },
43764          "401": {
43765            "description": "Unauthorized"
43766          }
43767        },
43768        "schemes": [
43769          "https"
43770        ],
43771        "tags": [
43772          "apiregistration_v1beta1"
43773        ]
43774      }
43775    },
43776    "/apis/apiregistration.k8s.io/v1beta1/apiservices": {
43777      "delete": {
43778        "consumes": [
43779          "*/*"
43780        ],
43781        "description": "delete collection of APIService",
43782        "operationId": "deleteApiregistrationV1beta1CollectionAPIService",
43783        "parameters": [
43784          {
43785            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
43786            "in": "query",
43787            "name": "allowWatchBookmarks",
43788            "type": "boolean",
43789            "uniqueItems": true
43790          },
43791          {
43792            "in": "body",
43793            "name": "body",
43794            "schema": {
43795              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
43796            }
43797          },
43798          {
43799            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43800            "in": "query",
43801            "name": "continue",
43802            "type": "string",
43803            "uniqueItems": true
43804          },
43805          {
43806            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
43807            "in": "query",
43808            "name": "dryRun",
43809            "type": "string",
43810            "uniqueItems": true
43811          },
43812          {
43813            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43814            "in": "query",
43815            "name": "fieldSelector",
43816            "type": "string",
43817            "uniqueItems": true
43818          },
43819          {
43820            "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.",
43821            "in": "query",
43822            "name": "gracePeriodSeconds",
43823            "type": "integer",
43824            "uniqueItems": true
43825          },
43826          {
43827            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43828            "in": "query",
43829            "name": "labelSelector",
43830            "type": "string",
43831            "uniqueItems": true
43832          },
43833          {
43834            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43835            "in": "query",
43836            "name": "limit",
43837            "type": "integer",
43838            "uniqueItems": true
43839          },
43840          {
43841            "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.",
43842            "in": "query",
43843            "name": "orphanDependents",
43844            "type": "boolean",
43845            "uniqueItems": true
43846          },
43847          {
43848            "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.",
43849            "in": "query",
43850            "name": "propagationPolicy",
43851            "type": "string",
43852            "uniqueItems": true
43853          },
43854          {
43855            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
43856            "in": "query",
43857            "name": "resourceVersion",
43858            "type": "string",
43859            "uniqueItems": true
43860          },
43861          {
43862            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43863            "in": "query",
43864            "name": "timeoutSeconds",
43865            "type": "integer",
43866            "uniqueItems": true
43867          },
43868          {
43869            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43870            "in": "query",
43871            "name": "watch",
43872            "type": "boolean",
43873            "uniqueItems": true
43874          }
43875        ],
43876        "produces": [
43877          "application/json",
43878          "application/yaml",
43879          "application/vnd.kubernetes.protobuf"
43880        ],
43881        "responses": {
43882          "200": {
43883            "description": "OK",
43884            "schema": {
43885              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
43886            }
43887          },
43888          "401": {
43889            "description": "Unauthorized"
43890          }
43891        },
43892        "schemes": [
43893          "https"
43894        ],
43895        "tags": [
43896          "apiregistration_v1beta1"
43897        ],
43898        "x-kubernetes-action": "deletecollection",
43899        "x-kubernetes-group-version-kind": {
43900          "group": "apiregistration.k8s.io",
43901          "kind": "APIService",
43902          "version": "v1beta1"
43903        }
43904      },
43905      "get": {
43906        "consumes": [
43907          "*/*"
43908        ],
43909        "description": "list or watch objects of kind APIService",
43910        "operationId": "listApiregistrationV1beta1APIService",
43911        "parameters": [
43912          {
43913            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
43914            "in": "query",
43915            "name": "allowWatchBookmarks",
43916            "type": "boolean",
43917            "uniqueItems": true
43918          },
43919          {
43920            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
43921            "in": "query",
43922            "name": "continue",
43923            "type": "string",
43924            "uniqueItems": true
43925          },
43926          {
43927            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
43928            "in": "query",
43929            "name": "fieldSelector",
43930            "type": "string",
43931            "uniqueItems": true
43932          },
43933          {
43934            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
43935            "in": "query",
43936            "name": "labelSelector",
43937            "type": "string",
43938            "uniqueItems": true
43939          },
43940          {
43941            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
43942            "in": "query",
43943            "name": "limit",
43944            "type": "integer",
43945            "uniqueItems": true
43946          },
43947          {
43948            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
43949            "in": "query",
43950            "name": "resourceVersion",
43951            "type": "string",
43952            "uniqueItems": true
43953          },
43954          {
43955            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
43956            "in": "query",
43957            "name": "timeoutSeconds",
43958            "type": "integer",
43959            "uniqueItems": true
43960          },
43961          {
43962            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
43963            "in": "query",
43964            "name": "watch",
43965            "type": "boolean",
43966            "uniqueItems": true
43967          }
43968        ],
43969        "produces": [
43970          "application/json",
43971          "application/yaml",
43972          "application/vnd.kubernetes.protobuf",
43973          "application/json;stream=watch",
43974          "application/vnd.kubernetes.protobuf;stream=watch"
43975        ],
43976        "responses": {
43977          "200": {
43978            "description": "OK",
43979            "schema": {
43980              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIServiceList"
43981            }
43982          },
43983          "401": {
43984            "description": "Unauthorized"
43985          }
43986        },
43987        "schemes": [
43988          "https"
43989        ],
43990        "tags": [
43991          "apiregistration_v1beta1"
43992        ],
43993        "x-kubernetes-action": "list",
43994        "x-kubernetes-group-version-kind": {
43995          "group": "apiregistration.k8s.io",
43996          "kind": "APIService",
43997          "version": "v1beta1"
43998        }
43999      },
44000      "parameters": [
44001        {
44002          "description": "If 'true', then the output is pretty printed.",
44003          "in": "query",
44004          "name": "pretty",
44005          "type": "string",
44006          "uniqueItems": true
44007        }
44008      ],
44009      "post": {
44010        "consumes": [
44011          "*/*"
44012        ],
44013        "description": "create an APIService",
44014        "operationId": "createApiregistrationV1beta1APIService",
44015        "parameters": [
44016          {
44017            "in": "body",
44018            "name": "body",
44019            "required": true,
44020            "schema": {
44021              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44022            }
44023          },
44024          {
44025            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44026            "in": "query",
44027            "name": "dryRun",
44028            "type": "string",
44029            "uniqueItems": true
44030          },
44031          {
44032            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44033            "in": "query",
44034            "name": "fieldManager",
44035            "type": "string",
44036            "uniqueItems": true
44037          }
44038        ],
44039        "produces": [
44040          "application/json",
44041          "application/yaml",
44042          "application/vnd.kubernetes.protobuf"
44043        ],
44044        "responses": {
44045          "200": {
44046            "description": "OK",
44047            "schema": {
44048              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44049            }
44050          },
44051          "201": {
44052            "description": "Created",
44053            "schema": {
44054              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44055            }
44056          },
44057          "202": {
44058            "description": "Accepted",
44059            "schema": {
44060              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44061            }
44062          },
44063          "401": {
44064            "description": "Unauthorized"
44065          }
44066        },
44067        "schemes": [
44068          "https"
44069        ],
44070        "tags": [
44071          "apiregistration_v1beta1"
44072        ],
44073        "x-kubernetes-action": "post",
44074        "x-kubernetes-group-version-kind": {
44075          "group": "apiregistration.k8s.io",
44076          "kind": "APIService",
44077          "version": "v1beta1"
44078        }
44079      }
44080    },
44081    "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}": {
44082      "delete": {
44083        "consumes": [
44084          "*/*"
44085        ],
44086        "description": "delete an APIService",
44087        "operationId": "deleteApiregistrationV1beta1APIService",
44088        "parameters": [
44089          {
44090            "in": "body",
44091            "name": "body",
44092            "schema": {
44093              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
44094            }
44095          },
44096          {
44097            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44098            "in": "query",
44099            "name": "dryRun",
44100            "type": "string",
44101            "uniqueItems": true
44102          },
44103          {
44104            "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.",
44105            "in": "query",
44106            "name": "gracePeriodSeconds",
44107            "type": "integer",
44108            "uniqueItems": true
44109          },
44110          {
44111            "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.",
44112            "in": "query",
44113            "name": "orphanDependents",
44114            "type": "boolean",
44115            "uniqueItems": true
44116          },
44117          {
44118            "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.",
44119            "in": "query",
44120            "name": "propagationPolicy",
44121            "type": "string",
44122            "uniqueItems": true
44123          }
44124        ],
44125        "produces": [
44126          "application/json",
44127          "application/yaml",
44128          "application/vnd.kubernetes.protobuf"
44129        ],
44130        "responses": {
44131          "200": {
44132            "description": "OK",
44133            "schema": {
44134              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44135            }
44136          },
44137          "202": {
44138            "description": "Accepted",
44139            "schema": {
44140              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
44141            }
44142          },
44143          "401": {
44144            "description": "Unauthorized"
44145          }
44146        },
44147        "schemes": [
44148          "https"
44149        ],
44150        "tags": [
44151          "apiregistration_v1beta1"
44152        ],
44153        "x-kubernetes-action": "delete",
44154        "x-kubernetes-group-version-kind": {
44155          "group": "apiregistration.k8s.io",
44156          "kind": "APIService",
44157          "version": "v1beta1"
44158        }
44159      },
44160      "get": {
44161        "consumes": [
44162          "*/*"
44163        ],
44164        "description": "read the specified APIService",
44165        "operationId": "readApiregistrationV1beta1APIService",
44166        "parameters": [
44167          {
44168            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
44169            "in": "query",
44170            "name": "exact",
44171            "type": "boolean",
44172            "uniqueItems": true
44173          },
44174          {
44175            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
44176            "in": "query",
44177            "name": "export",
44178            "type": "boolean",
44179            "uniqueItems": true
44180          }
44181        ],
44182        "produces": [
44183          "application/json",
44184          "application/yaml",
44185          "application/vnd.kubernetes.protobuf"
44186        ],
44187        "responses": {
44188          "200": {
44189            "description": "OK",
44190            "schema": {
44191              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44192            }
44193          },
44194          "401": {
44195            "description": "Unauthorized"
44196          }
44197        },
44198        "schemes": [
44199          "https"
44200        ],
44201        "tags": [
44202          "apiregistration_v1beta1"
44203        ],
44204        "x-kubernetes-action": "get",
44205        "x-kubernetes-group-version-kind": {
44206          "group": "apiregistration.k8s.io",
44207          "kind": "APIService",
44208          "version": "v1beta1"
44209        }
44210      },
44211      "parameters": [
44212        {
44213          "description": "name of the APIService",
44214          "in": "path",
44215          "name": "name",
44216          "required": true,
44217          "type": "string",
44218          "uniqueItems": true
44219        },
44220        {
44221          "description": "If 'true', then the output is pretty printed.",
44222          "in": "query",
44223          "name": "pretty",
44224          "type": "string",
44225          "uniqueItems": true
44226        }
44227      ],
44228      "patch": {
44229        "consumes": [
44230          "application/json-patch+json",
44231          "application/merge-patch+json",
44232          "application/strategic-merge-patch+json"
44233        ],
44234        "description": "partially update the specified APIService",
44235        "operationId": "patchApiregistrationV1beta1APIService",
44236        "parameters": [
44237          {
44238            "in": "body",
44239            "name": "body",
44240            "required": true,
44241            "schema": {
44242              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44243            }
44244          },
44245          {
44246            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44247            "in": "query",
44248            "name": "dryRun",
44249            "type": "string",
44250            "uniqueItems": true
44251          },
44252          {
44253            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
44254            "in": "query",
44255            "name": "fieldManager",
44256            "type": "string",
44257            "uniqueItems": true
44258          },
44259          {
44260            "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.",
44261            "in": "query",
44262            "name": "force",
44263            "type": "boolean",
44264            "uniqueItems": true
44265          }
44266        ],
44267        "produces": [
44268          "application/json",
44269          "application/yaml",
44270          "application/vnd.kubernetes.protobuf"
44271        ],
44272        "responses": {
44273          "200": {
44274            "description": "OK",
44275            "schema": {
44276              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44277            }
44278          },
44279          "401": {
44280            "description": "Unauthorized"
44281          }
44282        },
44283        "schemes": [
44284          "https"
44285        ],
44286        "tags": [
44287          "apiregistration_v1beta1"
44288        ],
44289        "x-kubernetes-action": "patch",
44290        "x-kubernetes-group-version-kind": {
44291          "group": "apiregistration.k8s.io",
44292          "kind": "APIService",
44293          "version": "v1beta1"
44294        }
44295      },
44296      "put": {
44297        "consumes": [
44298          "*/*"
44299        ],
44300        "description": "replace the specified APIService",
44301        "operationId": "replaceApiregistrationV1beta1APIService",
44302        "parameters": [
44303          {
44304            "in": "body",
44305            "name": "body",
44306            "required": true,
44307            "schema": {
44308              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44309            }
44310          },
44311          {
44312            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44313            "in": "query",
44314            "name": "dryRun",
44315            "type": "string",
44316            "uniqueItems": true
44317          },
44318          {
44319            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44320            "in": "query",
44321            "name": "fieldManager",
44322            "type": "string",
44323            "uniqueItems": true
44324          }
44325        ],
44326        "produces": [
44327          "application/json",
44328          "application/yaml",
44329          "application/vnd.kubernetes.protobuf"
44330        ],
44331        "responses": {
44332          "200": {
44333            "description": "OK",
44334            "schema": {
44335              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44336            }
44337          },
44338          "201": {
44339            "description": "Created",
44340            "schema": {
44341              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44342            }
44343          },
44344          "401": {
44345            "description": "Unauthorized"
44346          }
44347        },
44348        "schemes": [
44349          "https"
44350        ],
44351        "tags": [
44352          "apiregistration_v1beta1"
44353        ],
44354        "x-kubernetes-action": "put",
44355        "x-kubernetes-group-version-kind": {
44356          "group": "apiregistration.k8s.io",
44357          "kind": "APIService",
44358          "version": "v1beta1"
44359        }
44360      }
44361    },
44362    "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status": {
44363      "get": {
44364        "consumes": [
44365          "*/*"
44366        ],
44367        "description": "read status of the specified APIService",
44368        "operationId": "readApiregistrationV1beta1APIServiceStatus",
44369        "produces": [
44370          "application/json",
44371          "application/yaml",
44372          "application/vnd.kubernetes.protobuf"
44373        ],
44374        "responses": {
44375          "200": {
44376            "description": "OK",
44377            "schema": {
44378              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44379            }
44380          },
44381          "401": {
44382            "description": "Unauthorized"
44383          }
44384        },
44385        "schemes": [
44386          "https"
44387        ],
44388        "tags": [
44389          "apiregistration_v1beta1"
44390        ],
44391        "x-kubernetes-action": "get",
44392        "x-kubernetes-group-version-kind": {
44393          "group": "apiregistration.k8s.io",
44394          "kind": "APIService",
44395          "version": "v1beta1"
44396        }
44397      },
44398      "parameters": [
44399        {
44400          "description": "name of the APIService",
44401          "in": "path",
44402          "name": "name",
44403          "required": true,
44404          "type": "string",
44405          "uniqueItems": true
44406        },
44407        {
44408          "description": "If 'true', then the output is pretty printed.",
44409          "in": "query",
44410          "name": "pretty",
44411          "type": "string",
44412          "uniqueItems": true
44413        }
44414      ],
44415      "patch": {
44416        "consumes": [
44417          "application/json-patch+json",
44418          "application/merge-patch+json",
44419          "application/strategic-merge-patch+json"
44420        ],
44421        "description": "partially update status of the specified APIService",
44422        "operationId": "patchApiregistrationV1beta1APIServiceStatus",
44423        "parameters": [
44424          {
44425            "in": "body",
44426            "name": "body",
44427            "required": true,
44428            "schema": {
44429              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
44430            }
44431          },
44432          {
44433            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44434            "in": "query",
44435            "name": "dryRun",
44436            "type": "string",
44437            "uniqueItems": true
44438          },
44439          {
44440            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
44441            "in": "query",
44442            "name": "fieldManager",
44443            "type": "string",
44444            "uniqueItems": true
44445          },
44446          {
44447            "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.",
44448            "in": "query",
44449            "name": "force",
44450            "type": "boolean",
44451            "uniqueItems": true
44452          }
44453        ],
44454        "produces": [
44455          "application/json",
44456          "application/yaml",
44457          "application/vnd.kubernetes.protobuf"
44458        ],
44459        "responses": {
44460          "200": {
44461            "description": "OK",
44462            "schema": {
44463              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44464            }
44465          },
44466          "401": {
44467            "description": "Unauthorized"
44468          }
44469        },
44470        "schemes": [
44471          "https"
44472        ],
44473        "tags": [
44474          "apiregistration_v1beta1"
44475        ],
44476        "x-kubernetes-action": "patch",
44477        "x-kubernetes-group-version-kind": {
44478          "group": "apiregistration.k8s.io",
44479          "kind": "APIService",
44480          "version": "v1beta1"
44481        }
44482      },
44483      "put": {
44484        "consumes": [
44485          "*/*"
44486        ],
44487        "description": "replace status of the specified APIService",
44488        "operationId": "replaceApiregistrationV1beta1APIServiceStatus",
44489        "parameters": [
44490          {
44491            "in": "body",
44492            "name": "body",
44493            "required": true,
44494            "schema": {
44495              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44496            }
44497          },
44498          {
44499            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
44500            "in": "query",
44501            "name": "dryRun",
44502            "type": "string",
44503            "uniqueItems": true
44504          },
44505          {
44506            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
44507            "in": "query",
44508            "name": "fieldManager",
44509            "type": "string",
44510            "uniqueItems": true
44511          }
44512        ],
44513        "produces": [
44514          "application/json",
44515          "application/yaml",
44516          "application/vnd.kubernetes.protobuf"
44517        ],
44518        "responses": {
44519          "200": {
44520            "description": "OK",
44521            "schema": {
44522              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44523            }
44524          },
44525          "201": {
44526            "description": "Created",
44527            "schema": {
44528              "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService"
44529            }
44530          },
44531          "401": {
44532            "description": "Unauthorized"
44533          }
44534        },
44535        "schemes": [
44536          "https"
44537        ],
44538        "tags": [
44539          "apiregistration_v1beta1"
44540        ],
44541        "x-kubernetes-action": "put",
44542        "x-kubernetes-group-version-kind": {
44543          "group": "apiregistration.k8s.io",
44544          "kind": "APIService",
44545          "version": "v1beta1"
44546        }
44547      }
44548    },
44549    "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices": {
44550      "get": {
44551        "consumes": [
44552          "*/*"
44553        ],
44554        "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.",
44555        "operationId": "watchApiregistrationV1beta1APIServiceList",
44556        "produces": [
44557          "application/json",
44558          "application/yaml",
44559          "application/vnd.kubernetes.protobuf",
44560          "application/json;stream=watch",
44561          "application/vnd.kubernetes.protobuf;stream=watch"
44562        ],
44563        "responses": {
44564          "200": {
44565            "description": "OK",
44566            "schema": {
44567              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
44568            }
44569          },
44570          "401": {
44571            "description": "Unauthorized"
44572          }
44573        },
44574        "schemes": [
44575          "https"
44576        ],
44577        "tags": [
44578          "apiregistration_v1beta1"
44579        ],
44580        "x-kubernetes-action": "watchlist",
44581        "x-kubernetes-group-version-kind": {
44582          "group": "apiregistration.k8s.io",
44583          "kind": "APIService",
44584          "version": "v1beta1"
44585        }
44586      },
44587      "parameters": [
44588        {
44589          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
44590          "in": "query",
44591          "name": "allowWatchBookmarks",
44592          "type": "boolean",
44593          "uniqueItems": true
44594        },
44595        {
44596          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44597          "in": "query",
44598          "name": "continue",
44599          "type": "string",
44600          "uniqueItems": true
44601        },
44602        {
44603          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44604          "in": "query",
44605          "name": "fieldSelector",
44606          "type": "string",
44607          "uniqueItems": true
44608        },
44609        {
44610          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44611          "in": "query",
44612          "name": "labelSelector",
44613          "type": "string",
44614          "uniqueItems": true
44615        },
44616        {
44617          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44618          "in": "query",
44619          "name": "limit",
44620          "type": "integer",
44621          "uniqueItems": true
44622        },
44623        {
44624          "description": "If 'true', then the output is pretty printed.",
44625          "in": "query",
44626          "name": "pretty",
44627          "type": "string",
44628          "uniqueItems": true
44629        },
44630        {
44631          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
44632          "in": "query",
44633          "name": "resourceVersion",
44634          "type": "string",
44635          "uniqueItems": true
44636        },
44637        {
44638          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44639          "in": "query",
44640          "name": "timeoutSeconds",
44641          "type": "integer",
44642          "uniqueItems": true
44643        },
44644        {
44645          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44646          "in": "query",
44647          "name": "watch",
44648          "type": "boolean",
44649          "uniqueItems": true
44650        }
44651      ]
44652    },
44653    "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/{name}": {
44654      "get": {
44655        "consumes": [
44656          "*/*"
44657        ],
44658        "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.",
44659        "operationId": "watchApiregistrationV1beta1APIService",
44660        "produces": [
44661          "application/json",
44662          "application/yaml",
44663          "application/vnd.kubernetes.protobuf",
44664          "application/json;stream=watch",
44665          "application/vnd.kubernetes.protobuf;stream=watch"
44666        ],
44667        "responses": {
44668          "200": {
44669            "description": "OK",
44670            "schema": {
44671              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
44672            }
44673          },
44674          "401": {
44675            "description": "Unauthorized"
44676          }
44677        },
44678        "schemes": [
44679          "https"
44680        ],
44681        "tags": [
44682          "apiregistration_v1beta1"
44683        ],
44684        "x-kubernetes-action": "watch",
44685        "x-kubernetes-group-version-kind": {
44686          "group": "apiregistration.k8s.io",
44687          "kind": "APIService",
44688          "version": "v1beta1"
44689        }
44690      },
44691      "parameters": [
44692        {
44693          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
44694          "in": "query",
44695          "name": "allowWatchBookmarks",
44696          "type": "boolean",
44697          "uniqueItems": true
44698        },
44699        {
44700          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44701          "in": "query",
44702          "name": "continue",
44703          "type": "string",
44704          "uniqueItems": true
44705        },
44706        {
44707          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44708          "in": "query",
44709          "name": "fieldSelector",
44710          "type": "string",
44711          "uniqueItems": true
44712        },
44713        {
44714          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44715          "in": "query",
44716          "name": "labelSelector",
44717          "type": "string",
44718          "uniqueItems": true
44719        },
44720        {
44721          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44722          "in": "query",
44723          "name": "limit",
44724          "type": "integer",
44725          "uniqueItems": true
44726        },
44727        {
44728          "description": "name of the APIService",
44729          "in": "path",
44730          "name": "name",
44731          "required": true,
44732          "type": "string",
44733          "uniqueItems": true
44734        },
44735        {
44736          "description": "If 'true', then the output is pretty printed.",
44737          "in": "query",
44738          "name": "pretty",
44739          "type": "string",
44740          "uniqueItems": true
44741        },
44742        {
44743          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
44744          "in": "query",
44745          "name": "resourceVersion",
44746          "type": "string",
44747          "uniqueItems": true
44748        },
44749        {
44750          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44751          "in": "query",
44752          "name": "timeoutSeconds",
44753          "type": "integer",
44754          "uniqueItems": true
44755        },
44756        {
44757          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44758          "in": "query",
44759          "name": "watch",
44760          "type": "boolean",
44761          "uniqueItems": true
44762        }
44763      ]
44764    },
44765    "/apis/apps/": {
44766      "get": {
44767        "consumes": [
44768          "application/json",
44769          "application/yaml",
44770          "application/vnd.kubernetes.protobuf"
44771        ],
44772        "description": "get information of a group",
44773        "operationId": "getAppsAPIGroup",
44774        "produces": [
44775          "application/json",
44776          "application/yaml",
44777          "application/vnd.kubernetes.protobuf"
44778        ],
44779        "responses": {
44780          "200": {
44781            "description": "OK",
44782            "schema": {
44783              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
44784            }
44785          },
44786          "401": {
44787            "description": "Unauthorized"
44788          }
44789        },
44790        "schemes": [
44791          "https"
44792        ],
44793        "tags": [
44794          "apps"
44795        ]
44796      }
44797    },
44798    "/apis/apps/v1/": {
44799      "get": {
44800        "consumes": [
44801          "application/json",
44802          "application/yaml",
44803          "application/vnd.kubernetes.protobuf"
44804        ],
44805        "description": "get available resources",
44806        "operationId": "getAppsV1APIResources",
44807        "produces": [
44808          "application/json",
44809          "application/yaml",
44810          "application/vnd.kubernetes.protobuf"
44811        ],
44812        "responses": {
44813          "200": {
44814            "description": "OK",
44815            "schema": {
44816              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
44817            }
44818          },
44819          "401": {
44820            "description": "Unauthorized"
44821          }
44822        },
44823        "schemes": [
44824          "https"
44825        ],
44826        "tags": [
44827          "apps_v1"
44828        ]
44829      }
44830    },
44831    "/apis/apps/v1/controllerrevisions": {
44832      "get": {
44833        "consumes": [
44834          "*/*"
44835        ],
44836        "description": "list or watch objects of kind ControllerRevision",
44837        "operationId": "listAppsV1ControllerRevisionForAllNamespaces",
44838        "produces": [
44839          "application/json",
44840          "application/yaml",
44841          "application/vnd.kubernetes.protobuf",
44842          "application/json;stream=watch",
44843          "application/vnd.kubernetes.protobuf;stream=watch"
44844        ],
44845        "responses": {
44846          "200": {
44847            "description": "OK",
44848            "schema": {
44849              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
44850            }
44851          },
44852          "401": {
44853            "description": "Unauthorized"
44854          }
44855        },
44856        "schemes": [
44857          "https"
44858        ],
44859        "tags": [
44860          "apps_v1"
44861        ],
44862        "x-kubernetes-action": "list",
44863        "x-kubernetes-group-version-kind": {
44864          "group": "apps",
44865          "kind": "ControllerRevision",
44866          "version": "v1"
44867        }
44868      },
44869      "parameters": [
44870        {
44871          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
44872          "in": "query",
44873          "name": "allowWatchBookmarks",
44874          "type": "boolean",
44875          "uniqueItems": true
44876        },
44877        {
44878          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44879          "in": "query",
44880          "name": "continue",
44881          "type": "string",
44882          "uniqueItems": true
44883        },
44884        {
44885          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44886          "in": "query",
44887          "name": "fieldSelector",
44888          "type": "string",
44889          "uniqueItems": true
44890        },
44891        {
44892          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44893          "in": "query",
44894          "name": "labelSelector",
44895          "type": "string",
44896          "uniqueItems": true
44897        },
44898        {
44899          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
44900          "in": "query",
44901          "name": "limit",
44902          "type": "integer",
44903          "uniqueItems": true
44904        },
44905        {
44906          "description": "If 'true', then the output is pretty printed.",
44907          "in": "query",
44908          "name": "pretty",
44909          "type": "string",
44910          "uniqueItems": true
44911        },
44912        {
44913          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
44914          "in": "query",
44915          "name": "resourceVersion",
44916          "type": "string",
44917          "uniqueItems": true
44918        },
44919        {
44920          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
44921          "in": "query",
44922          "name": "timeoutSeconds",
44923          "type": "integer",
44924          "uniqueItems": true
44925        },
44926        {
44927          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
44928          "in": "query",
44929          "name": "watch",
44930          "type": "boolean",
44931          "uniqueItems": true
44932        }
44933      ]
44934    },
44935    "/apis/apps/v1/daemonsets": {
44936      "get": {
44937        "consumes": [
44938          "*/*"
44939        ],
44940        "description": "list or watch objects of kind DaemonSet",
44941        "operationId": "listAppsV1DaemonSetForAllNamespaces",
44942        "produces": [
44943          "application/json",
44944          "application/yaml",
44945          "application/vnd.kubernetes.protobuf",
44946          "application/json;stream=watch",
44947          "application/vnd.kubernetes.protobuf;stream=watch"
44948        ],
44949        "responses": {
44950          "200": {
44951            "description": "OK",
44952            "schema": {
44953              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
44954            }
44955          },
44956          "401": {
44957            "description": "Unauthorized"
44958          }
44959        },
44960        "schemes": [
44961          "https"
44962        ],
44963        "tags": [
44964          "apps_v1"
44965        ],
44966        "x-kubernetes-action": "list",
44967        "x-kubernetes-group-version-kind": {
44968          "group": "apps",
44969          "kind": "DaemonSet",
44970          "version": "v1"
44971        }
44972      },
44973      "parameters": [
44974        {
44975          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
44976          "in": "query",
44977          "name": "allowWatchBookmarks",
44978          "type": "boolean",
44979          "uniqueItems": true
44980        },
44981        {
44982          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
44983          "in": "query",
44984          "name": "continue",
44985          "type": "string",
44986          "uniqueItems": true
44987        },
44988        {
44989          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
44990          "in": "query",
44991          "name": "fieldSelector",
44992          "type": "string",
44993          "uniqueItems": true
44994        },
44995        {
44996          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
44997          "in": "query",
44998          "name": "labelSelector",
44999          "type": "string",
45000          "uniqueItems": true
45001        },
45002        {
45003          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45004          "in": "query",
45005          "name": "limit",
45006          "type": "integer",
45007          "uniqueItems": true
45008        },
45009        {
45010          "description": "If 'true', then the output is pretty printed.",
45011          "in": "query",
45012          "name": "pretty",
45013          "type": "string",
45014          "uniqueItems": true
45015        },
45016        {
45017          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
45018          "in": "query",
45019          "name": "resourceVersion",
45020          "type": "string",
45021          "uniqueItems": true
45022        },
45023        {
45024          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45025          "in": "query",
45026          "name": "timeoutSeconds",
45027          "type": "integer",
45028          "uniqueItems": true
45029        },
45030        {
45031          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45032          "in": "query",
45033          "name": "watch",
45034          "type": "boolean",
45035          "uniqueItems": true
45036        }
45037      ]
45038    },
45039    "/apis/apps/v1/deployments": {
45040      "get": {
45041        "consumes": [
45042          "*/*"
45043        ],
45044        "description": "list or watch objects of kind Deployment",
45045        "operationId": "listAppsV1DeploymentForAllNamespaces",
45046        "produces": [
45047          "application/json",
45048          "application/yaml",
45049          "application/vnd.kubernetes.protobuf",
45050          "application/json;stream=watch",
45051          "application/vnd.kubernetes.protobuf;stream=watch"
45052        ],
45053        "responses": {
45054          "200": {
45055            "description": "OK",
45056            "schema": {
45057              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
45058            }
45059          },
45060          "401": {
45061            "description": "Unauthorized"
45062          }
45063        },
45064        "schemes": [
45065          "https"
45066        ],
45067        "tags": [
45068          "apps_v1"
45069        ],
45070        "x-kubernetes-action": "list",
45071        "x-kubernetes-group-version-kind": {
45072          "group": "apps",
45073          "kind": "Deployment",
45074          "version": "v1"
45075        }
45076      },
45077      "parameters": [
45078        {
45079          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
45080          "in": "query",
45081          "name": "allowWatchBookmarks",
45082          "type": "boolean",
45083          "uniqueItems": true
45084        },
45085        {
45086          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45087          "in": "query",
45088          "name": "continue",
45089          "type": "string",
45090          "uniqueItems": true
45091        },
45092        {
45093          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45094          "in": "query",
45095          "name": "fieldSelector",
45096          "type": "string",
45097          "uniqueItems": true
45098        },
45099        {
45100          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45101          "in": "query",
45102          "name": "labelSelector",
45103          "type": "string",
45104          "uniqueItems": true
45105        },
45106        {
45107          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45108          "in": "query",
45109          "name": "limit",
45110          "type": "integer",
45111          "uniqueItems": true
45112        },
45113        {
45114          "description": "If 'true', then the output is pretty printed.",
45115          "in": "query",
45116          "name": "pretty",
45117          "type": "string",
45118          "uniqueItems": true
45119        },
45120        {
45121          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
45122          "in": "query",
45123          "name": "resourceVersion",
45124          "type": "string",
45125          "uniqueItems": true
45126        },
45127        {
45128          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45129          "in": "query",
45130          "name": "timeoutSeconds",
45131          "type": "integer",
45132          "uniqueItems": true
45133        },
45134        {
45135          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45136          "in": "query",
45137          "name": "watch",
45138          "type": "boolean",
45139          "uniqueItems": true
45140        }
45141      ]
45142    },
45143    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": {
45144      "delete": {
45145        "consumes": [
45146          "*/*"
45147        ],
45148        "description": "delete collection of ControllerRevision",
45149        "operationId": "deleteAppsV1CollectionNamespacedControllerRevision",
45150        "parameters": [
45151          {
45152            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
45153            "in": "query",
45154            "name": "allowWatchBookmarks",
45155            "type": "boolean",
45156            "uniqueItems": true
45157          },
45158          {
45159            "in": "body",
45160            "name": "body",
45161            "schema": {
45162              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45163            }
45164          },
45165          {
45166            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45167            "in": "query",
45168            "name": "continue",
45169            "type": "string",
45170            "uniqueItems": true
45171          },
45172          {
45173            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45174            "in": "query",
45175            "name": "dryRun",
45176            "type": "string",
45177            "uniqueItems": true
45178          },
45179          {
45180            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45181            "in": "query",
45182            "name": "fieldSelector",
45183            "type": "string",
45184            "uniqueItems": true
45185          },
45186          {
45187            "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.",
45188            "in": "query",
45189            "name": "gracePeriodSeconds",
45190            "type": "integer",
45191            "uniqueItems": true
45192          },
45193          {
45194            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45195            "in": "query",
45196            "name": "labelSelector",
45197            "type": "string",
45198            "uniqueItems": true
45199          },
45200          {
45201            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45202            "in": "query",
45203            "name": "limit",
45204            "type": "integer",
45205            "uniqueItems": true
45206          },
45207          {
45208            "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.",
45209            "in": "query",
45210            "name": "orphanDependents",
45211            "type": "boolean",
45212            "uniqueItems": true
45213          },
45214          {
45215            "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.",
45216            "in": "query",
45217            "name": "propagationPolicy",
45218            "type": "string",
45219            "uniqueItems": true
45220          },
45221          {
45222            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
45223            "in": "query",
45224            "name": "resourceVersion",
45225            "type": "string",
45226            "uniqueItems": true
45227          },
45228          {
45229            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45230            "in": "query",
45231            "name": "timeoutSeconds",
45232            "type": "integer",
45233            "uniqueItems": true
45234          },
45235          {
45236            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45237            "in": "query",
45238            "name": "watch",
45239            "type": "boolean",
45240            "uniqueItems": true
45241          }
45242        ],
45243        "produces": [
45244          "application/json",
45245          "application/yaml",
45246          "application/vnd.kubernetes.protobuf"
45247        ],
45248        "responses": {
45249          "200": {
45250            "description": "OK",
45251            "schema": {
45252              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45253            }
45254          },
45255          "401": {
45256            "description": "Unauthorized"
45257          }
45258        },
45259        "schemes": [
45260          "https"
45261        ],
45262        "tags": [
45263          "apps_v1"
45264        ],
45265        "x-kubernetes-action": "deletecollection",
45266        "x-kubernetes-group-version-kind": {
45267          "group": "apps",
45268          "kind": "ControllerRevision",
45269          "version": "v1"
45270        }
45271      },
45272      "get": {
45273        "consumes": [
45274          "*/*"
45275        ],
45276        "description": "list or watch objects of kind ControllerRevision",
45277        "operationId": "listAppsV1NamespacedControllerRevision",
45278        "parameters": [
45279          {
45280            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
45281            "in": "query",
45282            "name": "allowWatchBookmarks",
45283            "type": "boolean",
45284            "uniqueItems": true
45285          },
45286          {
45287            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45288            "in": "query",
45289            "name": "continue",
45290            "type": "string",
45291            "uniqueItems": true
45292          },
45293          {
45294            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45295            "in": "query",
45296            "name": "fieldSelector",
45297            "type": "string",
45298            "uniqueItems": true
45299          },
45300          {
45301            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45302            "in": "query",
45303            "name": "labelSelector",
45304            "type": "string",
45305            "uniqueItems": true
45306          },
45307          {
45308            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45309            "in": "query",
45310            "name": "limit",
45311            "type": "integer",
45312            "uniqueItems": true
45313          },
45314          {
45315            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
45316            "in": "query",
45317            "name": "resourceVersion",
45318            "type": "string",
45319            "uniqueItems": true
45320          },
45321          {
45322            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45323            "in": "query",
45324            "name": "timeoutSeconds",
45325            "type": "integer",
45326            "uniqueItems": true
45327          },
45328          {
45329            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45330            "in": "query",
45331            "name": "watch",
45332            "type": "boolean",
45333            "uniqueItems": true
45334          }
45335        ],
45336        "produces": [
45337          "application/json",
45338          "application/yaml",
45339          "application/vnd.kubernetes.protobuf",
45340          "application/json;stream=watch",
45341          "application/vnd.kubernetes.protobuf;stream=watch"
45342        ],
45343        "responses": {
45344          "200": {
45345            "description": "OK",
45346            "schema": {
45347              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevisionList"
45348            }
45349          },
45350          "401": {
45351            "description": "Unauthorized"
45352          }
45353        },
45354        "schemes": [
45355          "https"
45356        ],
45357        "tags": [
45358          "apps_v1"
45359        ],
45360        "x-kubernetes-action": "list",
45361        "x-kubernetes-group-version-kind": {
45362          "group": "apps",
45363          "kind": "ControllerRevision",
45364          "version": "v1"
45365        }
45366      },
45367      "parameters": [
45368        {
45369          "description": "object name and auth scope, such as for teams and projects",
45370          "in": "path",
45371          "name": "namespace",
45372          "required": true,
45373          "type": "string",
45374          "uniqueItems": true
45375        },
45376        {
45377          "description": "If 'true', then the output is pretty printed.",
45378          "in": "query",
45379          "name": "pretty",
45380          "type": "string",
45381          "uniqueItems": true
45382        }
45383      ],
45384      "post": {
45385        "consumes": [
45386          "*/*"
45387        ],
45388        "description": "create a ControllerRevision",
45389        "operationId": "createAppsV1NamespacedControllerRevision",
45390        "parameters": [
45391          {
45392            "in": "body",
45393            "name": "body",
45394            "required": true,
45395            "schema": {
45396              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45397            }
45398          },
45399          {
45400            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45401            "in": "query",
45402            "name": "dryRun",
45403            "type": "string",
45404            "uniqueItems": true
45405          },
45406          {
45407            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45408            "in": "query",
45409            "name": "fieldManager",
45410            "type": "string",
45411            "uniqueItems": true
45412          }
45413        ],
45414        "produces": [
45415          "application/json",
45416          "application/yaml",
45417          "application/vnd.kubernetes.protobuf"
45418        ],
45419        "responses": {
45420          "200": {
45421            "description": "OK",
45422            "schema": {
45423              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45424            }
45425          },
45426          "201": {
45427            "description": "Created",
45428            "schema": {
45429              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45430            }
45431          },
45432          "202": {
45433            "description": "Accepted",
45434            "schema": {
45435              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45436            }
45437          },
45438          "401": {
45439            "description": "Unauthorized"
45440          }
45441        },
45442        "schemes": [
45443          "https"
45444        ],
45445        "tags": [
45446          "apps_v1"
45447        ],
45448        "x-kubernetes-action": "post",
45449        "x-kubernetes-group-version-kind": {
45450          "group": "apps",
45451          "kind": "ControllerRevision",
45452          "version": "v1"
45453        }
45454      }
45455    },
45456    "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": {
45457      "delete": {
45458        "consumes": [
45459          "*/*"
45460        ],
45461        "description": "delete a ControllerRevision",
45462        "operationId": "deleteAppsV1NamespacedControllerRevision",
45463        "parameters": [
45464          {
45465            "in": "body",
45466            "name": "body",
45467            "schema": {
45468              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45469            }
45470          },
45471          {
45472            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45473            "in": "query",
45474            "name": "dryRun",
45475            "type": "string",
45476            "uniqueItems": true
45477          },
45478          {
45479            "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.",
45480            "in": "query",
45481            "name": "gracePeriodSeconds",
45482            "type": "integer",
45483            "uniqueItems": true
45484          },
45485          {
45486            "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.",
45487            "in": "query",
45488            "name": "orphanDependents",
45489            "type": "boolean",
45490            "uniqueItems": true
45491          },
45492          {
45493            "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.",
45494            "in": "query",
45495            "name": "propagationPolicy",
45496            "type": "string",
45497            "uniqueItems": true
45498          }
45499        ],
45500        "produces": [
45501          "application/json",
45502          "application/yaml",
45503          "application/vnd.kubernetes.protobuf"
45504        ],
45505        "responses": {
45506          "200": {
45507            "description": "OK",
45508            "schema": {
45509              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45510            }
45511          },
45512          "202": {
45513            "description": "Accepted",
45514            "schema": {
45515              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45516            }
45517          },
45518          "401": {
45519            "description": "Unauthorized"
45520          }
45521        },
45522        "schemes": [
45523          "https"
45524        ],
45525        "tags": [
45526          "apps_v1"
45527        ],
45528        "x-kubernetes-action": "delete",
45529        "x-kubernetes-group-version-kind": {
45530          "group": "apps",
45531          "kind": "ControllerRevision",
45532          "version": "v1"
45533        }
45534      },
45535      "get": {
45536        "consumes": [
45537          "*/*"
45538        ],
45539        "description": "read the specified ControllerRevision",
45540        "operationId": "readAppsV1NamespacedControllerRevision",
45541        "parameters": [
45542          {
45543            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
45544            "in": "query",
45545            "name": "exact",
45546            "type": "boolean",
45547            "uniqueItems": true
45548          },
45549          {
45550            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
45551            "in": "query",
45552            "name": "export",
45553            "type": "boolean",
45554            "uniqueItems": true
45555          }
45556        ],
45557        "produces": [
45558          "application/json",
45559          "application/yaml",
45560          "application/vnd.kubernetes.protobuf"
45561        ],
45562        "responses": {
45563          "200": {
45564            "description": "OK",
45565            "schema": {
45566              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45567            }
45568          },
45569          "401": {
45570            "description": "Unauthorized"
45571          }
45572        },
45573        "schemes": [
45574          "https"
45575        ],
45576        "tags": [
45577          "apps_v1"
45578        ],
45579        "x-kubernetes-action": "get",
45580        "x-kubernetes-group-version-kind": {
45581          "group": "apps",
45582          "kind": "ControllerRevision",
45583          "version": "v1"
45584        }
45585      },
45586      "parameters": [
45587        {
45588          "description": "name of the ControllerRevision",
45589          "in": "path",
45590          "name": "name",
45591          "required": true,
45592          "type": "string",
45593          "uniqueItems": true
45594        },
45595        {
45596          "description": "object name and auth scope, such as for teams and projects",
45597          "in": "path",
45598          "name": "namespace",
45599          "required": true,
45600          "type": "string",
45601          "uniqueItems": true
45602        },
45603        {
45604          "description": "If 'true', then the output is pretty printed.",
45605          "in": "query",
45606          "name": "pretty",
45607          "type": "string",
45608          "uniqueItems": true
45609        }
45610      ],
45611      "patch": {
45612        "consumes": [
45613          "application/json-patch+json",
45614          "application/merge-patch+json",
45615          "application/strategic-merge-patch+json"
45616        ],
45617        "description": "partially update the specified ControllerRevision",
45618        "operationId": "patchAppsV1NamespacedControllerRevision",
45619        "parameters": [
45620          {
45621            "in": "body",
45622            "name": "body",
45623            "required": true,
45624            "schema": {
45625              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
45626            }
45627          },
45628          {
45629            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45630            "in": "query",
45631            "name": "dryRun",
45632            "type": "string",
45633            "uniqueItems": true
45634          },
45635          {
45636            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
45637            "in": "query",
45638            "name": "fieldManager",
45639            "type": "string",
45640            "uniqueItems": true
45641          },
45642          {
45643            "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.",
45644            "in": "query",
45645            "name": "force",
45646            "type": "boolean",
45647            "uniqueItems": true
45648          }
45649        ],
45650        "produces": [
45651          "application/json",
45652          "application/yaml",
45653          "application/vnd.kubernetes.protobuf"
45654        ],
45655        "responses": {
45656          "200": {
45657            "description": "OK",
45658            "schema": {
45659              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45660            }
45661          },
45662          "401": {
45663            "description": "Unauthorized"
45664          }
45665        },
45666        "schemes": [
45667          "https"
45668        ],
45669        "tags": [
45670          "apps_v1"
45671        ],
45672        "x-kubernetes-action": "patch",
45673        "x-kubernetes-group-version-kind": {
45674          "group": "apps",
45675          "kind": "ControllerRevision",
45676          "version": "v1"
45677        }
45678      },
45679      "put": {
45680        "consumes": [
45681          "*/*"
45682        ],
45683        "description": "replace the specified ControllerRevision",
45684        "operationId": "replaceAppsV1NamespacedControllerRevision",
45685        "parameters": [
45686          {
45687            "in": "body",
45688            "name": "body",
45689            "required": true,
45690            "schema": {
45691              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45692            }
45693          },
45694          {
45695            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45696            "in": "query",
45697            "name": "dryRun",
45698            "type": "string",
45699            "uniqueItems": true
45700          },
45701          {
45702            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
45703            "in": "query",
45704            "name": "fieldManager",
45705            "type": "string",
45706            "uniqueItems": true
45707          }
45708        ],
45709        "produces": [
45710          "application/json",
45711          "application/yaml",
45712          "application/vnd.kubernetes.protobuf"
45713        ],
45714        "responses": {
45715          "200": {
45716            "description": "OK",
45717            "schema": {
45718              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45719            }
45720          },
45721          "201": {
45722            "description": "Created",
45723            "schema": {
45724              "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision"
45725            }
45726          },
45727          "401": {
45728            "description": "Unauthorized"
45729          }
45730        },
45731        "schemes": [
45732          "https"
45733        ],
45734        "tags": [
45735          "apps_v1"
45736        ],
45737        "x-kubernetes-action": "put",
45738        "x-kubernetes-group-version-kind": {
45739          "group": "apps",
45740          "kind": "ControllerRevision",
45741          "version": "v1"
45742        }
45743      }
45744    },
45745    "/apis/apps/v1/namespaces/{namespace}/daemonsets": {
45746      "delete": {
45747        "consumes": [
45748          "*/*"
45749        ],
45750        "description": "delete collection of DaemonSet",
45751        "operationId": "deleteAppsV1CollectionNamespacedDaemonSet",
45752        "parameters": [
45753          {
45754            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
45755            "in": "query",
45756            "name": "allowWatchBookmarks",
45757            "type": "boolean",
45758            "uniqueItems": true
45759          },
45760          {
45761            "in": "body",
45762            "name": "body",
45763            "schema": {
45764              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
45765            }
45766          },
45767          {
45768            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45769            "in": "query",
45770            "name": "continue",
45771            "type": "string",
45772            "uniqueItems": true
45773          },
45774          {
45775            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
45776            "in": "query",
45777            "name": "dryRun",
45778            "type": "string",
45779            "uniqueItems": true
45780          },
45781          {
45782            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45783            "in": "query",
45784            "name": "fieldSelector",
45785            "type": "string",
45786            "uniqueItems": true
45787          },
45788          {
45789            "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.",
45790            "in": "query",
45791            "name": "gracePeriodSeconds",
45792            "type": "integer",
45793            "uniqueItems": true
45794          },
45795          {
45796            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45797            "in": "query",
45798            "name": "labelSelector",
45799            "type": "string",
45800            "uniqueItems": true
45801          },
45802          {
45803            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45804            "in": "query",
45805            "name": "limit",
45806            "type": "integer",
45807            "uniqueItems": true
45808          },
45809          {
45810            "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.",
45811            "in": "query",
45812            "name": "orphanDependents",
45813            "type": "boolean",
45814            "uniqueItems": true
45815          },
45816          {
45817            "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.",
45818            "in": "query",
45819            "name": "propagationPolicy",
45820            "type": "string",
45821            "uniqueItems": true
45822          },
45823          {
45824            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
45825            "in": "query",
45826            "name": "resourceVersion",
45827            "type": "string",
45828            "uniqueItems": true
45829          },
45830          {
45831            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45832            "in": "query",
45833            "name": "timeoutSeconds",
45834            "type": "integer",
45835            "uniqueItems": true
45836          },
45837          {
45838            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45839            "in": "query",
45840            "name": "watch",
45841            "type": "boolean",
45842            "uniqueItems": true
45843          }
45844        ],
45845        "produces": [
45846          "application/json",
45847          "application/yaml",
45848          "application/vnd.kubernetes.protobuf"
45849        ],
45850        "responses": {
45851          "200": {
45852            "description": "OK",
45853            "schema": {
45854              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
45855            }
45856          },
45857          "401": {
45858            "description": "Unauthorized"
45859          }
45860        },
45861        "schemes": [
45862          "https"
45863        ],
45864        "tags": [
45865          "apps_v1"
45866        ],
45867        "x-kubernetes-action": "deletecollection",
45868        "x-kubernetes-group-version-kind": {
45869          "group": "apps",
45870          "kind": "DaemonSet",
45871          "version": "v1"
45872        }
45873      },
45874      "get": {
45875        "consumes": [
45876          "*/*"
45877        ],
45878        "description": "list or watch objects of kind DaemonSet",
45879        "operationId": "listAppsV1NamespacedDaemonSet",
45880        "parameters": [
45881          {
45882            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
45883            "in": "query",
45884            "name": "allowWatchBookmarks",
45885            "type": "boolean",
45886            "uniqueItems": true
45887          },
45888          {
45889            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
45890            "in": "query",
45891            "name": "continue",
45892            "type": "string",
45893            "uniqueItems": true
45894          },
45895          {
45896            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
45897            "in": "query",
45898            "name": "fieldSelector",
45899            "type": "string",
45900            "uniqueItems": true
45901          },
45902          {
45903            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
45904            "in": "query",
45905            "name": "labelSelector",
45906            "type": "string",
45907            "uniqueItems": true
45908          },
45909          {
45910            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
45911            "in": "query",
45912            "name": "limit",
45913            "type": "integer",
45914            "uniqueItems": true
45915          },
45916          {
45917            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
45918            "in": "query",
45919            "name": "resourceVersion",
45920            "type": "string",
45921            "uniqueItems": true
45922          },
45923          {
45924            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
45925            "in": "query",
45926            "name": "timeoutSeconds",
45927            "type": "integer",
45928            "uniqueItems": true
45929          },
45930          {
45931            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
45932            "in": "query",
45933            "name": "watch",
45934            "type": "boolean",
45935            "uniqueItems": true
45936          }
45937        ],
45938        "produces": [
45939          "application/json",
45940          "application/yaml",
45941          "application/vnd.kubernetes.protobuf",
45942          "application/json;stream=watch",
45943          "application/vnd.kubernetes.protobuf;stream=watch"
45944        ],
45945        "responses": {
45946          "200": {
45947            "description": "OK",
45948            "schema": {
45949              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSetList"
45950            }
45951          },
45952          "401": {
45953            "description": "Unauthorized"
45954          }
45955        },
45956        "schemes": [
45957          "https"
45958        ],
45959        "tags": [
45960          "apps_v1"
45961        ],
45962        "x-kubernetes-action": "list",
45963        "x-kubernetes-group-version-kind": {
45964          "group": "apps",
45965          "kind": "DaemonSet",
45966          "version": "v1"
45967        }
45968      },
45969      "parameters": [
45970        {
45971          "description": "object name and auth scope, such as for teams and projects",
45972          "in": "path",
45973          "name": "namespace",
45974          "required": true,
45975          "type": "string",
45976          "uniqueItems": true
45977        },
45978        {
45979          "description": "If 'true', then the output is pretty printed.",
45980          "in": "query",
45981          "name": "pretty",
45982          "type": "string",
45983          "uniqueItems": true
45984        }
45985      ],
45986      "post": {
45987        "consumes": [
45988          "*/*"
45989        ],
45990        "description": "create a DaemonSet",
45991        "operationId": "createAppsV1NamespacedDaemonSet",
45992        "parameters": [
45993          {
45994            "in": "body",
45995            "name": "body",
45996            "required": true,
45997            "schema": {
45998              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
45999            }
46000          },
46001          {
46002            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46003            "in": "query",
46004            "name": "dryRun",
46005            "type": "string",
46006            "uniqueItems": true
46007          },
46008          {
46009            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46010            "in": "query",
46011            "name": "fieldManager",
46012            "type": "string",
46013            "uniqueItems": true
46014          }
46015        ],
46016        "produces": [
46017          "application/json",
46018          "application/yaml",
46019          "application/vnd.kubernetes.protobuf"
46020        ],
46021        "responses": {
46022          "200": {
46023            "description": "OK",
46024            "schema": {
46025              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46026            }
46027          },
46028          "201": {
46029            "description": "Created",
46030            "schema": {
46031              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46032            }
46033          },
46034          "202": {
46035            "description": "Accepted",
46036            "schema": {
46037              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46038            }
46039          },
46040          "401": {
46041            "description": "Unauthorized"
46042          }
46043        },
46044        "schemes": [
46045          "https"
46046        ],
46047        "tags": [
46048          "apps_v1"
46049        ],
46050        "x-kubernetes-action": "post",
46051        "x-kubernetes-group-version-kind": {
46052          "group": "apps",
46053          "kind": "DaemonSet",
46054          "version": "v1"
46055        }
46056      }
46057    },
46058    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": {
46059      "delete": {
46060        "consumes": [
46061          "*/*"
46062        ],
46063        "description": "delete a DaemonSet",
46064        "operationId": "deleteAppsV1NamespacedDaemonSet",
46065        "parameters": [
46066          {
46067            "in": "body",
46068            "name": "body",
46069            "schema": {
46070              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
46071            }
46072          },
46073          {
46074            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46075            "in": "query",
46076            "name": "dryRun",
46077            "type": "string",
46078            "uniqueItems": true
46079          },
46080          {
46081            "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.",
46082            "in": "query",
46083            "name": "gracePeriodSeconds",
46084            "type": "integer",
46085            "uniqueItems": true
46086          },
46087          {
46088            "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.",
46089            "in": "query",
46090            "name": "orphanDependents",
46091            "type": "boolean",
46092            "uniqueItems": true
46093          },
46094          {
46095            "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.",
46096            "in": "query",
46097            "name": "propagationPolicy",
46098            "type": "string",
46099            "uniqueItems": true
46100          }
46101        ],
46102        "produces": [
46103          "application/json",
46104          "application/yaml",
46105          "application/vnd.kubernetes.protobuf"
46106        ],
46107        "responses": {
46108          "200": {
46109            "description": "OK",
46110            "schema": {
46111              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46112            }
46113          },
46114          "202": {
46115            "description": "Accepted",
46116            "schema": {
46117              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46118            }
46119          },
46120          "401": {
46121            "description": "Unauthorized"
46122          }
46123        },
46124        "schemes": [
46125          "https"
46126        ],
46127        "tags": [
46128          "apps_v1"
46129        ],
46130        "x-kubernetes-action": "delete",
46131        "x-kubernetes-group-version-kind": {
46132          "group": "apps",
46133          "kind": "DaemonSet",
46134          "version": "v1"
46135        }
46136      },
46137      "get": {
46138        "consumes": [
46139          "*/*"
46140        ],
46141        "description": "read the specified DaemonSet",
46142        "operationId": "readAppsV1NamespacedDaemonSet",
46143        "parameters": [
46144          {
46145            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
46146            "in": "query",
46147            "name": "exact",
46148            "type": "boolean",
46149            "uniqueItems": true
46150          },
46151          {
46152            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
46153            "in": "query",
46154            "name": "export",
46155            "type": "boolean",
46156            "uniqueItems": true
46157          }
46158        ],
46159        "produces": [
46160          "application/json",
46161          "application/yaml",
46162          "application/vnd.kubernetes.protobuf"
46163        ],
46164        "responses": {
46165          "200": {
46166            "description": "OK",
46167            "schema": {
46168              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46169            }
46170          },
46171          "401": {
46172            "description": "Unauthorized"
46173          }
46174        },
46175        "schemes": [
46176          "https"
46177        ],
46178        "tags": [
46179          "apps_v1"
46180        ],
46181        "x-kubernetes-action": "get",
46182        "x-kubernetes-group-version-kind": {
46183          "group": "apps",
46184          "kind": "DaemonSet",
46185          "version": "v1"
46186        }
46187      },
46188      "parameters": [
46189        {
46190          "description": "name of the DaemonSet",
46191          "in": "path",
46192          "name": "name",
46193          "required": true,
46194          "type": "string",
46195          "uniqueItems": true
46196        },
46197        {
46198          "description": "object name and auth scope, such as for teams and projects",
46199          "in": "path",
46200          "name": "namespace",
46201          "required": true,
46202          "type": "string",
46203          "uniqueItems": true
46204        },
46205        {
46206          "description": "If 'true', then the output is pretty printed.",
46207          "in": "query",
46208          "name": "pretty",
46209          "type": "string",
46210          "uniqueItems": true
46211        }
46212      ],
46213      "patch": {
46214        "consumes": [
46215          "application/json-patch+json",
46216          "application/merge-patch+json",
46217          "application/strategic-merge-patch+json"
46218        ],
46219        "description": "partially update the specified DaemonSet",
46220        "operationId": "patchAppsV1NamespacedDaemonSet",
46221        "parameters": [
46222          {
46223            "in": "body",
46224            "name": "body",
46225            "required": true,
46226            "schema": {
46227              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
46228            }
46229          },
46230          {
46231            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46232            "in": "query",
46233            "name": "dryRun",
46234            "type": "string",
46235            "uniqueItems": true
46236          },
46237          {
46238            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
46239            "in": "query",
46240            "name": "fieldManager",
46241            "type": "string",
46242            "uniqueItems": true
46243          },
46244          {
46245            "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.",
46246            "in": "query",
46247            "name": "force",
46248            "type": "boolean",
46249            "uniqueItems": true
46250          }
46251        ],
46252        "produces": [
46253          "application/json",
46254          "application/yaml",
46255          "application/vnd.kubernetes.protobuf"
46256        ],
46257        "responses": {
46258          "200": {
46259            "description": "OK",
46260            "schema": {
46261              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46262            }
46263          },
46264          "401": {
46265            "description": "Unauthorized"
46266          }
46267        },
46268        "schemes": [
46269          "https"
46270        ],
46271        "tags": [
46272          "apps_v1"
46273        ],
46274        "x-kubernetes-action": "patch",
46275        "x-kubernetes-group-version-kind": {
46276          "group": "apps",
46277          "kind": "DaemonSet",
46278          "version": "v1"
46279        }
46280      },
46281      "put": {
46282        "consumes": [
46283          "*/*"
46284        ],
46285        "description": "replace the specified DaemonSet",
46286        "operationId": "replaceAppsV1NamespacedDaemonSet",
46287        "parameters": [
46288          {
46289            "in": "body",
46290            "name": "body",
46291            "required": true,
46292            "schema": {
46293              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46294            }
46295          },
46296          {
46297            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46298            "in": "query",
46299            "name": "dryRun",
46300            "type": "string",
46301            "uniqueItems": true
46302          },
46303          {
46304            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46305            "in": "query",
46306            "name": "fieldManager",
46307            "type": "string",
46308            "uniqueItems": true
46309          }
46310        ],
46311        "produces": [
46312          "application/json",
46313          "application/yaml",
46314          "application/vnd.kubernetes.protobuf"
46315        ],
46316        "responses": {
46317          "200": {
46318            "description": "OK",
46319            "schema": {
46320              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46321            }
46322          },
46323          "201": {
46324            "description": "Created",
46325            "schema": {
46326              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46327            }
46328          },
46329          "401": {
46330            "description": "Unauthorized"
46331          }
46332        },
46333        "schemes": [
46334          "https"
46335        ],
46336        "tags": [
46337          "apps_v1"
46338        ],
46339        "x-kubernetes-action": "put",
46340        "x-kubernetes-group-version-kind": {
46341          "group": "apps",
46342          "kind": "DaemonSet",
46343          "version": "v1"
46344        }
46345      }
46346    },
46347    "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": {
46348      "get": {
46349        "consumes": [
46350          "*/*"
46351        ],
46352        "description": "read status of the specified DaemonSet",
46353        "operationId": "readAppsV1NamespacedDaemonSetStatus",
46354        "produces": [
46355          "application/json",
46356          "application/yaml",
46357          "application/vnd.kubernetes.protobuf"
46358        ],
46359        "responses": {
46360          "200": {
46361            "description": "OK",
46362            "schema": {
46363              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46364            }
46365          },
46366          "401": {
46367            "description": "Unauthorized"
46368          }
46369        },
46370        "schemes": [
46371          "https"
46372        ],
46373        "tags": [
46374          "apps_v1"
46375        ],
46376        "x-kubernetes-action": "get",
46377        "x-kubernetes-group-version-kind": {
46378          "group": "apps",
46379          "kind": "DaemonSet",
46380          "version": "v1"
46381        }
46382      },
46383      "parameters": [
46384        {
46385          "description": "name of the DaemonSet",
46386          "in": "path",
46387          "name": "name",
46388          "required": true,
46389          "type": "string",
46390          "uniqueItems": true
46391        },
46392        {
46393          "description": "object name and auth scope, such as for teams and projects",
46394          "in": "path",
46395          "name": "namespace",
46396          "required": true,
46397          "type": "string",
46398          "uniqueItems": true
46399        },
46400        {
46401          "description": "If 'true', then the output is pretty printed.",
46402          "in": "query",
46403          "name": "pretty",
46404          "type": "string",
46405          "uniqueItems": true
46406        }
46407      ],
46408      "patch": {
46409        "consumes": [
46410          "application/json-patch+json",
46411          "application/merge-patch+json",
46412          "application/strategic-merge-patch+json"
46413        ],
46414        "description": "partially update status of the specified DaemonSet",
46415        "operationId": "patchAppsV1NamespacedDaemonSetStatus",
46416        "parameters": [
46417          {
46418            "in": "body",
46419            "name": "body",
46420            "required": true,
46421            "schema": {
46422              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
46423            }
46424          },
46425          {
46426            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46427            "in": "query",
46428            "name": "dryRun",
46429            "type": "string",
46430            "uniqueItems": true
46431          },
46432          {
46433            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
46434            "in": "query",
46435            "name": "fieldManager",
46436            "type": "string",
46437            "uniqueItems": true
46438          },
46439          {
46440            "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.",
46441            "in": "query",
46442            "name": "force",
46443            "type": "boolean",
46444            "uniqueItems": true
46445          }
46446        ],
46447        "produces": [
46448          "application/json",
46449          "application/yaml",
46450          "application/vnd.kubernetes.protobuf"
46451        ],
46452        "responses": {
46453          "200": {
46454            "description": "OK",
46455            "schema": {
46456              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46457            }
46458          },
46459          "401": {
46460            "description": "Unauthorized"
46461          }
46462        },
46463        "schemes": [
46464          "https"
46465        ],
46466        "tags": [
46467          "apps_v1"
46468        ],
46469        "x-kubernetes-action": "patch",
46470        "x-kubernetes-group-version-kind": {
46471          "group": "apps",
46472          "kind": "DaemonSet",
46473          "version": "v1"
46474        }
46475      },
46476      "put": {
46477        "consumes": [
46478          "*/*"
46479        ],
46480        "description": "replace status of the specified DaemonSet",
46481        "operationId": "replaceAppsV1NamespacedDaemonSetStatus",
46482        "parameters": [
46483          {
46484            "in": "body",
46485            "name": "body",
46486            "required": true,
46487            "schema": {
46488              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46489            }
46490          },
46491          {
46492            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46493            "in": "query",
46494            "name": "dryRun",
46495            "type": "string",
46496            "uniqueItems": true
46497          },
46498          {
46499            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46500            "in": "query",
46501            "name": "fieldManager",
46502            "type": "string",
46503            "uniqueItems": true
46504          }
46505        ],
46506        "produces": [
46507          "application/json",
46508          "application/yaml",
46509          "application/vnd.kubernetes.protobuf"
46510        ],
46511        "responses": {
46512          "200": {
46513            "description": "OK",
46514            "schema": {
46515              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46516            }
46517          },
46518          "201": {
46519            "description": "Created",
46520            "schema": {
46521              "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet"
46522            }
46523          },
46524          "401": {
46525            "description": "Unauthorized"
46526          }
46527        },
46528        "schemes": [
46529          "https"
46530        ],
46531        "tags": [
46532          "apps_v1"
46533        ],
46534        "x-kubernetes-action": "put",
46535        "x-kubernetes-group-version-kind": {
46536          "group": "apps",
46537          "kind": "DaemonSet",
46538          "version": "v1"
46539        }
46540      }
46541    },
46542    "/apis/apps/v1/namespaces/{namespace}/deployments": {
46543      "delete": {
46544        "consumes": [
46545          "*/*"
46546        ],
46547        "description": "delete collection of Deployment",
46548        "operationId": "deleteAppsV1CollectionNamespacedDeployment",
46549        "parameters": [
46550          {
46551            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
46552            "in": "query",
46553            "name": "allowWatchBookmarks",
46554            "type": "boolean",
46555            "uniqueItems": true
46556          },
46557          {
46558            "in": "body",
46559            "name": "body",
46560            "schema": {
46561              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
46562            }
46563          },
46564          {
46565            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46566            "in": "query",
46567            "name": "continue",
46568            "type": "string",
46569            "uniqueItems": true
46570          },
46571          {
46572            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46573            "in": "query",
46574            "name": "dryRun",
46575            "type": "string",
46576            "uniqueItems": true
46577          },
46578          {
46579            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46580            "in": "query",
46581            "name": "fieldSelector",
46582            "type": "string",
46583            "uniqueItems": true
46584          },
46585          {
46586            "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.",
46587            "in": "query",
46588            "name": "gracePeriodSeconds",
46589            "type": "integer",
46590            "uniqueItems": true
46591          },
46592          {
46593            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46594            "in": "query",
46595            "name": "labelSelector",
46596            "type": "string",
46597            "uniqueItems": true
46598          },
46599          {
46600            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46601            "in": "query",
46602            "name": "limit",
46603            "type": "integer",
46604            "uniqueItems": true
46605          },
46606          {
46607            "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.",
46608            "in": "query",
46609            "name": "orphanDependents",
46610            "type": "boolean",
46611            "uniqueItems": true
46612          },
46613          {
46614            "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.",
46615            "in": "query",
46616            "name": "propagationPolicy",
46617            "type": "string",
46618            "uniqueItems": true
46619          },
46620          {
46621            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
46622            "in": "query",
46623            "name": "resourceVersion",
46624            "type": "string",
46625            "uniqueItems": true
46626          },
46627          {
46628            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46629            "in": "query",
46630            "name": "timeoutSeconds",
46631            "type": "integer",
46632            "uniqueItems": true
46633          },
46634          {
46635            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46636            "in": "query",
46637            "name": "watch",
46638            "type": "boolean",
46639            "uniqueItems": true
46640          }
46641        ],
46642        "produces": [
46643          "application/json",
46644          "application/yaml",
46645          "application/vnd.kubernetes.protobuf"
46646        ],
46647        "responses": {
46648          "200": {
46649            "description": "OK",
46650            "schema": {
46651              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46652            }
46653          },
46654          "401": {
46655            "description": "Unauthorized"
46656          }
46657        },
46658        "schemes": [
46659          "https"
46660        ],
46661        "tags": [
46662          "apps_v1"
46663        ],
46664        "x-kubernetes-action": "deletecollection",
46665        "x-kubernetes-group-version-kind": {
46666          "group": "apps",
46667          "kind": "Deployment",
46668          "version": "v1"
46669        }
46670      },
46671      "get": {
46672        "consumes": [
46673          "*/*"
46674        ],
46675        "description": "list or watch objects of kind Deployment",
46676        "operationId": "listAppsV1NamespacedDeployment",
46677        "parameters": [
46678          {
46679            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
46680            "in": "query",
46681            "name": "allowWatchBookmarks",
46682            "type": "boolean",
46683            "uniqueItems": true
46684          },
46685          {
46686            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
46687            "in": "query",
46688            "name": "continue",
46689            "type": "string",
46690            "uniqueItems": true
46691          },
46692          {
46693            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
46694            "in": "query",
46695            "name": "fieldSelector",
46696            "type": "string",
46697            "uniqueItems": true
46698          },
46699          {
46700            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
46701            "in": "query",
46702            "name": "labelSelector",
46703            "type": "string",
46704            "uniqueItems": true
46705          },
46706          {
46707            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
46708            "in": "query",
46709            "name": "limit",
46710            "type": "integer",
46711            "uniqueItems": true
46712          },
46713          {
46714            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
46715            "in": "query",
46716            "name": "resourceVersion",
46717            "type": "string",
46718            "uniqueItems": true
46719          },
46720          {
46721            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
46722            "in": "query",
46723            "name": "timeoutSeconds",
46724            "type": "integer",
46725            "uniqueItems": true
46726          },
46727          {
46728            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
46729            "in": "query",
46730            "name": "watch",
46731            "type": "boolean",
46732            "uniqueItems": true
46733          }
46734        ],
46735        "produces": [
46736          "application/json",
46737          "application/yaml",
46738          "application/vnd.kubernetes.protobuf",
46739          "application/json;stream=watch",
46740          "application/vnd.kubernetes.protobuf;stream=watch"
46741        ],
46742        "responses": {
46743          "200": {
46744            "description": "OK",
46745            "schema": {
46746              "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentList"
46747            }
46748          },
46749          "401": {
46750            "description": "Unauthorized"
46751          }
46752        },
46753        "schemes": [
46754          "https"
46755        ],
46756        "tags": [
46757          "apps_v1"
46758        ],
46759        "x-kubernetes-action": "list",
46760        "x-kubernetes-group-version-kind": {
46761          "group": "apps",
46762          "kind": "Deployment",
46763          "version": "v1"
46764        }
46765      },
46766      "parameters": [
46767        {
46768          "description": "object name and auth scope, such as for teams and projects",
46769          "in": "path",
46770          "name": "namespace",
46771          "required": true,
46772          "type": "string",
46773          "uniqueItems": true
46774        },
46775        {
46776          "description": "If 'true', then the output is pretty printed.",
46777          "in": "query",
46778          "name": "pretty",
46779          "type": "string",
46780          "uniqueItems": true
46781        }
46782      ],
46783      "post": {
46784        "consumes": [
46785          "*/*"
46786        ],
46787        "description": "create a Deployment",
46788        "operationId": "createAppsV1NamespacedDeployment",
46789        "parameters": [
46790          {
46791            "in": "body",
46792            "name": "body",
46793            "required": true,
46794            "schema": {
46795              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
46796            }
46797          },
46798          {
46799            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46800            "in": "query",
46801            "name": "dryRun",
46802            "type": "string",
46803            "uniqueItems": true
46804          },
46805          {
46806            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
46807            "in": "query",
46808            "name": "fieldManager",
46809            "type": "string",
46810            "uniqueItems": true
46811          }
46812        ],
46813        "produces": [
46814          "application/json",
46815          "application/yaml",
46816          "application/vnd.kubernetes.protobuf"
46817        ],
46818        "responses": {
46819          "200": {
46820            "description": "OK",
46821            "schema": {
46822              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
46823            }
46824          },
46825          "201": {
46826            "description": "Created",
46827            "schema": {
46828              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
46829            }
46830          },
46831          "202": {
46832            "description": "Accepted",
46833            "schema": {
46834              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
46835            }
46836          },
46837          "401": {
46838            "description": "Unauthorized"
46839          }
46840        },
46841        "schemes": [
46842          "https"
46843        ],
46844        "tags": [
46845          "apps_v1"
46846        ],
46847        "x-kubernetes-action": "post",
46848        "x-kubernetes-group-version-kind": {
46849          "group": "apps",
46850          "kind": "Deployment",
46851          "version": "v1"
46852        }
46853      }
46854    },
46855    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": {
46856      "delete": {
46857        "consumes": [
46858          "*/*"
46859        ],
46860        "description": "delete a Deployment",
46861        "operationId": "deleteAppsV1NamespacedDeployment",
46862        "parameters": [
46863          {
46864            "in": "body",
46865            "name": "body",
46866            "schema": {
46867              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
46868            }
46869          },
46870          {
46871            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
46872            "in": "query",
46873            "name": "dryRun",
46874            "type": "string",
46875            "uniqueItems": true
46876          },
46877          {
46878            "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.",
46879            "in": "query",
46880            "name": "gracePeriodSeconds",
46881            "type": "integer",
46882            "uniqueItems": true
46883          },
46884          {
46885            "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.",
46886            "in": "query",
46887            "name": "orphanDependents",
46888            "type": "boolean",
46889            "uniqueItems": true
46890          },
46891          {
46892            "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.",
46893            "in": "query",
46894            "name": "propagationPolicy",
46895            "type": "string",
46896            "uniqueItems": true
46897          }
46898        ],
46899        "produces": [
46900          "application/json",
46901          "application/yaml",
46902          "application/vnd.kubernetes.protobuf"
46903        ],
46904        "responses": {
46905          "200": {
46906            "description": "OK",
46907            "schema": {
46908              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46909            }
46910          },
46911          "202": {
46912            "description": "Accepted",
46913            "schema": {
46914              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
46915            }
46916          },
46917          "401": {
46918            "description": "Unauthorized"
46919          }
46920        },
46921        "schemes": [
46922          "https"
46923        ],
46924        "tags": [
46925          "apps_v1"
46926        ],
46927        "x-kubernetes-action": "delete",
46928        "x-kubernetes-group-version-kind": {
46929          "group": "apps",
46930          "kind": "Deployment",
46931          "version": "v1"
46932        }
46933      },
46934      "get": {
46935        "consumes": [
46936          "*/*"
46937        ],
46938        "description": "read the specified Deployment",
46939        "operationId": "readAppsV1NamespacedDeployment",
46940        "parameters": [
46941          {
46942            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
46943            "in": "query",
46944            "name": "exact",
46945            "type": "boolean",
46946            "uniqueItems": true
46947          },
46948          {
46949            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
46950            "in": "query",
46951            "name": "export",
46952            "type": "boolean",
46953            "uniqueItems": true
46954          }
46955        ],
46956        "produces": [
46957          "application/json",
46958          "application/yaml",
46959          "application/vnd.kubernetes.protobuf"
46960        ],
46961        "responses": {
46962          "200": {
46963            "description": "OK",
46964            "schema": {
46965              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
46966            }
46967          },
46968          "401": {
46969            "description": "Unauthorized"
46970          }
46971        },
46972        "schemes": [
46973          "https"
46974        ],
46975        "tags": [
46976          "apps_v1"
46977        ],
46978        "x-kubernetes-action": "get",
46979        "x-kubernetes-group-version-kind": {
46980          "group": "apps",
46981          "kind": "Deployment",
46982          "version": "v1"
46983        }
46984      },
46985      "parameters": [
46986        {
46987          "description": "name of the Deployment",
46988          "in": "path",
46989          "name": "name",
46990          "required": true,
46991          "type": "string",
46992          "uniqueItems": true
46993        },
46994        {
46995          "description": "object name and auth scope, such as for teams and projects",
46996          "in": "path",
46997          "name": "namespace",
46998          "required": true,
46999          "type": "string",
47000          "uniqueItems": true
47001        },
47002        {
47003          "description": "If 'true', then the output is pretty printed.",
47004          "in": "query",
47005          "name": "pretty",
47006          "type": "string",
47007          "uniqueItems": true
47008        }
47009      ],
47010      "patch": {
47011        "consumes": [
47012          "application/json-patch+json",
47013          "application/merge-patch+json",
47014          "application/strategic-merge-patch+json"
47015        ],
47016        "description": "partially update the specified Deployment",
47017        "operationId": "patchAppsV1NamespacedDeployment",
47018        "parameters": [
47019          {
47020            "in": "body",
47021            "name": "body",
47022            "required": true,
47023            "schema": {
47024              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
47025            }
47026          },
47027          {
47028            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47029            "in": "query",
47030            "name": "dryRun",
47031            "type": "string",
47032            "uniqueItems": true
47033          },
47034          {
47035            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
47036            "in": "query",
47037            "name": "fieldManager",
47038            "type": "string",
47039            "uniqueItems": true
47040          },
47041          {
47042            "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.",
47043            "in": "query",
47044            "name": "force",
47045            "type": "boolean",
47046            "uniqueItems": true
47047          }
47048        ],
47049        "produces": [
47050          "application/json",
47051          "application/yaml",
47052          "application/vnd.kubernetes.protobuf"
47053        ],
47054        "responses": {
47055          "200": {
47056            "description": "OK",
47057            "schema": {
47058              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47059            }
47060          },
47061          "401": {
47062            "description": "Unauthorized"
47063          }
47064        },
47065        "schemes": [
47066          "https"
47067        ],
47068        "tags": [
47069          "apps_v1"
47070        ],
47071        "x-kubernetes-action": "patch",
47072        "x-kubernetes-group-version-kind": {
47073          "group": "apps",
47074          "kind": "Deployment",
47075          "version": "v1"
47076        }
47077      },
47078      "put": {
47079        "consumes": [
47080          "*/*"
47081        ],
47082        "description": "replace the specified Deployment",
47083        "operationId": "replaceAppsV1NamespacedDeployment",
47084        "parameters": [
47085          {
47086            "in": "body",
47087            "name": "body",
47088            "required": true,
47089            "schema": {
47090              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47091            }
47092          },
47093          {
47094            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47095            "in": "query",
47096            "name": "dryRun",
47097            "type": "string",
47098            "uniqueItems": true
47099          },
47100          {
47101            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47102            "in": "query",
47103            "name": "fieldManager",
47104            "type": "string",
47105            "uniqueItems": true
47106          }
47107        ],
47108        "produces": [
47109          "application/json",
47110          "application/yaml",
47111          "application/vnd.kubernetes.protobuf"
47112        ],
47113        "responses": {
47114          "200": {
47115            "description": "OK",
47116            "schema": {
47117              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47118            }
47119          },
47120          "201": {
47121            "description": "Created",
47122            "schema": {
47123              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47124            }
47125          },
47126          "401": {
47127            "description": "Unauthorized"
47128          }
47129        },
47130        "schemes": [
47131          "https"
47132        ],
47133        "tags": [
47134          "apps_v1"
47135        ],
47136        "x-kubernetes-action": "put",
47137        "x-kubernetes-group-version-kind": {
47138          "group": "apps",
47139          "kind": "Deployment",
47140          "version": "v1"
47141        }
47142      }
47143    },
47144    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": {
47145      "get": {
47146        "consumes": [
47147          "*/*"
47148        ],
47149        "description": "read scale of the specified Deployment",
47150        "operationId": "readAppsV1NamespacedDeploymentScale",
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.autoscaling.v1.Scale"
47161            }
47162          },
47163          "401": {
47164            "description": "Unauthorized"
47165          }
47166        },
47167        "schemes": [
47168          "https"
47169        ],
47170        "tags": [
47171          "apps_v1"
47172        ],
47173        "x-kubernetes-action": "get",
47174        "x-kubernetes-group-version-kind": {
47175          "group": "autoscaling",
47176          "kind": "Scale",
47177          "version": "v1"
47178        }
47179      },
47180      "parameters": [
47181        {
47182          "description": "name of the Scale",
47183          "in": "path",
47184          "name": "name",
47185          "required": true,
47186          "type": "string",
47187          "uniqueItems": true
47188        },
47189        {
47190          "description": "object name and auth scope, such as for teams and projects",
47191          "in": "path",
47192          "name": "namespace",
47193          "required": true,
47194          "type": "string",
47195          "uniqueItems": true
47196        },
47197        {
47198          "description": "If 'true', then the output is pretty printed.",
47199          "in": "query",
47200          "name": "pretty",
47201          "type": "string",
47202          "uniqueItems": true
47203        }
47204      ],
47205      "patch": {
47206        "consumes": [
47207          "application/json-patch+json",
47208          "application/merge-patch+json",
47209          "application/strategic-merge-patch+json"
47210        ],
47211        "description": "partially update scale of the specified Deployment",
47212        "operationId": "patchAppsV1NamespacedDeploymentScale",
47213        "parameters": [
47214          {
47215            "in": "body",
47216            "name": "body",
47217            "required": true,
47218            "schema": {
47219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
47220            }
47221          },
47222          {
47223            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47224            "in": "query",
47225            "name": "dryRun",
47226            "type": "string",
47227            "uniqueItems": true
47228          },
47229          {
47230            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
47231            "in": "query",
47232            "name": "fieldManager",
47233            "type": "string",
47234            "uniqueItems": true
47235          },
47236          {
47237            "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.",
47238            "in": "query",
47239            "name": "force",
47240            "type": "boolean",
47241            "uniqueItems": true
47242          }
47243        ],
47244        "produces": [
47245          "application/json",
47246          "application/yaml",
47247          "application/vnd.kubernetes.protobuf"
47248        ],
47249        "responses": {
47250          "200": {
47251            "description": "OK",
47252            "schema": {
47253              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
47254            }
47255          },
47256          "401": {
47257            "description": "Unauthorized"
47258          }
47259        },
47260        "schemes": [
47261          "https"
47262        ],
47263        "tags": [
47264          "apps_v1"
47265        ],
47266        "x-kubernetes-action": "patch",
47267        "x-kubernetes-group-version-kind": {
47268          "group": "autoscaling",
47269          "kind": "Scale",
47270          "version": "v1"
47271        }
47272      },
47273      "put": {
47274        "consumes": [
47275          "*/*"
47276        ],
47277        "description": "replace scale of the specified Deployment",
47278        "operationId": "replaceAppsV1NamespacedDeploymentScale",
47279        "parameters": [
47280          {
47281            "in": "body",
47282            "name": "body",
47283            "required": true,
47284            "schema": {
47285              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
47286            }
47287          },
47288          {
47289            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47290            "in": "query",
47291            "name": "dryRun",
47292            "type": "string",
47293            "uniqueItems": true
47294          },
47295          {
47296            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47297            "in": "query",
47298            "name": "fieldManager",
47299            "type": "string",
47300            "uniqueItems": true
47301          }
47302        ],
47303        "produces": [
47304          "application/json",
47305          "application/yaml",
47306          "application/vnd.kubernetes.protobuf"
47307        ],
47308        "responses": {
47309          "200": {
47310            "description": "OK",
47311            "schema": {
47312              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
47313            }
47314          },
47315          "201": {
47316            "description": "Created",
47317            "schema": {
47318              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
47319            }
47320          },
47321          "401": {
47322            "description": "Unauthorized"
47323          }
47324        },
47325        "schemes": [
47326          "https"
47327        ],
47328        "tags": [
47329          "apps_v1"
47330        ],
47331        "x-kubernetes-action": "put",
47332        "x-kubernetes-group-version-kind": {
47333          "group": "autoscaling",
47334          "kind": "Scale",
47335          "version": "v1"
47336        }
47337      }
47338    },
47339    "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": {
47340      "get": {
47341        "consumes": [
47342          "*/*"
47343        ],
47344        "description": "read status of the specified Deployment",
47345        "operationId": "readAppsV1NamespacedDeploymentStatus",
47346        "produces": [
47347          "application/json",
47348          "application/yaml",
47349          "application/vnd.kubernetes.protobuf"
47350        ],
47351        "responses": {
47352          "200": {
47353            "description": "OK",
47354            "schema": {
47355              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47356            }
47357          },
47358          "401": {
47359            "description": "Unauthorized"
47360          }
47361        },
47362        "schemes": [
47363          "https"
47364        ],
47365        "tags": [
47366          "apps_v1"
47367        ],
47368        "x-kubernetes-action": "get",
47369        "x-kubernetes-group-version-kind": {
47370          "group": "apps",
47371          "kind": "Deployment",
47372          "version": "v1"
47373        }
47374      },
47375      "parameters": [
47376        {
47377          "description": "name of the Deployment",
47378          "in": "path",
47379          "name": "name",
47380          "required": true,
47381          "type": "string",
47382          "uniqueItems": true
47383        },
47384        {
47385          "description": "object name and auth scope, such as for teams and projects",
47386          "in": "path",
47387          "name": "namespace",
47388          "required": true,
47389          "type": "string",
47390          "uniqueItems": true
47391        },
47392        {
47393          "description": "If 'true', then the output is pretty printed.",
47394          "in": "query",
47395          "name": "pretty",
47396          "type": "string",
47397          "uniqueItems": true
47398        }
47399      ],
47400      "patch": {
47401        "consumes": [
47402          "application/json-patch+json",
47403          "application/merge-patch+json",
47404          "application/strategic-merge-patch+json"
47405        ],
47406        "description": "partially update status of the specified Deployment",
47407        "operationId": "patchAppsV1NamespacedDeploymentStatus",
47408        "parameters": [
47409          {
47410            "in": "body",
47411            "name": "body",
47412            "required": true,
47413            "schema": {
47414              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
47415            }
47416          },
47417          {
47418            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47419            "in": "query",
47420            "name": "dryRun",
47421            "type": "string",
47422            "uniqueItems": true
47423          },
47424          {
47425            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
47426            "in": "query",
47427            "name": "fieldManager",
47428            "type": "string",
47429            "uniqueItems": true
47430          },
47431          {
47432            "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.",
47433            "in": "query",
47434            "name": "force",
47435            "type": "boolean",
47436            "uniqueItems": true
47437          }
47438        ],
47439        "produces": [
47440          "application/json",
47441          "application/yaml",
47442          "application/vnd.kubernetes.protobuf"
47443        ],
47444        "responses": {
47445          "200": {
47446            "description": "OK",
47447            "schema": {
47448              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47449            }
47450          },
47451          "401": {
47452            "description": "Unauthorized"
47453          }
47454        },
47455        "schemes": [
47456          "https"
47457        ],
47458        "tags": [
47459          "apps_v1"
47460        ],
47461        "x-kubernetes-action": "patch",
47462        "x-kubernetes-group-version-kind": {
47463          "group": "apps",
47464          "kind": "Deployment",
47465          "version": "v1"
47466        }
47467      },
47468      "put": {
47469        "consumes": [
47470          "*/*"
47471        ],
47472        "description": "replace status of the specified Deployment",
47473        "operationId": "replaceAppsV1NamespacedDeploymentStatus",
47474        "parameters": [
47475          {
47476            "in": "body",
47477            "name": "body",
47478            "required": true,
47479            "schema": {
47480              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47481            }
47482          },
47483          {
47484            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47485            "in": "query",
47486            "name": "dryRun",
47487            "type": "string",
47488            "uniqueItems": true
47489          },
47490          {
47491            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47492            "in": "query",
47493            "name": "fieldManager",
47494            "type": "string",
47495            "uniqueItems": true
47496          }
47497        ],
47498        "produces": [
47499          "application/json",
47500          "application/yaml",
47501          "application/vnd.kubernetes.protobuf"
47502        ],
47503        "responses": {
47504          "200": {
47505            "description": "OK",
47506            "schema": {
47507              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47508            }
47509          },
47510          "201": {
47511            "description": "Created",
47512            "schema": {
47513              "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment"
47514            }
47515          },
47516          "401": {
47517            "description": "Unauthorized"
47518          }
47519        },
47520        "schemes": [
47521          "https"
47522        ],
47523        "tags": [
47524          "apps_v1"
47525        ],
47526        "x-kubernetes-action": "put",
47527        "x-kubernetes-group-version-kind": {
47528          "group": "apps",
47529          "kind": "Deployment",
47530          "version": "v1"
47531        }
47532      }
47533    },
47534    "/apis/apps/v1/namespaces/{namespace}/replicasets": {
47535      "delete": {
47536        "consumes": [
47537          "*/*"
47538        ],
47539        "description": "delete collection of ReplicaSet",
47540        "operationId": "deleteAppsV1CollectionNamespacedReplicaSet",
47541        "parameters": [
47542          {
47543            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
47544            "in": "query",
47545            "name": "allowWatchBookmarks",
47546            "type": "boolean",
47547            "uniqueItems": true
47548          },
47549          {
47550            "in": "body",
47551            "name": "body",
47552            "schema": {
47553              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47554            }
47555          },
47556          {
47557            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47558            "in": "query",
47559            "name": "continue",
47560            "type": "string",
47561            "uniqueItems": true
47562          },
47563          {
47564            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47565            "in": "query",
47566            "name": "dryRun",
47567            "type": "string",
47568            "uniqueItems": true
47569          },
47570          {
47571            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47572            "in": "query",
47573            "name": "fieldSelector",
47574            "type": "string",
47575            "uniqueItems": true
47576          },
47577          {
47578            "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.",
47579            "in": "query",
47580            "name": "gracePeriodSeconds",
47581            "type": "integer",
47582            "uniqueItems": true
47583          },
47584          {
47585            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47586            "in": "query",
47587            "name": "labelSelector",
47588            "type": "string",
47589            "uniqueItems": true
47590          },
47591          {
47592            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47593            "in": "query",
47594            "name": "limit",
47595            "type": "integer",
47596            "uniqueItems": true
47597          },
47598          {
47599            "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.",
47600            "in": "query",
47601            "name": "orphanDependents",
47602            "type": "boolean",
47603            "uniqueItems": true
47604          },
47605          {
47606            "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.",
47607            "in": "query",
47608            "name": "propagationPolicy",
47609            "type": "string",
47610            "uniqueItems": true
47611          },
47612          {
47613            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
47614            "in": "query",
47615            "name": "resourceVersion",
47616            "type": "string",
47617            "uniqueItems": true
47618          },
47619          {
47620            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47621            "in": "query",
47622            "name": "timeoutSeconds",
47623            "type": "integer",
47624            "uniqueItems": true
47625          },
47626          {
47627            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47628            "in": "query",
47629            "name": "watch",
47630            "type": "boolean",
47631            "uniqueItems": true
47632          }
47633        ],
47634        "produces": [
47635          "application/json",
47636          "application/yaml",
47637          "application/vnd.kubernetes.protobuf"
47638        ],
47639        "responses": {
47640          "200": {
47641            "description": "OK",
47642            "schema": {
47643              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47644            }
47645          },
47646          "401": {
47647            "description": "Unauthorized"
47648          }
47649        },
47650        "schemes": [
47651          "https"
47652        ],
47653        "tags": [
47654          "apps_v1"
47655        ],
47656        "x-kubernetes-action": "deletecollection",
47657        "x-kubernetes-group-version-kind": {
47658          "group": "apps",
47659          "kind": "ReplicaSet",
47660          "version": "v1"
47661        }
47662      },
47663      "get": {
47664        "consumes": [
47665          "*/*"
47666        ],
47667        "description": "list or watch objects of kind ReplicaSet",
47668        "operationId": "listAppsV1NamespacedReplicaSet",
47669        "parameters": [
47670          {
47671            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
47672            "in": "query",
47673            "name": "allowWatchBookmarks",
47674            "type": "boolean",
47675            "uniqueItems": true
47676          },
47677          {
47678            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
47679            "in": "query",
47680            "name": "continue",
47681            "type": "string",
47682            "uniqueItems": true
47683          },
47684          {
47685            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
47686            "in": "query",
47687            "name": "fieldSelector",
47688            "type": "string",
47689            "uniqueItems": true
47690          },
47691          {
47692            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
47693            "in": "query",
47694            "name": "labelSelector",
47695            "type": "string",
47696            "uniqueItems": true
47697          },
47698          {
47699            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
47700            "in": "query",
47701            "name": "limit",
47702            "type": "integer",
47703            "uniqueItems": true
47704          },
47705          {
47706            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
47707            "in": "query",
47708            "name": "resourceVersion",
47709            "type": "string",
47710            "uniqueItems": true
47711          },
47712          {
47713            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
47714            "in": "query",
47715            "name": "timeoutSeconds",
47716            "type": "integer",
47717            "uniqueItems": true
47718          },
47719          {
47720            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
47721            "in": "query",
47722            "name": "watch",
47723            "type": "boolean",
47724            "uniqueItems": true
47725          }
47726        ],
47727        "produces": [
47728          "application/json",
47729          "application/yaml",
47730          "application/vnd.kubernetes.protobuf",
47731          "application/json;stream=watch",
47732          "application/vnd.kubernetes.protobuf;stream=watch"
47733        ],
47734        "responses": {
47735          "200": {
47736            "description": "OK",
47737            "schema": {
47738              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
47739            }
47740          },
47741          "401": {
47742            "description": "Unauthorized"
47743          }
47744        },
47745        "schemes": [
47746          "https"
47747        ],
47748        "tags": [
47749          "apps_v1"
47750        ],
47751        "x-kubernetes-action": "list",
47752        "x-kubernetes-group-version-kind": {
47753          "group": "apps",
47754          "kind": "ReplicaSet",
47755          "version": "v1"
47756        }
47757      },
47758      "parameters": [
47759        {
47760          "description": "object name and auth scope, such as for teams and projects",
47761          "in": "path",
47762          "name": "namespace",
47763          "required": true,
47764          "type": "string",
47765          "uniqueItems": true
47766        },
47767        {
47768          "description": "If 'true', then the output is pretty printed.",
47769          "in": "query",
47770          "name": "pretty",
47771          "type": "string",
47772          "uniqueItems": true
47773        }
47774      ],
47775      "post": {
47776        "consumes": [
47777          "*/*"
47778        ],
47779        "description": "create a ReplicaSet",
47780        "operationId": "createAppsV1NamespacedReplicaSet",
47781        "parameters": [
47782          {
47783            "in": "body",
47784            "name": "body",
47785            "required": true,
47786            "schema": {
47787              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
47788            }
47789          },
47790          {
47791            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47792            "in": "query",
47793            "name": "dryRun",
47794            "type": "string",
47795            "uniqueItems": true
47796          },
47797          {
47798            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
47799            "in": "query",
47800            "name": "fieldManager",
47801            "type": "string",
47802            "uniqueItems": true
47803          }
47804        ],
47805        "produces": [
47806          "application/json",
47807          "application/yaml",
47808          "application/vnd.kubernetes.protobuf"
47809        ],
47810        "responses": {
47811          "200": {
47812            "description": "OK",
47813            "schema": {
47814              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
47815            }
47816          },
47817          "201": {
47818            "description": "Created",
47819            "schema": {
47820              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
47821            }
47822          },
47823          "202": {
47824            "description": "Accepted",
47825            "schema": {
47826              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
47827            }
47828          },
47829          "401": {
47830            "description": "Unauthorized"
47831          }
47832        },
47833        "schemes": [
47834          "https"
47835        ],
47836        "tags": [
47837          "apps_v1"
47838        ],
47839        "x-kubernetes-action": "post",
47840        "x-kubernetes-group-version-kind": {
47841          "group": "apps",
47842          "kind": "ReplicaSet",
47843          "version": "v1"
47844        }
47845      }
47846    },
47847    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": {
47848      "delete": {
47849        "consumes": [
47850          "*/*"
47851        ],
47852        "description": "delete a ReplicaSet",
47853        "operationId": "deleteAppsV1NamespacedReplicaSet",
47854        "parameters": [
47855          {
47856            "in": "body",
47857            "name": "body",
47858            "schema": {
47859              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
47860            }
47861          },
47862          {
47863            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
47864            "in": "query",
47865            "name": "dryRun",
47866            "type": "string",
47867            "uniqueItems": true
47868          },
47869          {
47870            "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.",
47871            "in": "query",
47872            "name": "gracePeriodSeconds",
47873            "type": "integer",
47874            "uniqueItems": true
47875          },
47876          {
47877            "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.",
47878            "in": "query",
47879            "name": "orphanDependents",
47880            "type": "boolean",
47881            "uniqueItems": true
47882          },
47883          {
47884            "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.",
47885            "in": "query",
47886            "name": "propagationPolicy",
47887            "type": "string",
47888            "uniqueItems": true
47889          }
47890        ],
47891        "produces": [
47892          "application/json",
47893          "application/yaml",
47894          "application/vnd.kubernetes.protobuf"
47895        ],
47896        "responses": {
47897          "200": {
47898            "description": "OK",
47899            "schema": {
47900              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47901            }
47902          },
47903          "202": {
47904            "description": "Accepted",
47905            "schema": {
47906              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
47907            }
47908          },
47909          "401": {
47910            "description": "Unauthorized"
47911          }
47912        },
47913        "schemes": [
47914          "https"
47915        ],
47916        "tags": [
47917          "apps_v1"
47918        ],
47919        "x-kubernetes-action": "delete",
47920        "x-kubernetes-group-version-kind": {
47921          "group": "apps",
47922          "kind": "ReplicaSet",
47923          "version": "v1"
47924        }
47925      },
47926      "get": {
47927        "consumes": [
47928          "*/*"
47929        ],
47930        "description": "read the specified ReplicaSet",
47931        "operationId": "readAppsV1NamespacedReplicaSet",
47932        "parameters": [
47933          {
47934            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
47935            "in": "query",
47936            "name": "exact",
47937            "type": "boolean",
47938            "uniqueItems": true
47939          },
47940          {
47941            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
47942            "in": "query",
47943            "name": "export",
47944            "type": "boolean",
47945            "uniqueItems": true
47946          }
47947        ],
47948        "produces": [
47949          "application/json",
47950          "application/yaml",
47951          "application/vnd.kubernetes.protobuf"
47952        ],
47953        "responses": {
47954          "200": {
47955            "description": "OK",
47956            "schema": {
47957              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
47958            }
47959          },
47960          "401": {
47961            "description": "Unauthorized"
47962          }
47963        },
47964        "schemes": [
47965          "https"
47966        ],
47967        "tags": [
47968          "apps_v1"
47969        ],
47970        "x-kubernetes-action": "get",
47971        "x-kubernetes-group-version-kind": {
47972          "group": "apps",
47973          "kind": "ReplicaSet",
47974          "version": "v1"
47975        }
47976      },
47977      "parameters": [
47978        {
47979          "description": "name of the ReplicaSet",
47980          "in": "path",
47981          "name": "name",
47982          "required": true,
47983          "type": "string",
47984          "uniqueItems": true
47985        },
47986        {
47987          "description": "object name and auth scope, such as for teams and projects",
47988          "in": "path",
47989          "name": "namespace",
47990          "required": true,
47991          "type": "string",
47992          "uniqueItems": true
47993        },
47994        {
47995          "description": "If 'true', then the output is pretty printed.",
47996          "in": "query",
47997          "name": "pretty",
47998          "type": "string",
47999          "uniqueItems": true
48000        }
48001      ],
48002      "patch": {
48003        "consumes": [
48004          "application/json-patch+json",
48005          "application/merge-patch+json",
48006          "application/strategic-merge-patch+json"
48007        ],
48008        "description": "partially update the specified ReplicaSet",
48009        "operationId": "patchAppsV1NamespacedReplicaSet",
48010        "parameters": [
48011          {
48012            "in": "body",
48013            "name": "body",
48014            "required": true,
48015            "schema": {
48016              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48017            }
48018          },
48019          {
48020            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48021            "in": "query",
48022            "name": "dryRun",
48023            "type": "string",
48024            "uniqueItems": true
48025          },
48026          {
48027            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
48028            "in": "query",
48029            "name": "fieldManager",
48030            "type": "string",
48031            "uniqueItems": true
48032          },
48033          {
48034            "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.",
48035            "in": "query",
48036            "name": "force",
48037            "type": "boolean",
48038            "uniqueItems": true
48039          }
48040        ],
48041        "produces": [
48042          "application/json",
48043          "application/yaml",
48044          "application/vnd.kubernetes.protobuf"
48045        ],
48046        "responses": {
48047          "200": {
48048            "description": "OK",
48049            "schema": {
48050              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48051            }
48052          },
48053          "401": {
48054            "description": "Unauthorized"
48055          }
48056        },
48057        "schemes": [
48058          "https"
48059        ],
48060        "tags": [
48061          "apps_v1"
48062        ],
48063        "x-kubernetes-action": "patch",
48064        "x-kubernetes-group-version-kind": {
48065          "group": "apps",
48066          "kind": "ReplicaSet",
48067          "version": "v1"
48068        }
48069      },
48070      "put": {
48071        "consumes": [
48072          "*/*"
48073        ],
48074        "description": "replace the specified ReplicaSet",
48075        "operationId": "replaceAppsV1NamespacedReplicaSet",
48076        "parameters": [
48077          {
48078            "in": "body",
48079            "name": "body",
48080            "required": true,
48081            "schema": {
48082              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48083            }
48084          },
48085          {
48086            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48087            "in": "query",
48088            "name": "dryRun",
48089            "type": "string",
48090            "uniqueItems": true
48091          },
48092          {
48093            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48094            "in": "query",
48095            "name": "fieldManager",
48096            "type": "string",
48097            "uniqueItems": true
48098          }
48099        ],
48100        "produces": [
48101          "application/json",
48102          "application/yaml",
48103          "application/vnd.kubernetes.protobuf"
48104        ],
48105        "responses": {
48106          "200": {
48107            "description": "OK",
48108            "schema": {
48109              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48110            }
48111          },
48112          "201": {
48113            "description": "Created",
48114            "schema": {
48115              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48116            }
48117          },
48118          "401": {
48119            "description": "Unauthorized"
48120          }
48121        },
48122        "schemes": [
48123          "https"
48124        ],
48125        "tags": [
48126          "apps_v1"
48127        ],
48128        "x-kubernetes-action": "put",
48129        "x-kubernetes-group-version-kind": {
48130          "group": "apps",
48131          "kind": "ReplicaSet",
48132          "version": "v1"
48133        }
48134      }
48135    },
48136    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": {
48137      "get": {
48138        "consumes": [
48139          "*/*"
48140        ],
48141        "description": "read scale of the specified ReplicaSet",
48142        "operationId": "readAppsV1NamespacedReplicaSetScale",
48143        "produces": [
48144          "application/json",
48145          "application/yaml",
48146          "application/vnd.kubernetes.protobuf"
48147        ],
48148        "responses": {
48149          "200": {
48150            "description": "OK",
48151            "schema": {
48152              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
48153            }
48154          },
48155          "401": {
48156            "description": "Unauthorized"
48157          }
48158        },
48159        "schemes": [
48160          "https"
48161        ],
48162        "tags": [
48163          "apps_v1"
48164        ],
48165        "x-kubernetes-action": "get",
48166        "x-kubernetes-group-version-kind": {
48167          "group": "autoscaling",
48168          "kind": "Scale",
48169          "version": "v1"
48170        }
48171      },
48172      "parameters": [
48173        {
48174          "description": "name of the Scale",
48175          "in": "path",
48176          "name": "name",
48177          "required": true,
48178          "type": "string",
48179          "uniqueItems": true
48180        },
48181        {
48182          "description": "object name and auth scope, such as for teams and projects",
48183          "in": "path",
48184          "name": "namespace",
48185          "required": true,
48186          "type": "string",
48187          "uniqueItems": true
48188        },
48189        {
48190          "description": "If 'true', then the output is pretty printed.",
48191          "in": "query",
48192          "name": "pretty",
48193          "type": "string",
48194          "uniqueItems": true
48195        }
48196      ],
48197      "patch": {
48198        "consumes": [
48199          "application/json-patch+json",
48200          "application/merge-patch+json",
48201          "application/strategic-merge-patch+json"
48202        ],
48203        "description": "partially update scale of the specified ReplicaSet",
48204        "operationId": "patchAppsV1NamespacedReplicaSetScale",
48205        "parameters": [
48206          {
48207            "in": "body",
48208            "name": "body",
48209            "required": true,
48210            "schema": {
48211              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48212            }
48213          },
48214          {
48215            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48216            "in": "query",
48217            "name": "dryRun",
48218            "type": "string",
48219            "uniqueItems": true
48220          },
48221          {
48222            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
48223            "in": "query",
48224            "name": "fieldManager",
48225            "type": "string",
48226            "uniqueItems": true
48227          },
48228          {
48229            "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.",
48230            "in": "query",
48231            "name": "force",
48232            "type": "boolean",
48233            "uniqueItems": true
48234          }
48235        ],
48236        "produces": [
48237          "application/json",
48238          "application/yaml",
48239          "application/vnd.kubernetes.protobuf"
48240        ],
48241        "responses": {
48242          "200": {
48243            "description": "OK",
48244            "schema": {
48245              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
48246            }
48247          },
48248          "401": {
48249            "description": "Unauthorized"
48250          }
48251        },
48252        "schemes": [
48253          "https"
48254        ],
48255        "tags": [
48256          "apps_v1"
48257        ],
48258        "x-kubernetes-action": "patch",
48259        "x-kubernetes-group-version-kind": {
48260          "group": "autoscaling",
48261          "kind": "Scale",
48262          "version": "v1"
48263        }
48264      },
48265      "put": {
48266        "consumes": [
48267          "*/*"
48268        ],
48269        "description": "replace scale of the specified ReplicaSet",
48270        "operationId": "replaceAppsV1NamespacedReplicaSetScale",
48271        "parameters": [
48272          {
48273            "in": "body",
48274            "name": "body",
48275            "required": true,
48276            "schema": {
48277              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
48278            }
48279          },
48280          {
48281            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48282            "in": "query",
48283            "name": "dryRun",
48284            "type": "string",
48285            "uniqueItems": true
48286          },
48287          {
48288            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48289            "in": "query",
48290            "name": "fieldManager",
48291            "type": "string",
48292            "uniqueItems": true
48293          }
48294        ],
48295        "produces": [
48296          "application/json",
48297          "application/yaml",
48298          "application/vnd.kubernetes.protobuf"
48299        ],
48300        "responses": {
48301          "200": {
48302            "description": "OK",
48303            "schema": {
48304              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
48305            }
48306          },
48307          "201": {
48308            "description": "Created",
48309            "schema": {
48310              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
48311            }
48312          },
48313          "401": {
48314            "description": "Unauthorized"
48315          }
48316        },
48317        "schemes": [
48318          "https"
48319        ],
48320        "tags": [
48321          "apps_v1"
48322        ],
48323        "x-kubernetes-action": "put",
48324        "x-kubernetes-group-version-kind": {
48325          "group": "autoscaling",
48326          "kind": "Scale",
48327          "version": "v1"
48328        }
48329      }
48330    },
48331    "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": {
48332      "get": {
48333        "consumes": [
48334          "*/*"
48335        ],
48336        "description": "read status of the specified ReplicaSet",
48337        "operationId": "readAppsV1NamespacedReplicaSetStatus",
48338        "produces": [
48339          "application/json",
48340          "application/yaml",
48341          "application/vnd.kubernetes.protobuf"
48342        ],
48343        "responses": {
48344          "200": {
48345            "description": "OK",
48346            "schema": {
48347              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48348            }
48349          },
48350          "401": {
48351            "description": "Unauthorized"
48352          }
48353        },
48354        "schemes": [
48355          "https"
48356        ],
48357        "tags": [
48358          "apps_v1"
48359        ],
48360        "x-kubernetes-action": "get",
48361        "x-kubernetes-group-version-kind": {
48362          "group": "apps",
48363          "kind": "ReplicaSet",
48364          "version": "v1"
48365        }
48366      },
48367      "parameters": [
48368        {
48369          "description": "name of the ReplicaSet",
48370          "in": "path",
48371          "name": "name",
48372          "required": true,
48373          "type": "string",
48374          "uniqueItems": true
48375        },
48376        {
48377          "description": "object name and auth scope, such as for teams and projects",
48378          "in": "path",
48379          "name": "namespace",
48380          "required": true,
48381          "type": "string",
48382          "uniqueItems": true
48383        },
48384        {
48385          "description": "If 'true', then the output is pretty printed.",
48386          "in": "query",
48387          "name": "pretty",
48388          "type": "string",
48389          "uniqueItems": true
48390        }
48391      ],
48392      "patch": {
48393        "consumes": [
48394          "application/json-patch+json",
48395          "application/merge-patch+json",
48396          "application/strategic-merge-patch+json"
48397        ],
48398        "description": "partially update status of the specified ReplicaSet",
48399        "operationId": "patchAppsV1NamespacedReplicaSetStatus",
48400        "parameters": [
48401          {
48402            "in": "body",
48403            "name": "body",
48404            "required": true,
48405            "schema": {
48406              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
48407            }
48408          },
48409          {
48410            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48411            "in": "query",
48412            "name": "dryRun",
48413            "type": "string",
48414            "uniqueItems": true
48415          },
48416          {
48417            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
48418            "in": "query",
48419            "name": "fieldManager",
48420            "type": "string",
48421            "uniqueItems": true
48422          },
48423          {
48424            "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.",
48425            "in": "query",
48426            "name": "force",
48427            "type": "boolean",
48428            "uniqueItems": true
48429          }
48430        ],
48431        "produces": [
48432          "application/json",
48433          "application/yaml",
48434          "application/vnd.kubernetes.protobuf"
48435        ],
48436        "responses": {
48437          "200": {
48438            "description": "OK",
48439            "schema": {
48440              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48441            }
48442          },
48443          "401": {
48444            "description": "Unauthorized"
48445          }
48446        },
48447        "schemes": [
48448          "https"
48449        ],
48450        "tags": [
48451          "apps_v1"
48452        ],
48453        "x-kubernetes-action": "patch",
48454        "x-kubernetes-group-version-kind": {
48455          "group": "apps",
48456          "kind": "ReplicaSet",
48457          "version": "v1"
48458        }
48459      },
48460      "put": {
48461        "consumes": [
48462          "*/*"
48463        ],
48464        "description": "replace status of the specified ReplicaSet",
48465        "operationId": "replaceAppsV1NamespacedReplicaSetStatus",
48466        "parameters": [
48467          {
48468            "in": "body",
48469            "name": "body",
48470            "required": true,
48471            "schema": {
48472              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48473            }
48474          },
48475          {
48476            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48477            "in": "query",
48478            "name": "dryRun",
48479            "type": "string",
48480            "uniqueItems": true
48481          },
48482          {
48483            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48484            "in": "query",
48485            "name": "fieldManager",
48486            "type": "string",
48487            "uniqueItems": true
48488          }
48489        ],
48490        "produces": [
48491          "application/json",
48492          "application/yaml",
48493          "application/vnd.kubernetes.protobuf"
48494        ],
48495        "responses": {
48496          "200": {
48497            "description": "OK",
48498            "schema": {
48499              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48500            }
48501          },
48502          "201": {
48503            "description": "Created",
48504            "schema": {
48505              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet"
48506            }
48507          },
48508          "401": {
48509            "description": "Unauthorized"
48510          }
48511        },
48512        "schemes": [
48513          "https"
48514        ],
48515        "tags": [
48516          "apps_v1"
48517        ],
48518        "x-kubernetes-action": "put",
48519        "x-kubernetes-group-version-kind": {
48520          "group": "apps",
48521          "kind": "ReplicaSet",
48522          "version": "v1"
48523        }
48524      }
48525    },
48526    "/apis/apps/v1/namespaces/{namespace}/statefulsets": {
48527      "delete": {
48528        "consumes": [
48529          "*/*"
48530        ],
48531        "description": "delete collection of StatefulSet",
48532        "operationId": "deleteAppsV1CollectionNamespacedStatefulSet",
48533        "parameters": [
48534          {
48535            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
48536            "in": "query",
48537            "name": "allowWatchBookmarks",
48538            "type": "boolean",
48539            "uniqueItems": true
48540          },
48541          {
48542            "in": "body",
48543            "name": "body",
48544            "schema": {
48545              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48546            }
48547          },
48548          {
48549            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48550            "in": "query",
48551            "name": "continue",
48552            "type": "string",
48553            "uniqueItems": true
48554          },
48555          {
48556            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48557            "in": "query",
48558            "name": "dryRun",
48559            "type": "string",
48560            "uniqueItems": true
48561          },
48562          {
48563            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48564            "in": "query",
48565            "name": "fieldSelector",
48566            "type": "string",
48567            "uniqueItems": true
48568          },
48569          {
48570            "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.",
48571            "in": "query",
48572            "name": "gracePeriodSeconds",
48573            "type": "integer",
48574            "uniqueItems": true
48575          },
48576          {
48577            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48578            "in": "query",
48579            "name": "labelSelector",
48580            "type": "string",
48581            "uniqueItems": true
48582          },
48583          {
48584            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48585            "in": "query",
48586            "name": "limit",
48587            "type": "integer",
48588            "uniqueItems": true
48589          },
48590          {
48591            "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.",
48592            "in": "query",
48593            "name": "orphanDependents",
48594            "type": "boolean",
48595            "uniqueItems": true
48596          },
48597          {
48598            "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.",
48599            "in": "query",
48600            "name": "propagationPolicy",
48601            "type": "string",
48602            "uniqueItems": true
48603          },
48604          {
48605            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
48606            "in": "query",
48607            "name": "resourceVersion",
48608            "type": "string",
48609            "uniqueItems": true
48610          },
48611          {
48612            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48613            "in": "query",
48614            "name": "timeoutSeconds",
48615            "type": "integer",
48616            "uniqueItems": true
48617          },
48618          {
48619            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48620            "in": "query",
48621            "name": "watch",
48622            "type": "boolean",
48623            "uniqueItems": true
48624          }
48625        ],
48626        "produces": [
48627          "application/json",
48628          "application/yaml",
48629          "application/vnd.kubernetes.protobuf"
48630        ],
48631        "responses": {
48632          "200": {
48633            "description": "OK",
48634            "schema": {
48635              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48636            }
48637          },
48638          "401": {
48639            "description": "Unauthorized"
48640          }
48641        },
48642        "schemes": [
48643          "https"
48644        ],
48645        "tags": [
48646          "apps_v1"
48647        ],
48648        "x-kubernetes-action": "deletecollection",
48649        "x-kubernetes-group-version-kind": {
48650          "group": "apps",
48651          "kind": "StatefulSet",
48652          "version": "v1"
48653        }
48654      },
48655      "get": {
48656        "consumes": [
48657          "*/*"
48658        ],
48659        "description": "list or watch objects of kind StatefulSet",
48660        "operationId": "listAppsV1NamespacedStatefulSet",
48661        "parameters": [
48662          {
48663            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
48664            "in": "query",
48665            "name": "allowWatchBookmarks",
48666            "type": "boolean",
48667            "uniqueItems": true
48668          },
48669          {
48670            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
48671            "in": "query",
48672            "name": "continue",
48673            "type": "string",
48674            "uniqueItems": true
48675          },
48676          {
48677            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
48678            "in": "query",
48679            "name": "fieldSelector",
48680            "type": "string",
48681            "uniqueItems": true
48682          },
48683          {
48684            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
48685            "in": "query",
48686            "name": "labelSelector",
48687            "type": "string",
48688            "uniqueItems": true
48689          },
48690          {
48691            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
48692            "in": "query",
48693            "name": "limit",
48694            "type": "integer",
48695            "uniqueItems": true
48696          },
48697          {
48698            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
48699            "in": "query",
48700            "name": "resourceVersion",
48701            "type": "string",
48702            "uniqueItems": true
48703          },
48704          {
48705            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
48706            "in": "query",
48707            "name": "timeoutSeconds",
48708            "type": "integer",
48709            "uniqueItems": true
48710          },
48711          {
48712            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
48713            "in": "query",
48714            "name": "watch",
48715            "type": "boolean",
48716            "uniqueItems": true
48717          }
48718        ],
48719        "produces": [
48720          "application/json",
48721          "application/yaml",
48722          "application/vnd.kubernetes.protobuf",
48723          "application/json;stream=watch",
48724          "application/vnd.kubernetes.protobuf;stream=watch"
48725        ],
48726        "responses": {
48727          "200": {
48728            "description": "OK",
48729            "schema": {
48730              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
48731            }
48732          },
48733          "401": {
48734            "description": "Unauthorized"
48735          }
48736        },
48737        "schemes": [
48738          "https"
48739        ],
48740        "tags": [
48741          "apps_v1"
48742        ],
48743        "x-kubernetes-action": "list",
48744        "x-kubernetes-group-version-kind": {
48745          "group": "apps",
48746          "kind": "StatefulSet",
48747          "version": "v1"
48748        }
48749      },
48750      "parameters": [
48751        {
48752          "description": "object name and auth scope, such as for teams and projects",
48753          "in": "path",
48754          "name": "namespace",
48755          "required": true,
48756          "type": "string",
48757          "uniqueItems": true
48758        },
48759        {
48760          "description": "If 'true', then the output is pretty printed.",
48761          "in": "query",
48762          "name": "pretty",
48763          "type": "string",
48764          "uniqueItems": true
48765        }
48766      ],
48767      "post": {
48768        "consumes": [
48769          "*/*"
48770        ],
48771        "description": "create a StatefulSet",
48772        "operationId": "createAppsV1NamespacedStatefulSet",
48773        "parameters": [
48774          {
48775            "in": "body",
48776            "name": "body",
48777            "required": true,
48778            "schema": {
48779              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
48780            }
48781          },
48782          {
48783            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48784            "in": "query",
48785            "name": "dryRun",
48786            "type": "string",
48787            "uniqueItems": true
48788          },
48789          {
48790            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
48791            "in": "query",
48792            "name": "fieldManager",
48793            "type": "string",
48794            "uniqueItems": true
48795          }
48796        ],
48797        "produces": [
48798          "application/json",
48799          "application/yaml",
48800          "application/vnd.kubernetes.protobuf"
48801        ],
48802        "responses": {
48803          "200": {
48804            "description": "OK",
48805            "schema": {
48806              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
48807            }
48808          },
48809          "201": {
48810            "description": "Created",
48811            "schema": {
48812              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
48813            }
48814          },
48815          "202": {
48816            "description": "Accepted",
48817            "schema": {
48818              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
48819            }
48820          },
48821          "401": {
48822            "description": "Unauthorized"
48823          }
48824        },
48825        "schemes": [
48826          "https"
48827        ],
48828        "tags": [
48829          "apps_v1"
48830        ],
48831        "x-kubernetes-action": "post",
48832        "x-kubernetes-group-version-kind": {
48833          "group": "apps",
48834          "kind": "StatefulSet",
48835          "version": "v1"
48836        }
48837      }
48838    },
48839    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": {
48840      "delete": {
48841        "consumes": [
48842          "*/*"
48843        ],
48844        "description": "delete a StatefulSet",
48845        "operationId": "deleteAppsV1NamespacedStatefulSet",
48846        "parameters": [
48847          {
48848            "in": "body",
48849            "name": "body",
48850            "schema": {
48851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
48852            }
48853          },
48854          {
48855            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
48856            "in": "query",
48857            "name": "dryRun",
48858            "type": "string",
48859            "uniqueItems": true
48860          },
48861          {
48862            "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.",
48863            "in": "query",
48864            "name": "gracePeriodSeconds",
48865            "type": "integer",
48866            "uniqueItems": true
48867          },
48868          {
48869            "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.",
48870            "in": "query",
48871            "name": "orphanDependents",
48872            "type": "boolean",
48873            "uniqueItems": true
48874          },
48875          {
48876            "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.",
48877            "in": "query",
48878            "name": "propagationPolicy",
48879            "type": "string",
48880            "uniqueItems": true
48881          }
48882        ],
48883        "produces": [
48884          "application/json",
48885          "application/yaml",
48886          "application/vnd.kubernetes.protobuf"
48887        ],
48888        "responses": {
48889          "200": {
48890            "description": "OK",
48891            "schema": {
48892              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48893            }
48894          },
48895          "202": {
48896            "description": "Accepted",
48897            "schema": {
48898              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
48899            }
48900          },
48901          "401": {
48902            "description": "Unauthorized"
48903          }
48904        },
48905        "schemes": [
48906          "https"
48907        ],
48908        "tags": [
48909          "apps_v1"
48910        ],
48911        "x-kubernetes-action": "delete",
48912        "x-kubernetes-group-version-kind": {
48913          "group": "apps",
48914          "kind": "StatefulSet",
48915          "version": "v1"
48916        }
48917      },
48918      "get": {
48919        "consumes": [
48920          "*/*"
48921        ],
48922        "description": "read the specified StatefulSet",
48923        "operationId": "readAppsV1NamespacedStatefulSet",
48924        "parameters": [
48925          {
48926            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
48927            "in": "query",
48928            "name": "exact",
48929            "type": "boolean",
48930            "uniqueItems": true
48931          },
48932          {
48933            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
48934            "in": "query",
48935            "name": "export",
48936            "type": "boolean",
48937            "uniqueItems": true
48938          }
48939        ],
48940        "produces": [
48941          "application/json",
48942          "application/yaml",
48943          "application/vnd.kubernetes.protobuf"
48944        ],
48945        "responses": {
48946          "200": {
48947            "description": "OK",
48948            "schema": {
48949              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
48950            }
48951          },
48952          "401": {
48953            "description": "Unauthorized"
48954          }
48955        },
48956        "schemes": [
48957          "https"
48958        ],
48959        "tags": [
48960          "apps_v1"
48961        ],
48962        "x-kubernetes-action": "get",
48963        "x-kubernetes-group-version-kind": {
48964          "group": "apps",
48965          "kind": "StatefulSet",
48966          "version": "v1"
48967        }
48968      },
48969      "parameters": [
48970        {
48971          "description": "name of the StatefulSet",
48972          "in": "path",
48973          "name": "name",
48974          "required": true,
48975          "type": "string",
48976          "uniqueItems": true
48977        },
48978        {
48979          "description": "object name and auth scope, such as for teams and projects",
48980          "in": "path",
48981          "name": "namespace",
48982          "required": true,
48983          "type": "string",
48984          "uniqueItems": true
48985        },
48986        {
48987          "description": "If 'true', then the output is pretty printed.",
48988          "in": "query",
48989          "name": "pretty",
48990          "type": "string",
48991          "uniqueItems": true
48992        }
48993      ],
48994      "patch": {
48995        "consumes": [
48996          "application/json-patch+json",
48997          "application/merge-patch+json",
48998          "application/strategic-merge-patch+json"
48999        ],
49000        "description": "partially update the specified StatefulSet",
49001        "operationId": "patchAppsV1NamespacedStatefulSet",
49002        "parameters": [
49003          {
49004            "in": "body",
49005            "name": "body",
49006            "required": true,
49007            "schema": {
49008              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49009            }
49010          },
49011          {
49012            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49013            "in": "query",
49014            "name": "dryRun",
49015            "type": "string",
49016            "uniqueItems": true
49017          },
49018          {
49019            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
49020            "in": "query",
49021            "name": "fieldManager",
49022            "type": "string",
49023            "uniqueItems": true
49024          },
49025          {
49026            "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.",
49027            "in": "query",
49028            "name": "force",
49029            "type": "boolean",
49030            "uniqueItems": true
49031          }
49032        ],
49033        "produces": [
49034          "application/json",
49035          "application/yaml",
49036          "application/vnd.kubernetes.protobuf"
49037        ],
49038        "responses": {
49039          "200": {
49040            "description": "OK",
49041            "schema": {
49042              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49043            }
49044          },
49045          "401": {
49046            "description": "Unauthorized"
49047          }
49048        },
49049        "schemes": [
49050          "https"
49051        ],
49052        "tags": [
49053          "apps_v1"
49054        ],
49055        "x-kubernetes-action": "patch",
49056        "x-kubernetes-group-version-kind": {
49057          "group": "apps",
49058          "kind": "StatefulSet",
49059          "version": "v1"
49060        }
49061      },
49062      "put": {
49063        "consumes": [
49064          "*/*"
49065        ],
49066        "description": "replace the specified StatefulSet",
49067        "operationId": "replaceAppsV1NamespacedStatefulSet",
49068        "parameters": [
49069          {
49070            "in": "body",
49071            "name": "body",
49072            "required": true,
49073            "schema": {
49074              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49075            }
49076          },
49077          {
49078            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49079            "in": "query",
49080            "name": "dryRun",
49081            "type": "string",
49082            "uniqueItems": true
49083          },
49084          {
49085            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49086            "in": "query",
49087            "name": "fieldManager",
49088            "type": "string",
49089            "uniqueItems": true
49090          }
49091        ],
49092        "produces": [
49093          "application/json",
49094          "application/yaml",
49095          "application/vnd.kubernetes.protobuf"
49096        ],
49097        "responses": {
49098          "200": {
49099            "description": "OK",
49100            "schema": {
49101              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49102            }
49103          },
49104          "201": {
49105            "description": "Created",
49106            "schema": {
49107              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49108            }
49109          },
49110          "401": {
49111            "description": "Unauthorized"
49112          }
49113        },
49114        "schemes": [
49115          "https"
49116        ],
49117        "tags": [
49118          "apps_v1"
49119        ],
49120        "x-kubernetes-action": "put",
49121        "x-kubernetes-group-version-kind": {
49122          "group": "apps",
49123          "kind": "StatefulSet",
49124          "version": "v1"
49125        }
49126      }
49127    },
49128    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": {
49129      "get": {
49130        "consumes": [
49131          "*/*"
49132        ],
49133        "description": "read scale of the specified StatefulSet",
49134        "operationId": "readAppsV1NamespacedStatefulSetScale",
49135        "produces": [
49136          "application/json",
49137          "application/yaml",
49138          "application/vnd.kubernetes.protobuf"
49139        ],
49140        "responses": {
49141          "200": {
49142            "description": "OK",
49143            "schema": {
49144              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49145            }
49146          },
49147          "401": {
49148            "description": "Unauthorized"
49149          }
49150        },
49151        "schemes": [
49152          "https"
49153        ],
49154        "tags": [
49155          "apps_v1"
49156        ],
49157        "x-kubernetes-action": "get",
49158        "x-kubernetes-group-version-kind": {
49159          "group": "autoscaling",
49160          "kind": "Scale",
49161          "version": "v1"
49162        }
49163      },
49164      "parameters": [
49165        {
49166          "description": "name of the Scale",
49167          "in": "path",
49168          "name": "name",
49169          "required": true,
49170          "type": "string",
49171          "uniqueItems": true
49172        },
49173        {
49174          "description": "object name and auth scope, such as for teams and projects",
49175          "in": "path",
49176          "name": "namespace",
49177          "required": true,
49178          "type": "string",
49179          "uniqueItems": true
49180        },
49181        {
49182          "description": "If 'true', then the output is pretty printed.",
49183          "in": "query",
49184          "name": "pretty",
49185          "type": "string",
49186          "uniqueItems": true
49187        }
49188      ],
49189      "patch": {
49190        "consumes": [
49191          "application/json-patch+json",
49192          "application/merge-patch+json",
49193          "application/strategic-merge-patch+json"
49194        ],
49195        "description": "partially update scale of the specified StatefulSet",
49196        "operationId": "patchAppsV1NamespacedStatefulSetScale",
49197        "parameters": [
49198          {
49199            "in": "body",
49200            "name": "body",
49201            "required": true,
49202            "schema": {
49203              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49204            }
49205          },
49206          {
49207            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49208            "in": "query",
49209            "name": "dryRun",
49210            "type": "string",
49211            "uniqueItems": true
49212          },
49213          {
49214            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
49215            "in": "query",
49216            "name": "fieldManager",
49217            "type": "string",
49218            "uniqueItems": true
49219          },
49220          {
49221            "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.",
49222            "in": "query",
49223            "name": "force",
49224            "type": "boolean",
49225            "uniqueItems": true
49226          }
49227        ],
49228        "produces": [
49229          "application/json",
49230          "application/yaml",
49231          "application/vnd.kubernetes.protobuf"
49232        ],
49233        "responses": {
49234          "200": {
49235            "description": "OK",
49236            "schema": {
49237              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49238            }
49239          },
49240          "401": {
49241            "description": "Unauthorized"
49242          }
49243        },
49244        "schemes": [
49245          "https"
49246        ],
49247        "tags": [
49248          "apps_v1"
49249        ],
49250        "x-kubernetes-action": "patch",
49251        "x-kubernetes-group-version-kind": {
49252          "group": "autoscaling",
49253          "kind": "Scale",
49254          "version": "v1"
49255        }
49256      },
49257      "put": {
49258        "consumes": [
49259          "*/*"
49260        ],
49261        "description": "replace scale of the specified StatefulSet",
49262        "operationId": "replaceAppsV1NamespacedStatefulSetScale",
49263        "parameters": [
49264          {
49265            "in": "body",
49266            "name": "body",
49267            "required": true,
49268            "schema": {
49269              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49270            }
49271          },
49272          {
49273            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49274            "in": "query",
49275            "name": "dryRun",
49276            "type": "string",
49277            "uniqueItems": true
49278          },
49279          {
49280            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49281            "in": "query",
49282            "name": "fieldManager",
49283            "type": "string",
49284            "uniqueItems": true
49285          }
49286        ],
49287        "produces": [
49288          "application/json",
49289          "application/yaml",
49290          "application/vnd.kubernetes.protobuf"
49291        ],
49292        "responses": {
49293          "200": {
49294            "description": "OK",
49295            "schema": {
49296              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49297            }
49298          },
49299          "201": {
49300            "description": "Created",
49301            "schema": {
49302              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale"
49303            }
49304          },
49305          "401": {
49306            "description": "Unauthorized"
49307          }
49308        },
49309        "schemes": [
49310          "https"
49311        ],
49312        "tags": [
49313          "apps_v1"
49314        ],
49315        "x-kubernetes-action": "put",
49316        "x-kubernetes-group-version-kind": {
49317          "group": "autoscaling",
49318          "kind": "Scale",
49319          "version": "v1"
49320        }
49321      }
49322    },
49323    "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": {
49324      "get": {
49325        "consumes": [
49326          "*/*"
49327        ],
49328        "description": "read status of the specified StatefulSet",
49329        "operationId": "readAppsV1NamespacedStatefulSetStatus",
49330        "produces": [
49331          "application/json",
49332          "application/yaml",
49333          "application/vnd.kubernetes.protobuf"
49334        ],
49335        "responses": {
49336          "200": {
49337            "description": "OK",
49338            "schema": {
49339              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49340            }
49341          },
49342          "401": {
49343            "description": "Unauthorized"
49344          }
49345        },
49346        "schemes": [
49347          "https"
49348        ],
49349        "tags": [
49350          "apps_v1"
49351        ],
49352        "x-kubernetes-action": "get",
49353        "x-kubernetes-group-version-kind": {
49354          "group": "apps",
49355          "kind": "StatefulSet",
49356          "version": "v1"
49357        }
49358      },
49359      "parameters": [
49360        {
49361          "description": "name of the StatefulSet",
49362          "in": "path",
49363          "name": "name",
49364          "required": true,
49365          "type": "string",
49366          "uniqueItems": true
49367        },
49368        {
49369          "description": "object name and auth scope, such as for teams and projects",
49370          "in": "path",
49371          "name": "namespace",
49372          "required": true,
49373          "type": "string",
49374          "uniqueItems": true
49375        },
49376        {
49377          "description": "If 'true', then the output is pretty printed.",
49378          "in": "query",
49379          "name": "pretty",
49380          "type": "string",
49381          "uniqueItems": true
49382        }
49383      ],
49384      "patch": {
49385        "consumes": [
49386          "application/json-patch+json",
49387          "application/merge-patch+json",
49388          "application/strategic-merge-patch+json"
49389        ],
49390        "description": "partially update status of the specified StatefulSet",
49391        "operationId": "patchAppsV1NamespacedStatefulSetStatus",
49392        "parameters": [
49393          {
49394            "in": "body",
49395            "name": "body",
49396            "required": true,
49397            "schema": {
49398              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
49399            }
49400          },
49401          {
49402            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49403            "in": "query",
49404            "name": "dryRun",
49405            "type": "string",
49406            "uniqueItems": true
49407          },
49408          {
49409            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
49410            "in": "query",
49411            "name": "fieldManager",
49412            "type": "string",
49413            "uniqueItems": true
49414          },
49415          {
49416            "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.",
49417            "in": "query",
49418            "name": "force",
49419            "type": "boolean",
49420            "uniqueItems": true
49421          }
49422        ],
49423        "produces": [
49424          "application/json",
49425          "application/yaml",
49426          "application/vnd.kubernetes.protobuf"
49427        ],
49428        "responses": {
49429          "200": {
49430            "description": "OK",
49431            "schema": {
49432              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49433            }
49434          },
49435          "401": {
49436            "description": "Unauthorized"
49437          }
49438        },
49439        "schemes": [
49440          "https"
49441        ],
49442        "tags": [
49443          "apps_v1"
49444        ],
49445        "x-kubernetes-action": "patch",
49446        "x-kubernetes-group-version-kind": {
49447          "group": "apps",
49448          "kind": "StatefulSet",
49449          "version": "v1"
49450        }
49451      },
49452      "put": {
49453        "consumes": [
49454          "*/*"
49455        ],
49456        "description": "replace status of the specified StatefulSet",
49457        "operationId": "replaceAppsV1NamespacedStatefulSetStatus",
49458        "parameters": [
49459          {
49460            "in": "body",
49461            "name": "body",
49462            "required": true,
49463            "schema": {
49464              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49465            }
49466          },
49467          {
49468            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
49469            "in": "query",
49470            "name": "dryRun",
49471            "type": "string",
49472            "uniqueItems": true
49473          },
49474          {
49475            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
49476            "in": "query",
49477            "name": "fieldManager",
49478            "type": "string",
49479            "uniqueItems": true
49480          }
49481        ],
49482        "produces": [
49483          "application/json",
49484          "application/yaml",
49485          "application/vnd.kubernetes.protobuf"
49486        ],
49487        "responses": {
49488          "200": {
49489            "description": "OK",
49490            "schema": {
49491              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49492            }
49493          },
49494          "201": {
49495            "description": "Created",
49496            "schema": {
49497              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet"
49498            }
49499          },
49500          "401": {
49501            "description": "Unauthorized"
49502          }
49503        },
49504        "schemes": [
49505          "https"
49506        ],
49507        "tags": [
49508          "apps_v1"
49509        ],
49510        "x-kubernetes-action": "put",
49511        "x-kubernetes-group-version-kind": {
49512          "group": "apps",
49513          "kind": "StatefulSet",
49514          "version": "v1"
49515        }
49516      }
49517    },
49518    "/apis/apps/v1/replicasets": {
49519      "get": {
49520        "consumes": [
49521          "*/*"
49522        ],
49523        "description": "list or watch objects of kind ReplicaSet",
49524        "operationId": "listAppsV1ReplicaSetForAllNamespaces",
49525        "produces": [
49526          "application/json",
49527          "application/yaml",
49528          "application/vnd.kubernetes.protobuf",
49529          "application/json;stream=watch",
49530          "application/vnd.kubernetes.protobuf;stream=watch"
49531        ],
49532        "responses": {
49533          "200": {
49534            "description": "OK",
49535            "schema": {
49536              "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSetList"
49537            }
49538          },
49539          "401": {
49540            "description": "Unauthorized"
49541          }
49542        },
49543        "schemes": [
49544          "https"
49545        ],
49546        "tags": [
49547          "apps_v1"
49548        ],
49549        "x-kubernetes-action": "list",
49550        "x-kubernetes-group-version-kind": {
49551          "group": "apps",
49552          "kind": "ReplicaSet",
49553          "version": "v1"
49554        }
49555      },
49556      "parameters": [
49557        {
49558          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
49559          "in": "query",
49560          "name": "allowWatchBookmarks",
49561          "type": "boolean",
49562          "uniqueItems": true
49563        },
49564        {
49565          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49566          "in": "query",
49567          "name": "continue",
49568          "type": "string",
49569          "uniqueItems": true
49570        },
49571        {
49572          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49573          "in": "query",
49574          "name": "fieldSelector",
49575          "type": "string",
49576          "uniqueItems": true
49577        },
49578        {
49579          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49580          "in": "query",
49581          "name": "labelSelector",
49582          "type": "string",
49583          "uniqueItems": true
49584        },
49585        {
49586          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49587          "in": "query",
49588          "name": "limit",
49589          "type": "integer",
49590          "uniqueItems": true
49591        },
49592        {
49593          "description": "If 'true', then the output is pretty printed.",
49594          "in": "query",
49595          "name": "pretty",
49596          "type": "string",
49597          "uniqueItems": true
49598        },
49599        {
49600          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
49601          "in": "query",
49602          "name": "resourceVersion",
49603          "type": "string",
49604          "uniqueItems": true
49605        },
49606        {
49607          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49608          "in": "query",
49609          "name": "timeoutSeconds",
49610          "type": "integer",
49611          "uniqueItems": true
49612        },
49613        {
49614          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49615          "in": "query",
49616          "name": "watch",
49617          "type": "boolean",
49618          "uniqueItems": true
49619        }
49620      ]
49621    },
49622    "/apis/apps/v1/statefulsets": {
49623      "get": {
49624        "consumes": [
49625          "*/*"
49626        ],
49627        "description": "list or watch objects of kind StatefulSet",
49628        "operationId": "listAppsV1StatefulSetForAllNamespaces",
49629        "produces": [
49630          "application/json",
49631          "application/yaml",
49632          "application/vnd.kubernetes.protobuf",
49633          "application/json;stream=watch",
49634          "application/vnd.kubernetes.protobuf;stream=watch"
49635        ],
49636        "responses": {
49637          "200": {
49638            "description": "OK",
49639            "schema": {
49640              "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetList"
49641            }
49642          },
49643          "401": {
49644            "description": "Unauthorized"
49645          }
49646        },
49647        "schemes": [
49648          "https"
49649        ],
49650        "tags": [
49651          "apps_v1"
49652        ],
49653        "x-kubernetes-action": "list",
49654        "x-kubernetes-group-version-kind": {
49655          "group": "apps",
49656          "kind": "StatefulSet",
49657          "version": "v1"
49658        }
49659      },
49660      "parameters": [
49661        {
49662          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
49663          "in": "query",
49664          "name": "allowWatchBookmarks",
49665          "type": "boolean",
49666          "uniqueItems": true
49667        },
49668        {
49669          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49670          "in": "query",
49671          "name": "continue",
49672          "type": "string",
49673          "uniqueItems": true
49674        },
49675        {
49676          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49677          "in": "query",
49678          "name": "fieldSelector",
49679          "type": "string",
49680          "uniqueItems": true
49681        },
49682        {
49683          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49684          "in": "query",
49685          "name": "labelSelector",
49686          "type": "string",
49687          "uniqueItems": true
49688        },
49689        {
49690          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49691          "in": "query",
49692          "name": "limit",
49693          "type": "integer",
49694          "uniqueItems": true
49695        },
49696        {
49697          "description": "If 'true', then the output is pretty printed.",
49698          "in": "query",
49699          "name": "pretty",
49700          "type": "string",
49701          "uniqueItems": true
49702        },
49703        {
49704          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
49705          "in": "query",
49706          "name": "resourceVersion",
49707          "type": "string",
49708          "uniqueItems": true
49709        },
49710        {
49711          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49712          "in": "query",
49713          "name": "timeoutSeconds",
49714          "type": "integer",
49715          "uniqueItems": true
49716        },
49717        {
49718          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49719          "in": "query",
49720          "name": "watch",
49721          "type": "boolean",
49722          "uniqueItems": true
49723        }
49724      ]
49725    },
49726    "/apis/apps/v1/watch/controllerrevisions": {
49727      "get": {
49728        "consumes": [
49729          "*/*"
49730        ],
49731        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
49732        "operationId": "watchAppsV1ControllerRevisionListForAllNamespaces",
49733        "produces": [
49734          "application/json",
49735          "application/yaml",
49736          "application/vnd.kubernetes.protobuf",
49737          "application/json;stream=watch",
49738          "application/vnd.kubernetes.protobuf;stream=watch"
49739        ],
49740        "responses": {
49741          "200": {
49742            "description": "OK",
49743            "schema": {
49744              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
49745            }
49746          },
49747          "401": {
49748            "description": "Unauthorized"
49749          }
49750        },
49751        "schemes": [
49752          "https"
49753        ],
49754        "tags": [
49755          "apps_v1"
49756        ],
49757        "x-kubernetes-action": "watchlist",
49758        "x-kubernetes-group-version-kind": {
49759          "group": "apps",
49760          "kind": "ControllerRevision",
49761          "version": "v1"
49762        }
49763      },
49764      "parameters": [
49765        {
49766          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
49767          "in": "query",
49768          "name": "allowWatchBookmarks",
49769          "type": "boolean",
49770          "uniqueItems": true
49771        },
49772        {
49773          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49774          "in": "query",
49775          "name": "continue",
49776          "type": "string",
49777          "uniqueItems": true
49778        },
49779        {
49780          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49781          "in": "query",
49782          "name": "fieldSelector",
49783          "type": "string",
49784          "uniqueItems": true
49785        },
49786        {
49787          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49788          "in": "query",
49789          "name": "labelSelector",
49790          "type": "string",
49791          "uniqueItems": true
49792        },
49793        {
49794          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49795          "in": "query",
49796          "name": "limit",
49797          "type": "integer",
49798          "uniqueItems": true
49799        },
49800        {
49801          "description": "If 'true', then the output is pretty printed.",
49802          "in": "query",
49803          "name": "pretty",
49804          "type": "string",
49805          "uniqueItems": true
49806        },
49807        {
49808          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
49809          "in": "query",
49810          "name": "resourceVersion",
49811          "type": "string",
49812          "uniqueItems": true
49813        },
49814        {
49815          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49816          "in": "query",
49817          "name": "timeoutSeconds",
49818          "type": "integer",
49819          "uniqueItems": true
49820        },
49821        {
49822          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49823          "in": "query",
49824          "name": "watch",
49825          "type": "boolean",
49826          "uniqueItems": true
49827        }
49828      ]
49829    },
49830    "/apis/apps/v1/watch/daemonsets": {
49831      "get": {
49832        "consumes": [
49833          "*/*"
49834        ],
49835        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
49836        "operationId": "watchAppsV1DaemonSetListForAllNamespaces",
49837        "produces": [
49838          "application/json",
49839          "application/yaml",
49840          "application/vnd.kubernetes.protobuf",
49841          "application/json;stream=watch",
49842          "application/vnd.kubernetes.protobuf;stream=watch"
49843        ],
49844        "responses": {
49845          "200": {
49846            "description": "OK",
49847            "schema": {
49848              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
49849            }
49850          },
49851          "401": {
49852            "description": "Unauthorized"
49853          }
49854        },
49855        "schemes": [
49856          "https"
49857        ],
49858        "tags": [
49859          "apps_v1"
49860        ],
49861        "x-kubernetes-action": "watchlist",
49862        "x-kubernetes-group-version-kind": {
49863          "group": "apps",
49864          "kind": "DaemonSet",
49865          "version": "v1"
49866        }
49867      },
49868      "parameters": [
49869        {
49870          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
49871          "in": "query",
49872          "name": "allowWatchBookmarks",
49873          "type": "boolean",
49874          "uniqueItems": true
49875        },
49876        {
49877          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49878          "in": "query",
49879          "name": "continue",
49880          "type": "string",
49881          "uniqueItems": true
49882        },
49883        {
49884          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49885          "in": "query",
49886          "name": "fieldSelector",
49887          "type": "string",
49888          "uniqueItems": true
49889        },
49890        {
49891          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49892          "in": "query",
49893          "name": "labelSelector",
49894          "type": "string",
49895          "uniqueItems": true
49896        },
49897        {
49898          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
49899          "in": "query",
49900          "name": "limit",
49901          "type": "integer",
49902          "uniqueItems": true
49903        },
49904        {
49905          "description": "If 'true', then the output is pretty printed.",
49906          "in": "query",
49907          "name": "pretty",
49908          "type": "string",
49909          "uniqueItems": true
49910        },
49911        {
49912          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
49913          "in": "query",
49914          "name": "resourceVersion",
49915          "type": "string",
49916          "uniqueItems": true
49917        },
49918        {
49919          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
49920          "in": "query",
49921          "name": "timeoutSeconds",
49922          "type": "integer",
49923          "uniqueItems": true
49924        },
49925        {
49926          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
49927          "in": "query",
49928          "name": "watch",
49929          "type": "boolean",
49930          "uniqueItems": true
49931        }
49932      ]
49933    },
49934    "/apis/apps/v1/watch/deployments": {
49935      "get": {
49936        "consumes": [
49937          "*/*"
49938        ],
49939        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
49940        "operationId": "watchAppsV1DeploymentListForAllNamespaces",
49941        "produces": [
49942          "application/json",
49943          "application/yaml",
49944          "application/vnd.kubernetes.protobuf",
49945          "application/json;stream=watch",
49946          "application/vnd.kubernetes.protobuf;stream=watch"
49947        ],
49948        "responses": {
49949          "200": {
49950            "description": "OK",
49951            "schema": {
49952              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
49953            }
49954          },
49955          "401": {
49956            "description": "Unauthorized"
49957          }
49958        },
49959        "schemes": [
49960          "https"
49961        ],
49962        "tags": [
49963          "apps_v1"
49964        ],
49965        "x-kubernetes-action": "watchlist",
49966        "x-kubernetes-group-version-kind": {
49967          "group": "apps",
49968          "kind": "Deployment",
49969          "version": "v1"
49970        }
49971      },
49972      "parameters": [
49973        {
49974          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
49975          "in": "query",
49976          "name": "allowWatchBookmarks",
49977          "type": "boolean",
49978          "uniqueItems": true
49979        },
49980        {
49981          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
49982          "in": "query",
49983          "name": "continue",
49984          "type": "string",
49985          "uniqueItems": true
49986        },
49987        {
49988          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
49989          "in": "query",
49990          "name": "fieldSelector",
49991          "type": "string",
49992          "uniqueItems": true
49993        },
49994        {
49995          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
49996          "in": "query",
49997          "name": "labelSelector",
49998          "type": "string",
49999          "uniqueItems": true
50000        },
50001        {
50002          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50003          "in": "query",
50004          "name": "limit",
50005          "type": "integer",
50006          "uniqueItems": true
50007        },
50008        {
50009          "description": "If 'true', then the output is pretty printed.",
50010          "in": "query",
50011          "name": "pretty",
50012          "type": "string",
50013          "uniqueItems": true
50014        },
50015        {
50016          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50017          "in": "query",
50018          "name": "resourceVersion",
50019          "type": "string",
50020          "uniqueItems": true
50021        },
50022        {
50023          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50024          "in": "query",
50025          "name": "timeoutSeconds",
50026          "type": "integer",
50027          "uniqueItems": true
50028        },
50029        {
50030          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50031          "in": "query",
50032          "name": "watch",
50033          "type": "boolean",
50034          "uniqueItems": true
50035        }
50036      ]
50037    },
50038    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": {
50039      "get": {
50040        "consumes": [
50041          "*/*"
50042        ],
50043        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
50044        "operationId": "watchAppsV1NamespacedControllerRevisionList",
50045        "produces": [
50046          "application/json",
50047          "application/yaml",
50048          "application/vnd.kubernetes.protobuf",
50049          "application/json;stream=watch",
50050          "application/vnd.kubernetes.protobuf;stream=watch"
50051        ],
50052        "responses": {
50053          "200": {
50054            "description": "OK",
50055            "schema": {
50056              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50057            }
50058          },
50059          "401": {
50060            "description": "Unauthorized"
50061          }
50062        },
50063        "schemes": [
50064          "https"
50065        ],
50066        "tags": [
50067          "apps_v1"
50068        ],
50069        "x-kubernetes-action": "watchlist",
50070        "x-kubernetes-group-version-kind": {
50071          "group": "apps",
50072          "kind": "ControllerRevision",
50073          "version": "v1"
50074        }
50075      },
50076      "parameters": [
50077        {
50078          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50079          "in": "query",
50080          "name": "allowWatchBookmarks",
50081          "type": "boolean",
50082          "uniqueItems": true
50083        },
50084        {
50085          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50086          "in": "query",
50087          "name": "continue",
50088          "type": "string",
50089          "uniqueItems": true
50090        },
50091        {
50092          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50093          "in": "query",
50094          "name": "fieldSelector",
50095          "type": "string",
50096          "uniqueItems": true
50097        },
50098        {
50099          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50100          "in": "query",
50101          "name": "labelSelector",
50102          "type": "string",
50103          "uniqueItems": true
50104        },
50105        {
50106          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50107          "in": "query",
50108          "name": "limit",
50109          "type": "integer",
50110          "uniqueItems": true
50111        },
50112        {
50113          "description": "object name and auth scope, such as for teams and projects",
50114          "in": "path",
50115          "name": "namespace",
50116          "required": true,
50117          "type": "string",
50118          "uniqueItems": true
50119        },
50120        {
50121          "description": "If 'true', then the output is pretty printed.",
50122          "in": "query",
50123          "name": "pretty",
50124          "type": "string",
50125          "uniqueItems": true
50126        },
50127        {
50128          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50129          "in": "query",
50130          "name": "resourceVersion",
50131          "type": "string",
50132          "uniqueItems": true
50133        },
50134        {
50135          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50136          "in": "query",
50137          "name": "timeoutSeconds",
50138          "type": "integer",
50139          "uniqueItems": true
50140        },
50141        {
50142          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50143          "in": "query",
50144          "name": "watch",
50145          "type": "boolean",
50146          "uniqueItems": true
50147        }
50148      ]
50149    },
50150    "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": {
50151      "get": {
50152        "consumes": [
50153          "*/*"
50154        ],
50155        "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.",
50156        "operationId": "watchAppsV1NamespacedControllerRevision",
50157        "produces": [
50158          "application/json",
50159          "application/yaml",
50160          "application/vnd.kubernetes.protobuf",
50161          "application/json;stream=watch",
50162          "application/vnd.kubernetes.protobuf;stream=watch"
50163        ],
50164        "responses": {
50165          "200": {
50166            "description": "OK",
50167            "schema": {
50168              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50169            }
50170          },
50171          "401": {
50172            "description": "Unauthorized"
50173          }
50174        },
50175        "schemes": [
50176          "https"
50177        ],
50178        "tags": [
50179          "apps_v1"
50180        ],
50181        "x-kubernetes-action": "watch",
50182        "x-kubernetes-group-version-kind": {
50183          "group": "apps",
50184          "kind": "ControllerRevision",
50185          "version": "v1"
50186        }
50187      },
50188      "parameters": [
50189        {
50190          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50191          "in": "query",
50192          "name": "allowWatchBookmarks",
50193          "type": "boolean",
50194          "uniqueItems": true
50195        },
50196        {
50197          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50198          "in": "query",
50199          "name": "continue",
50200          "type": "string",
50201          "uniqueItems": true
50202        },
50203        {
50204          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50205          "in": "query",
50206          "name": "fieldSelector",
50207          "type": "string",
50208          "uniqueItems": true
50209        },
50210        {
50211          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50212          "in": "query",
50213          "name": "labelSelector",
50214          "type": "string",
50215          "uniqueItems": true
50216        },
50217        {
50218          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50219          "in": "query",
50220          "name": "limit",
50221          "type": "integer",
50222          "uniqueItems": true
50223        },
50224        {
50225          "description": "name of the ControllerRevision",
50226          "in": "path",
50227          "name": "name",
50228          "required": true,
50229          "type": "string",
50230          "uniqueItems": true
50231        },
50232        {
50233          "description": "object name and auth scope, such as for teams and projects",
50234          "in": "path",
50235          "name": "namespace",
50236          "required": true,
50237          "type": "string",
50238          "uniqueItems": true
50239        },
50240        {
50241          "description": "If 'true', then the output is pretty printed.",
50242          "in": "query",
50243          "name": "pretty",
50244          "type": "string",
50245          "uniqueItems": true
50246        },
50247        {
50248          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50249          "in": "query",
50250          "name": "resourceVersion",
50251          "type": "string",
50252          "uniqueItems": true
50253        },
50254        {
50255          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50256          "in": "query",
50257          "name": "timeoutSeconds",
50258          "type": "integer",
50259          "uniqueItems": true
50260        },
50261        {
50262          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50263          "in": "query",
50264          "name": "watch",
50265          "type": "boolean",
50266          "uniqueItems": true
50267        }
50268      ]
50269    },
50270    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": {
50271      "get": {
50272        "consumes": [
50273          "*/*"
50274        ],
50275        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
50276        "operationId": "watchAppsV1NamespacedDaemonSetList",
50277        "produces": [
50278          "application/json",
50279          "application/yaml",
50280          "application/vnd.kubernetes.protobuf",
50281          "application/json;stream=watch",
50282          "application/vnd.kubernetes.protobuf;stream=watch"
50283        ],
50284        "responses": {
50285          "200": {
50286            "description": "OK",
50287            "schema": {
50288              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50289            }
50290          },
50291          "401": {
50292            "description": "Unauthorized"
50293          }
50294        },
50295        "schemes": [
50296          "https"
50297        ],
50298        "tags": [
50299          "apps_v1"
50300        ],
50301        "x-kubernetes-action": "watchlist",
50302        "x-kubernetes-group-version-kind": {
50303          "group": "apps",
50304          "kind": "DaemonSet",
50305          "version": "v1"
50306        }
50307      },
50308      "parameters": [
50309        {
50310          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50311          "in": "query",
50312          "name": "allowWatchBookmarks",
50313          "type": "boolean",
50314          "uniqueItems": true
50315        },
50316        {
50317          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50318          "in": "query",
50319          "name": "continue",
50320          "type": "string",
50321          "uniqueItems": true
50322        },
50323        {
50324          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50325          "in": "query",
50326          "name": "fieldSelector",
50327          "type": "string",
50328          "uniqueItems": true
50329        },
50330        {
50331          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50332          "in": "query",
50333          "name": "labelSelector",
50334          "type": "string",
50335          "uniqueItems": true
50336        },
50337        {
50338          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50339          "in": "query",
50340          "name": "limit",
50341          "type": "integer",
50342          "uniqueItems": true
50343        },
50344        {
50345          "description": "object name and auth scope, such as for teams and projects",
50346          "in": "path",
50347          "name": "namespace",
50348          "required": true,
50349          "type": "string",
50350          "uniqueItems": true
50351        },
50352        {
50353          "description": "If 'true', then the output is pretty printed.",
50354          "in": "query",
50355          "name": "pretty",
50356          "type": "string",
50357          "uniqueItems": true
50358        },
50359        {
50360          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50361          "in": "query",
50362          "name": "resourceVersion",
50363          "type": "string",
50364          "uniqueItems": true
50365        },
50366        {
50367          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50368          "in": "query",
50369          "name": "timeoutSeconds",
50370          "type": "integer",
50371          "uniqueItems": true
50372        },
50373        {
50374          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50375          "in": "query",
50376          "name": "watch",
50377          "type": "boolean",
50378          "uniqueItems": true
50379        }
50380      ]
50381    },
50382    "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": {
50383      "get": {
50384        "consumes": [
50385          "*/*"
50386        ],
50387        "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.",
50388        "operationId": "watchAppsV1NamespacedDaemonSet",
50389        "produces": [
50390          "application/json",
50391          "application/yaml",
50392          "application/vnd.kubernetes.protobuf",
50393          "application/json;stream=watch",
50394          "application/vnd.kubernetes.protobuf;stream=watch"
50395        ],
50396        "responses": {
50397          "200": {
50398            "description": "OK",
50399            "schema": {
50400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50401            }
50402          },
50403          "401": {
50404            "description": "Unauthorized"
50405          }
50406        },
50407        "schemes": [
50408          "https"
50409        ],
50410        "tags": [
50411          "apps_v1"
50412        ],
50413        "x-kubernetes-action": "watch",
50414        "x-kubernetes-group-version-kind": {
50415          "group": "apps",
50416          "kind": "DaemonSet",
50417          "version": "v1"
50418        }
50419      },
50420      "parameters": [
50421        {
50422          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50423          "in": "query",
50424          "name": "allowWatchBookmarks",
50425          "type": "boolean",
50426          "uniqueItems": true
50427        },
50428        {
50429          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50430          "in": "query",
50431          "name": "continue",
50432          "type": "string",
50433          "uniqueItems": true
50434        },
50435        {
50436          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50437          "in": "query",
50438          "name": "fieldSelector",
50439          "type": "string",
50440          "uniqueItems": true
50441        },
50442        {
50443          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50444          "in": "query",
50445          "name": "labelSelector",
50446          "type": "string",
50447          "uniqueItems": true
50448        },
50449        {
50450          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50451          "in": "query",
50452          "name": "limit",
50453          "type": "integer",
50454          "uniqueItems": true
50455        },
50456        {
50457          "description": "name of the DaemonSet",
50458          "in": "path",
50459          "name": "name",
50460          "required": true,
50461          "type": "string",
50462          "uniqueItems": true
50463        },
50464        {
50465          "description": "object name and auth scope, such as for teams and projects",
50466          "in": "path",
50467          "name": "namespace",
50468          "required": true,
50469          "type": "string",
50470          "uniqueItems": true
50471        },
50472        {
50473          "description": "If 'true', then the output is pretty printed.",
50474          "in": "query",
50475          "name": "pretty",
50476          "type": "string",
50477          "uniqueItems": true
50478        },
50479        {
50480          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50481          "in": "query",
50482          "name": "resourceVersion",
50483          "type": "string",
50484          "uniqueItems": true
50485        },
50486        {
50487          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50488          "in": "query",
50489          "name": "timeoutSeconds",
50490          "type": "integer",
50491          "uniqueItems": true
50492        },
50493        {
50494          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50495          "in": "query",
50496          "name": "watch",
50497          "type": "boolean",
50498          "uniqueItems": true
50499        }
50500      ]
50501    },
50502    "/apis/apps/v1/watch/namespaces/{namespace}/deployments": {
50503      "get": {
50504        "consumes": [
50505          "*/*"
50506        ],
50507        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
50508        "operationId": "watchAppsV1NamespacedDeploymentList",
50509        "produces": [
50510          "application/json",
50511          "application/yaml",
50512          "application/vnd.kubernetes.protobuf",
50513          "application/json;stream=watch",
50514          "application/vnd.kubernetes.protobuf;stream=watch"
50515        ],
50516        "responses": {
50517          "200": {
50518            "description": "OK",
50519            "schema": {
50520              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50521            }
50522          },
50523          "401": {
50524            "description": "Unauthorized"
50525          }
50526        },
50527        "schemes": [
50528          "https"
50529        ],
50530        "tags": [
50531          "apps_v1"
50532        ],
50533        "x-kubernetes-action": "watchlist",
50534        "x-kubernetes-group-version-kind": {
50535          "group": "apps",
50536          "kind": "Deployment",
50537          "version": "v1"
50538        }
50539      },
50540      "parameters": [
50541        {
50542          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50543          "in": "query",
50544          "name": "allowWatchBookmarks",
50545          "type": "boolean",
50546          "uniqueItems": true
50547        },
50548        {
50549          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50550          "in": "query",
50551          "name": "continue",
50552          "type": "string",
50553          "uniqueItems": true
50554        },
50555        {
50556          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50557          "in": "query",
50558          "name": "fieldSelector",
50559          "type": "string",
50560          "uniqueItems": true
50561        },
50562        {
50563          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50564          "in": "query",
50565          "name": "labelSelector",
50566          "type": "string",
50567          "uniqueItems": true
50568        },
50569        {
50570          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50571          "in": "query",
50572          "name": "limit",
50573          "type": "integer",
50574          "uniqueItems": true
50575        },
50576        {
50577          "description": "object name and auth scope, such as for teams and projects",
50578          "in": "path",
50579          "name": "namespace",
50580          "required": true,
50581          "type": "string",
50582          "uniqueItems": true
50583        },
50584        {
50585          "description": "If 'true', then the output is pretty printed.",
50586          "in": "query",
50587          "name": "pretty",
50588          "type": "string",
50589          "uniqueItems": true
50590        },
50591        {
50592          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50593          "in": "query",
50594          "name": "resourceVersion",
50595          "type": "string",
50596          "uniqueItems": true
50597        },
50598        {
50599          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50600          "in": "query",
50601          "name": "timeoutSeconds",
50602          "type": "integer",
50603          "uniqueItems": true
50604        },
50605        {
50606          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50607          "in": "query",
50608          "name": "watch",
50609          "type": "boolean",
50610          "uniqueItems": true
50611        }
50612      ]
50613    },
50614    "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": {
50615      "get": {
50616        "consumes": [
50617          "*/*"
50618        ],
50619        "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.",
50620        "operationId": "watchAppsV1NamespacedDeployment",
50621        "produces": [
50622          "application/json",
50623          "application/yaml",
50624          "application/vnd.kubernetes.protobuf",
50625          "application/json;stream=watch",
50626          "application/vnd.kubernetes.protobuf;stream=watch"
50627        ],
50628        "responses": {
50629          "200": {
50630            "description": "OK",
50631            "schema": {
50632              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50633            }
50634          },
50635          "401": {
50636            "description": "Unauthorized"
50637          }
50638        },
50639        "schemes": [
50640          "https"
50641        ],
50642        "tags": [
50643          "apps_v1"
50644        ],
50645        "x-kubernetes-action": "watch",
50646        "x-kubernetes-group-version-kind": {
50647          "group": "apps",
50648          "kind": "Deployment",
50649          "version": "v1"
50650        }
50651      },
50652      "parameters": [
50653        {
50654          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50655          "in": "query",
50656          "name": "allowWatchBookmarks",
50657          "type": "boolean",
50658          "uniqueItems": true
50659        },
50660        {
50661          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50662          "in": "query",
50663          "name": "continue",
50664          "type": "string",
50665          "uniqueItems": true
50666        },
50667        {
50668          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50669          "in": "query",
50670          "name": "fieldSelector",
50671          "type": "string",
50672          "uniqueItems": true
50673        },
50674        {
50675          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50676          "in": "query",
50677          "name": "labelSelector",
50678          "type": "string",
50679          "uniqueItems": true
50680        },
50681        {
50682          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50683          "in": "query",
50684          "name": "limit",
50685          "type": "integer",
50686          "uniqueItems": true
50687        },
50688        {
50689          "description": "name of the Deployment",
50690          "in": "path",
50691          "name": "name",
50692          "required": true,
50693          "type": "string",
50694          "uniqueItems": true
50695        },
50696        {
50697          "description": "object name and auth scope, such as for teams and projects",
50698          "in": "path",
50699          "name": "namespace",
50700          "required": true,
50701          "type": "string",
50702          "uniqueItems": true
50703        },
50704        {
50705          "description": "If 'true', then the output is pretty printed.",
50706          "in": "query",
50707          "name": "pretty",
50708          "type": "string",
50709          "uniqueItems": true
50710        },
50711        {
50712          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50713          "in": "query",
50714          "name": "resourceVersion",
50715          "type": "string",
50716          "uniqueItems": true
50717        },
50718        {
50719          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50720          "in": "query",
50721          "name": "timeoutSeconds",
50722          "type": "integer",
50723          "uniqueItems": true
50724        },
50725        {
50726          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50727          "in": "query",
50728          "name": "watch",
50729          "type": "boolean",
50730          "uniqueItems": true
50731        }
50732      ]
50733    },
50734    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": {
50735      "get": {
50736        "consumes": [
50737          "*/*"
50738        ],
50739        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
50740        "operationId": "watchAppsV1NamespacedReplicaSetList",
50741        "produces": [
50742          "application/json",
50743          "application/yaml",
50744          "application/vnd.kubernetes.protobuf",
50745          "application/json;stream=watch",
50746          "application/vnd.kubernetes.protobuf;stream=watch"
50747        ],
50748        "responses": {
50749          "200": {
50750            "description": "OK",
50751            "schema": {
50752              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50753            }
50754          },
50755          "401": {
50756            "description": "Unauthorized"
50757          }
50758        },
50759        "schemes": [
50760          "https"
50761        ],
50762        "tags": [
50763          "apps_v1"
50764        ],
50765        "x-kubernetes-action": "watchlist",
50766        "x-kubernetes-group-version-kind": {
50767          "group": "apps",
50768          "kind": "ReplicaSet",
50769          "version": "v1"
50770        }
50771      },
50772      "parameters": [
50773        {
50774          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50775          "in": "query",
50776          "name": "allowWatchBookmarks",
50777          "type": "boolean",
50778          "uniqueItems": true
50779        },
50780        {
50781          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50782          "in": "query",
50783          "name": "continue",
50784          "type": "string",
50785          "uniqueItems": true
50786        },
50787        {
50788          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50789          "in": "query",
50790          "name": "fieldSelector",
50791          "type": "string",
50792          "uniqueItems": true
50793        },
50794        {
50795          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50796          "in": "query",
50797          "name": "labelSelector",
50798          "type": "string",
50799          "uniqueItems": true
50800        },
50801        {
50802          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50803          "in": "query",
50804          "name": "limit",
50805          "type": "integer",
50806          "uniqueItems": true
50807        },
50808        {
50809          "description": "object name and auth scope, such as for teams and projects",
50810          "in": "path",
50811          "name": "namespace",
50812          "required": true,
50813          "type": "string",
50814          "uniqueItems": true
50815        },
50816        {
50817          "description": "If 'true', then the output is pretty printed.",
50818          "in": "query",
50819          "name": "pretty",
50820          "type": "string",
50821          "uniqueItems": true
50822        },
50823        {
50824          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50825          "in": "query",
50826          "name": "resourceVersion",
50827          "type": "string",
50828          "uniqueItems": true
50829        },
50830        {
50831          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50832          "in": "query",
50833          "name": "timeoutSeconds",
50834          "type": "integer",
50835          "uniqueItems": true
50836        },
50837        {
50838          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50839          "in": "query",
50840          "name": "watch",
50841          "type": "boolean",
50842          "uniqueItems": true
50843        }
50844      ]
50845    },
50846    "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": {
50847      "get": {
50848        "consumes": [
50849          "*/*"
50850        ],
50851        "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.",
50852        "operationId": "watchAppsV1NamespacedReplicaSet",
50853        "produces": [
50854          "application/json",
50855          "application/yaml",
50856          "application/vnd.kubernetes.protobuf",
50857          "application/json;stream=watch",
50858          "application/vnd.kubernetes.protobuf;stream=watch"
50859        ],
50860        "responses": {
50861          "200": {
50862            "description": "OK",
50863            "schema": {
50864              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50865            }
50866          },
50867          "401": {
50868            "description": "Unauthorized"
50869          }
50870        },
50871        "schemes": [
50872          "https"
50873        ],
50874        "tags": [
50875          "apps_v1"
50876        ],
50877        "x-kubernetes-action": "watch",
50878        "x-kubernetes-group-version-kind": {
50879          "group": "apps",
50880          "kind": "ReplicaSet",
50881          "version": "v1"
50882        }
50883      },
50884      "parameters": [
50885        {
50886          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
50887          "in": "query",
50888          "name": "allowWatchBookmarks",
50889          "type": "boolean",
50890          "uniqueItems": true
50891        },
50892        {
50893          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
50894          "in": "query",
50895          "name": "continue",
50896          "type": "string",
50897          "uniqueItems": true
50898        },
50899        {
50900          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
50901          "in": "query",
50902          "name": "fieldSelector",
50903          "type": "string",
50904          "uniqueItems": true
50905        },
50906        {
50907          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
50908          "in": "query",
50909          "name": "labelSelector",
50910          "type": "string",
50911          "uniqueItems": true
50912        },
50913        {
50914          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
50915          "in": "query",
50916          "name": "limit",
50917          "type": "integer",
50918          "uniqueItems": true
50919        },
50920        {
50921          "description": "name of the ReplicaSet",
50922          "in": "path",
50923          "name": "name",
50924          "required": true,
50925          "type": "string",
50926          "uniqueItems": true
50927        },
50928        {
50929          "description": "object name and auth scope, such as for teams and projects",
50930          "in": "path",
50931          "name": "namespace",
50932          "required": true,
50933          "type": "string",
50934          "uniqueItems": true
50935        },
50936        {
50937          "description": "If 'true', then the output is pretty printed.",
50938          "in": "query",
50939          "name": "pretty",
50940          "type": "string",
50941          "uniqueItems": true
50942        },
50943        {
50944          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
50945          "in": "query",
50946          "name": "resourceVersion",
50947          "type": "string",
50948          "uniqueItems": true
50949        },
50950        {
50951          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
50952          "in": "query",
50953          "name": "timeoutSeconds",
50954          "type": "integer",
50955          "uniqueItems": true
50956        },
50957        {
50958          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
50959          "in": "query",
50960          "name": "watch",
50961          "type": "boolean",
50962          "uniqueItems": true
50963        }
50964      ]
50965    },
50966    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": {
50967      "get": {
50968        "consumes": [
50969          "*/*"
50970        ],
50971        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
50972        "operationId": "watchAppsV1NamespacedStatefulSetList",
50973        "produces": [
50974          "application/json",
50975          "application/yaml",
50976          "application/vnd.kubernetes.protobuf",
50977          "application/json;stream=watch",
50978          "application/vnd.kubernetes.protobuf;stream=watch"
50979        ],
50980        "responses": {
50981          "200": {
50982            "description": "OK",
50983            "schema": {
50984              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
50985            }
50986          },
50987          "401": {
50988            "description": "Unauthorized"
50989          }
50990        },
50991        "schemes": [
50992          "https"
50993        ],
50994        "tags": [
50995          "apps_v1"
50996        ],
50997        "x-kubernetes-action": "watchlist",
50998        "x-kubernetes-group-version-kind": {
50999          "group": "apps",
51000          "kind": "StatefulSet",
51001          "version": "v1"
51002        }
51003      },
51004      "parameters": [
51005        {
51006          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51007          "in": "query",
51008          "name": "allowWatchBookmarks",
51009          "type": "boolean",
51010          "uniqueItems": true
51011        },
51012        {
51013          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51014          "in": "query",
51015          "name": "continue",
51016          "type": "string",
51017          "uniqueItems": true
51018        },
51019        {
51020          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51021          "in": "query",
51022          "name": "fieldSelector",
51023          "type": "string",
51024          "uniqueItems": true
51025        },
51026        {
51027          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51028          "in": "query",
51029          "name": "labelSelector",
51030          "type": "string",
51031          "uniqueItems": true
51032        },
51033        {
51034          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51035          "in": "query",
51036          "name": "limit",
51037          "type": "integer",
51038          "uniqueItems": true
51039        },
51040        {
51041          "description": "object name and auth scope, such as for teams and projects",
51042          "in": "path",
51043          "name": "namespace",
51044          "required": true,
51045          "type": "string",
51046          "uniqueItems": true
51047        },
51048        {
51049          "description": "If 'true', then the output is pretty printed.",
51050          "in": "query",
51051          "name": "pretty",
51052          "type": "string",
51053          "uniqueItems": true
51054        },
51055        {
51056          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51057          "in": "query",
51058          "name": "resourceVersion",
51059          "type": "string",
51060          "uniqueItems": true
51061        },
51062        {
51063          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51064          "in": "query",
51065          "name": "timeoutSeconds",
51066          "type": "integer",
51067          "uniqueItems": true
51068        },
51069        {
51070          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51071          "in": "query",
51072          "name": "watch",
51073          "type": "boolean",
51074          "uniqueItems": true
51075        }
51076      ]
51077    },
51078    "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": {
51079      "get": {
51080        "consumes": [
51081          "*/*"
51082        ],
51083        "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.",
51084        "operationId": "watchAppsV1NamespacedStatefulSet",
51085        "produces": [
51086          "application/json",
51087          "application/yaml",
51088          "application/vnd.kubernetes.protobuf",
51089          "application/json;stream=watch",
51090          "application/vnd.kubernetes.protobuf;stream=watch"
51091        ],
51092        "responses": {
51093          "200": {
51094            "description": "OK",
51095            "schema": {
51096              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51097            }
51098          },
51099          "401": {
51100            "description": "Unauthorized"
51101          }
51102        },
51103        "schemes": [
51104          "https"
51105        ],
51106        "tags": [
51107          "apps_v1"
51108        ],
51109        "x-kubernetes-action": "watch",
51110        "x-kubernetes-group-version-kind": {
51111          "group": "apps",
51112          "kind": "StatefulSet",
51113          "version": "v1"
51114        }
51115      },
51116      "parameters": [
51117        {
51118          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51119          "in": "query",
51120          "name": "allowWatchBookmarks",
51121          "type": "boolean",
51122          "uniqueItems": true
51123        },
51124        {
51125          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51126          "in": "query",
51127          "name": "continue",
51128          "type": "string",
51129          "uniqueItems": true
51130        },
51131        {
51132          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51133          "in": "query",
51134          "name": "fieldSelector",
51135          "type": "string",
51136          "uniqueItems": true
51137        },
51138        {
51139          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51140          "in": "query",
51141          "name": "labelSelector",
51142          "type": "string",
51143          "uniqueItems": true
51144        },
51145        {
51146          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51147          "in": "query",
51148          "name": "limit",
51149          "type": "integer",
51150          "uniqueItems": true
51151        },
51152        {
51153          "description": "name of the StatefulSet",
51154          "in": "path",
51155          "name": "name",
51156          "required": true,
51157          "type": "string",
51158          "uniqueItems": true
51159        },
51160        {
51161          "description": "object name and auth scope, such as for teams and projects",
51162          "in": "path",
51163          "name": "namespace",
51164          "required": true,
51165          "type": "string",
51166          "uniqueItems": true
51167        },
51168        {
51169          "description": "If 'true', then the output is pretty printed.",
51170          "in": "query",
51171          "name": "pretty",
51172          "type": "string",
51173          "uniqueItems": true
51174        },
51175        {
51176          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51177          "in": "query",
51178          "name": "resourceVersion",
51179          "type": "string",
51180          "uniqueItems": true
51181        },
51182        {
51183          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51184          "in": "query",
51185          "name": "timeoutSeconds",
51186          "type": "integer",
51187          "uniqueItems": true
51188        },
51189        {
51190          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51191          "in": "query",
51192          "name": "watch",
51193          "type": "boolean",
51194          "uniqueItems": true
51195        }
51196      ]
51197    },
51198    "/apis/apps/v1/watch/replicasets": {
51199      "get": {
51200        "consumes": [
51201          "*/*"
51202        ],
51203        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
51204        "operationId": "watchAppsV1ReplicaSetListForAllNamespaces",
51205        "produces": [
51206          "application/json",
51207          "application/yaml",
51208          "application/vnd.kubernetes.protobuf",
51209          "application/json;stream=watch",
51210          "application/vnd.kubernetes.protobuf;stream=watch"
51211        ],
51212        "responses": {
51213          "200": {
51214            "description": "OK",
51215            "schema": {
51216              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51217            }
51218          },
51219          "401": {
51220            "description": "Unauthorized"
51221          }
51222        },
51223        "schemes": [
51224          "https"
51225        ],
51226        "tags": [
51227          "apps_v1"
51228        ],
51229        "x-kubernetes-action": "watchlist",
51230        "x-kubernetes-group-version-kind": {
51231          "group": "apps",
51232          "kind": "ReplicaSet",
51233          "version": "v1"
51234        }
51235      },
51236      "parameters": [
51237        {
51238          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51239          "in": "query",
51240          "name": "allowWatchBookmarks",
51241          "type": "boolean",
51242          "uniqueItems": true
51243        },
51244        {
51245          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51246          "in": "query",
51247          "name": "continue",
51248          "type": "string",
51249          "uniqueItems": true
51250        },
51251        {
51252          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51253          "in": "query",
51254          "name": "fieldSelector",
51255          "type": "string",
51256          "uniqueItems": true
51257        },
51258        {
51259          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51260          "in": "query",
51261          "name": "labelSelector",
51262          "type": "string",
51263          "uniqueItems": true
51264        },
51265        {
51266          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51267          "in": "query",
51268          "name": "limit",
51269          "type": "integer",
51270          "uniqueItems": true
51271        },
51272        {
51273          "description": "If 'true', then the output is pretty printed.",
51274          "in": "query",
51275          "name": "pretty",
51276          "type": "string",
51277          "uniqueItems": true
51278        },
51279        {
51280          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51281          "in": "query",
51282          "name": "resourceVersion",
51283          "type": "string",
51284          "uniqueItems": true
51285        },
51286        {
51287          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51288          "in": "query",
51289          "name": "timeoutSeconds",
51290          "type": "integer",
51291          "uniqueItems": true
51292        },
51293        {
51294          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51295          "in": "query",
51296          "name": "watch",
51297          "type": "boolean",
51298          "uniqueItems": true
51299        }
51300      ]
51301    },
51302    "/apis/apps/v1/watch/statefulsets": {
51303      "get": {
51304        "consumes": [
51305          "*/*"
51306        ],
51307        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
51308        "operationId": "watchAppsV1StatefulSetListForAllNamespaces",
51309        "produces": [
51310          "application/json",
51311          "application/yaml",
51312          "application/vnd.kubernetes.protobuf",
51313          "application/json;stream=watch",
51314          "application/vnd.kubernetes.protobuf;stream=watch"
51315        ],
51316        "responses": {
51317          "200": {
51318            "description": "OK",
51319            "schema": {
51320              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
51321            }
51322          },
51323          "401": {
51324            "description": "Unauthorized"
51325          }
51326        },
51327        "schemes": [
51328          "https"
51329        ],
51330        "tags": [
51331          "apps_v1"
51332        ],
51333        "x-kubernetes-action": "watchlist",
51334        "x-kubernetes-group-version-kind": {
51335          "group": "apps",
51336          "kind": "StatefulSet",
51337          "version": "v1"
51338        }
51339      },
51340      "parameters": [
51341        {
51342          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51343          "in": "query",
51344          "name": "allowWatchBookmarks",
51345          "type": "boolean",
51346          "uniqueItems": true
51347        },
51348        {
51349          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51350          "in": "query",
51351          "name": "continue",
51352          "type": "string",
51353          "uniqueItems": true
51354        },
51355        {
51356          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51357          "in": "query",
51358          "name": "fieldSelector",
51359          "type": "string",
51360          "uniqueItems": true
51361        },
51362        {
51363          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51364          "in": "query",
51365          "name": "labelSelector",
51366          "type": "string",
51367          "uniqueItems": true
51368        },
51369        {
51370          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51371          "in": "query",
51372          "name": "limit",
51373          "type": "integer",
51374          "uniqueItems": true
51375        },
51376        {
51377          "description": "If 'true', then the output is pretty printed.",
51378          "in": "query",
51379          "name": "pretty",
51380          "type": "string",
51381          "uniqueItems": true
51382        },
51383        {
51384          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51385          "in": "query",
51386          "name": "resourceVersion",
51387          "type": "string",
51388          "uniqueItems": true
51389        },
51390        {
51391          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51392          "in": "query",
51393          "name": "timeoutSeconds",
51394          "type": "integer",
51395          "uniqueItems": true
51396        },
51397        {
51398          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51399          "in": "query",
51400          "name": "watch",
51401          "type": "boolean",
51402          "uniqueItems": true
51403        }
51404      ]
51405    },
51406    "/apis/apps/v1beta1/": {
51407      "get": {
51408        "consumes": [
51409          "application/json",
51410          "application/yaml",
51411          "application/vnd.kubernetes.protobuf"
51412        ],
51413        "description": "get available resources",
51414        "operationId": "getAppsV1beta1APIResources",
51415        "produces": [
51416          "application/json",
51417          "application/yaml",
51418          "application/vnd.kubernetes.protobuf"
51419        ],
51420        "responses": {
51421          "200": {
51422            "description": "OK",
51423            "schema": {
51424              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
51425            }
51426          },
51427          "401": {
51428            "description": "Unauthorized"
51429          }
51430        },
51431        "schemes": [
51432          "https"
51433        ],
51434        "tags": [
51435          "apps_v1beta1"
51436        ]
51437      }
51438    },
51439    "/apis/apps/v1beta1/controllerrevisions": {
51440      "get": {
51441        "consumes": [
51442          "*/*"
51443        ],
51444        "description": "list or watch objects of kind ControllerRevision",
51445        "operationId": "listAppsV1beta1ControllerRevisionForAllNamespaces",
51446        "produces": [
51447          "application/json",
51448          "application/yaml",
51449          "application/vnd.kubernetes.protobuf",
51450          "application/json;stream=watch",
51451          "application/vnd.kubernetes.protobuf;stream=watch"
51452        ],
51453        "responses": {
51454          "200": {
51455            "description": "OK",
51456            "schema": {
51457              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevisionList"
51458            }
51459          },
51460          "401": {
51461            "description": "Unauthorized"
51462          }
51463        },
51464        "schemes": [
51465          "https"
51466        ],
51467        "tags": [
51468          "apps_v1beta1"
51469        ],
51470        "x-kubernetes-action": "list",
51471        "x-kubernetes-group-version-kind": {
51472          "group": "apps",
51473          "kind": "ControllerRevision",
51474          "version": "v1beta1"
51475        }
51476      },
51477      "parameters": [
51478        {
51479          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51480          "in": "query",
51481          "name": "allowWatchBookmarks",
51482          "type": "boolean",
51483          "uniqueItems": true
51484        },
51485        {
51486          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51487          "in": "query",
51488          "name": "continue",
51489          "type": "string",
51490          "uniqueItems": true
51491        },
51492        {
51493          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51494          "in": "query",
51495          "name": "fieldSelector",
51496          "type": "string",
51497          "uniqueItems": true
51498        },
51499        {
51500          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51501          "in": "query",
51502          "name": "labelSelector",
51503          "type": "string",
51504          "uniqueItems": true
51505        },
51506        {
51507          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51508          "in": "query",
51509          "name": "limit",
51510          "type": "integer",
51511          "uniqueItems": true
51512        },
51513        {
51514          "description": "If 'true', then the output is pretty printed.",
51515          "in": "query",
51516          "name": "pretty",
51517          "type": "string",
51518          "uniqueItems": true
51519        },
51520        {
51521          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51522          "in": "query",
51523          "name": "resourceVersion",
51524          "type": "string",
51525          "uniqueItems": true
51526        },
51527        {
51528          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51529          "in": "query",
51530          "name": "timeoutSeconds",
51531          "type": "integer",
51532          "uniqueItems": true
51533        },
51534        {
51535          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51536          "in": "query",
51537          "name": "watch",
51538          "type": "boolean",
51539          "uniqueItems": true
51540        }
51541      ]
51542    },
51543    "/apis/apps/v1beta1/deployments": {
51544      "get": {
51545        "consumes": [
51546          "*/*"
51547        ],
51548        "description": "list or watch objects of kind Deployment",
51549        "operationId": "listAppsV1beta1DeploymentForAllNamespaces",
51550        "produces": [
51551          "application/json",
51552          "application/yaml",
51553          "application/vnd.kubernetes.protobuf",
51554          "application/json;stream=watch",
51555          "application/vnd.kubernetes.protobuf;stream=watch"
51556        ],
51557        "responses": {
51558          "200": {
51559            "description": "OK",
51560            "schema": {
51561              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentList"
51562            }
51563          },
51564          "401": {
51565            "description": "Unauthorized"
51566          }
51567        },
51568        "schemes": [
51569          "https"
51570        ],
51571        "tags": [
51572          "apps_v1beta1"
51573        ],
51574        "x-kubernetes-action": "list",
51575        "x-kubernetes-group-version-kind": {
51576          "group": "apps",
51577          "kind": "Deployment",
51578          "version": "v1beta1"
51579        }
51580      },
51581      "parameters": [
51582        {
51583          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51584          "in": "query",
51585          "name": "allowWatchBookmarks",
51586          "type": "boolean",
51587          "uniqueItems": true
51588        },
51589        {
51590          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51591          "in": "query",
51592          "name": "continue",
51593          "type": "string",
51594          "uniqueItems": true
51595        },
51596        {
51597          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51598          "in": "query",
51599          "name": "fieldSelector",
51600          "type": "string",
51601          "uniqueItems": true
51602        },
51603        {
51604          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51605          "in": "query",
51606          "name": "labelSelector",
51607          "type": "string",
51608          "uniqueItems": true
51609        },
51610        {
51611          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51612          "in": "query",
51613          "name": "limit",
51614          "type": "integer",
51615          "uniqueItems": true
51616        },
51617        {
51618          "description": "If 'true', then the output is pretty printed.",
51619          "in": "query",
51620          "name": "pretty",
51621          "type": "string",
51622          "uniqueItems": true
51623        },
51624        {
51625          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51626          "in": "query",
51627          "name": "resourceVersion",
51628          "type": "string",
51629          "uniqueItems": true
51630        },
51631        {
51632          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51633          "in": "query",
51634          "name": "timeoutSeconds",
51635          "type": "integer",
51636          "uniqueItems": true
51637        },
51638        {
51639          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51640          "in": "query",
51641          "name": "watch",
51642          "type": "boolean",
51643          "uniqueItems": true
51644        }
51645      ]
51646    },
51647    "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions": {
51648      "delete": {
51649        "consumes": [
51650          "*/*"
51651        ],
51652        "description": "delete collection of ControllerRevision",
51653        "operationId": "deleteAppsV1beta1CollectionNamespacedControllerRevision",
51654        "parameters": [
51655          {
51656            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51657            "in": "query",
51658            "name": "allowWatchBookmarks",
51659            "type": "boolean",
51660            "uniqueItems": true
51661          },
51662          {
51663            "in": "body",
51664            "name": "body",
51665            "schema": {
51666              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
51667            }
51668          },
51669          {
51670            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51671            "in": "query",
51672            "name": "continue",
51673            "type": "string",
51674            "uniqueItems": true
51675          },
51676          {
51677            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51678            "in": "query",
51679            "name": "dryRun",
51680            "type": "string",
51681            "uniqueItems": true
51682          },
51683          {
51684            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51685            "in": "query",
51686            "name": "fieldSelector",
51687            "type": "string",
51688            "uniqueItems": true
51689          },
51690          {
51691            "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.",
51692            "in": "query",
51693            "name": "gracePeriodSeconds",
51694            "type": "integer",
51695            "uniqueItems": true
51696          },
51697          {
51698            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51699            "in": "query",
51700            "name": "labelSelector",
51701            "type": "string",
51702            "uniqueItems": true
51703          },
51704          {
51705            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51706            "in": "query",
51707            "name": "limit",
51708            "type": "integer",
51709            "uniqueItems": true
51710          },
51711          {
51712            "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.",
51713            "in": "query",
51714            "name": "orphanDependents",
51715            "type": "boolean",
51716            "uniqueItems": true
51717          },
51718          {
51719            "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.",
51720            "in": "query",
51721            "name": "propagationPolicy",
51722            "type": "string",
51723            "uniqueItems": true
51724          },
51725          {
51726            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51727            "in": "query",
51728            "name": "resourceVersion",
51729            "type": "string",
51730            "uniqueItems": true
51731          },
51732          {
51733            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51734            "in": "query",
51735            "name": "timeoutSeconds",
51736            "type": "integer",
51737            "uniqueItems": true
51738          },
51739          {
51740            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51741            "in": "query",
51742            "name": "watch",
51743            "type": "boolean",
51744            "uniqueItems": true
51745          }
51746        ],
51747        "produces": [
51748          "application/json",
51749          "application/yaml",
51750          "application/vnd.kubernetes.protobuf"
51751        ],
51752        "responses": {
51753          "200": {
51754            "description": "OK",
51755            "schema": {
51756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
51757            }
51758          },
51759          "401": {
51760            "description": "Unauthorized"
51761          }
51762        },
51763        "schemes": [
51764          "https"
51765        ],
51766        "tags": [
51767          "apps_v1beta1"
51768        ],
51769        "x-kubernetes-action": "deletecollection",
51770        "x-kubernetes-group-version-kind": {
51771          "group": "apps",
51772          "kind": "ControllerRevision",
51773          "version": "v1beta1"
51774        }
51775      },
51776      "get": {
51777        "consumes": [
51778          "*/*"
51779        ],
51780        "description": "list or watch objects of kind ControllerRevision",
51781        "operationId": "listAppsV1beta1NamespacedControllerRevision",
51782        "parameters": [
51783          {
51784            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
51785            "in": "query",
51786            "name": "allowWatchBookmarks",
51787            "type": "boolean",
51788            "uniqueItems": true
51789          },
51790          {
51791            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
51792            "in": "query",
51793            "name": "continue",
51794            "type": "string",
51795            "uniqueItems": true
51796          },
51797          {
51798            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
51799            "in": "query",
51800            "name": "fieldSelector",
51801            "type": "string",
51802            "uniqueItems": true
51803          },
51804          {
51805            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
51806            "in": "query",
51807            "name": "labelSelector",
51808            "type": "string",
51809            "uniqueItems": true
51810          },
51811          {
51812            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
51813            "in": "query",
51814            "name": "limit",
51815            "type": "integer",
51816            "uniqueItems": true
51817          },
51818          {
51819            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
51820            "in": "query",
51821            "name": "resourceVersion",
51822            "type": "string",
51823            "uniqueItems": true
51824          },
51825          {
51826            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
51827            "in": "query",
51828            "name": "timeoutSeconds",
51829            "type": "integer",
51830            "uniqueItems": true
51831          },
51832          {
51833            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
51834            "in": "query",
51835            "name": "watch",
51836            "type": "boolean",
51837            "uniqueItems": true
51838          }
51839        ],
51840        "produces": [
51841          "application/json",
51842          "application/yaml",
51843          "application/vnd.kubernetes.protobuf",
51844          "application/json;stream=watch",
51845          "application/vnd.kubernetes.protobuf;stream=watch"
51846        ],
51847        "responses": {
51848          "200": {
51849            "description": "OK",
51850            "schema": {
51851              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevisionList"
51852            }
51853          },
51854          "401": {
51855            "description": "Unauthorized"
51856          }
51857        },
51858        "schemes": [
51859          "https"
51860        ],
51861        "tags": [
51862          "apps_v1beta1"
51863        ],
51864        "x-kubernetes-action": "list",
51865        "x-kubernetes-group-version-kind": {
51866          "group": "apps",
51867          "kind": "ControllerRevision",
51868          "version": "v1beta1"
51869        }
51870      },
51871      "parameters": [
51872        {
51873          "description": "object name and auth scope, such as for teams and projects",
51874          "in": "path",
51875          "name": "namespace",
51876          "required": true,
51877          "type": "string",
51878          "uniqueItems": true
51879        },
51880        {
51881          "description": "If 'true', then the output is pretty printed.",
51882          "in": "query",
51883          "name": "pretty",
51884          "type": "string",
51885          "uniqueItems": true
51886        }
51887      ],
51888      "post": {
51889        "consumes": [
51890          "*/*"
51891        ],
51892        "description": "create a ControllerRevision",
51893        "operationId": "createAppsV1beta1NamespacedControllerRevision",
51894        "parameters": [
51895          {
51896            "in": "body",
51897            "name": "body",
51898            "required": true,
51899            "schema": {
51900              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
51901            }
51902          },
51903          {
51904            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51905            "in": "query",
51906            "name": "dryRun",
51907            "type": "string",
51908            "uniqueItems": true
51909          },
51910          {
51911            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
51912            "in": "query",
51913            "name": "fieldManager",
51914            "type": "string",
51915            "uniqueItems": true
51916          }
51917        ],
51918        "produces": [
51919          "application/json",
51920          "application/yaml",
51921          "application/vnd.kubernetes.protobuf"
51922        ],
51923        "responses": {
51924          "200": {
51925            "description": "OK",
51926            "schema": {
51927              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
51928            }
51929          },
51930          "201": {
51931            "description": "Created",
51932            "schema": {
51933              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
51934            }
51935          },
51936          "202": {
51937            "description": "Accepted",
51938            "schema": {
51939              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
51940            }
51941          },
51942          "401": {
51943            "description": "Unauthorized"
51944          }
51945        },
51946        "schemes": [
51947          "https"
51948        ],
51949        "tags": [
51950          "apps_v1beta1"
51951        ],
51952        "x-kubernetes-action": "post",
51953        "x-kubernetes-group-version-kind": {
51954          "group": "apps",
51955          "kind": "ControllerRevision",
51956          "version": "v1beta1"
51957        }
51958      }
51959    },
51960    "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}": {
51961      "delete": {
51962        "consumes": [
51963          "*/*"
51964        ],
51965        "description": "delete a ControllerRevision",
51966        "operationId": "deleteAppsV1beta1NamespacedControllerRevision",
51967        "parameters": [
51968          {
51969            "in": "body",
51970            "name": "body",
51971            "schema": {
51972              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
51973            }
51974          },
51975          {
51976            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
51977            "in": "query",
51978            "name": "dryRun",
51979            "type": "string",
51980            "uniqueItems": true
51981          },
51982          {
51983            "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.",
51984            "in": "query",
51985            "name": "gracePeriodSeconds",
51986            "type": "integer",
51987            "uniqueItems": true
51988          },
51989          {
51990            "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.",
51991            "in": "query",
51992            "name": "orphanDependents",
51993            "type": "boolean",
51994            "uniqueItems": true
51995          },
51996          {
51997            "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.",
51998            "in": "query",
51999            "name": "propagationPolicy",
52000            "type": "string",
52001            "uniqueItems": true
52002          }
52003        ],
52004        "produces": [
52005          "application/json",
52006          "application/yaml",
52007          "application/vnd.kubernetes.protobuf"
52008        ],
52009        "responses": {
52010          "200": {
52011            "description": "OK",
52012            "schema": {
52013              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52014            }
52015          },
52016          "202": {
52017            "description": "Accepted",
52018            "schema": {
52019              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52020            }
52021          },
52022          "401": {
52023            "description": "Unauthorized"
52024          }
52025        },
52026        "schemes": [
52027          "https"
52028        ],
52029        "tags": [
52030          "apps_v1beta1"
52031        ],
52032        "x-kubernetes-action": "delete",
52033        "x-kubernetes-group-version-kind": {
52034          "group": "apps",
52035          "kind": "ControllerRevision",
52036          "version": "v1beta1"
52037        }
52038      },
52039      "get": {
52040        "consumes": [
52041          "*/*"
52042        ],
52043        "description": "read the specified ControllerRevision",
52044        "operationId": "readAppsV1beta1NamespacedControllerRevision",
52045        "parameters": [
52046          {
52047            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
52048            "in": "query",
52049            "name": "exact",
52050            "type": "boolean",
52051            "uniqueItems": true
52052          },
52053          {
52054            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
52055            "in": "query",
52056            "name": "export",
52057            "type": "boolean",
52058            "uniqueItems": true
52059          }
52060        ],
52061        "produces": [
52062          "application/json",
52063          "application/yaml",
52064          "application/vnd.kubernetes.protobuf"
52065        ],
52066        "responses": {
52067          "200": {
52068            "description": "OK",
52069            "schema": {
52070              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
52071            }
52072          },
52073          "401": {
52074            "description": "Unauthorized"
52075          }
52076        },
52077        "schemes": [
52078          "https"
52079        ],
52080        "tags": [
52081          "apps_v1beta1"
52082        ],
52083        "x-kubernetes-action": "get",
52084        "x-kubernetes-group-version-kind": {
52085          "group": "apps",
52086          "kind": "ControllerRevision",
52087          "version": "v1beta1"
52088        }
52089      },
52090      "parameters": [
52091        {
52092          "description": "name of the ControllerRevision",
52093          "in": "path",
52094          "name": "name",
52095          "required": true,
52096          "type": "string",
52097          "uniqueItems": true
52098        },
52099        {
52100          "description": "object name and auth scope, such as for teams and projects",
52101          "in": "path",
52102          "name": "namespace",
52103          "required": true,
52104          "type": "string",
52105          "uniqueItems": true
52106        },
52107        {
52108          "description": "If 'true', then the output is pretty printed.",
52109          "in": "query",
52110          "name": "pretty",
52111          "type": "string",
52112          "uniqueItems": true
52113        }
52114      ],
52115      "patch": {
52116        "consumes": [
52117          "application/json-patch+json",
52118          "application/merge-patch+json",
52119          "application/strategic-merge-patch+json"
52120        ],
52121        "description": "partially update the specified ControllerRevision",
52122        "operationId": "patchAppsV1beta1NamespacedControllerRevision",
52123        "parameters": [
52124          {
52125            "in": "body",
52126            "name": "body",
52127            "required": true,
52128            "schema": {
52129              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
52130            }
52131          },
52132          {
52133            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52134            "in": "query",
52135            "name": "dryRun",
52136            "type": "string",
52137            "uniqueItems": true
52138          },
52139          {
52140            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
52141            "in": "query",
52142            "name": "fieldManager",
52143            "type": "string",
52144            "uniqueItems": true
52145          },
52146          {
52147            "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.",
52148            "in": "query",
52149            "name": "force",
52150            "type": "boolean",
52151            "uniqueItems": true
52152          }
52153        ],
52154        "produces": [
52155          "application/json",
52156          "application/yaml",
52157          "application/vnd.kubernetes.protobuf"
52158        ],
52159        "responses": {
52160          "200": {
52161            "description": "OK",
52162            "schema": {
52163              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
52164            }
52165          },
52166          "401": {
52167            "description": "Unauthorized"
52168          }
52169        },
52170        "schemes": [
52171          "https"
52172        ],
52173        "tags": [
52174          "apps_v1beta1"
52175        ],
52176        "x-kubernetes-action": "patch",
52177        "x-kubernetes-group-version-kind": {
52178          "group": "apps",
52179          "kind": "ControllerRevision",
52180          "version": "v1beta1"
52181        }
52182      },
52183      "put": {
52184        "consumes": [
52185          "*/*"
52186        ],
52187        "description": "replace the specified ControllerRevision",
52188        "operationId": "replaceAppsV1beta1NamespacedControllerRevision",
52189        "parameters": [
52190          {
52191            "in": "body",
52192            "name": "body",
52193            "required": true,
52194            "schema": {
52195              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
52196            }
52197          },
52198          {
52199            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52200            "in": "query",
52201            "name": "dryRun",
52202            "type": "string",
52203            "uniqueItems": true
52204          },
52205          {
52206            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52207            "in": "query",
52208            "name": "fieldManager",
52209            "type": "string",
52210            "uniqueItems": true
52211          }
52212        ],
52213        "produces": [
52214          "application/json",
52215          "application/yaml",
52216          "application/vnd.kubernetes.protobuf"
52217        ],
52218        "responses": {
52219          "200": {
52220            "description": "OK",
52221            "schema": {
52222              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
52223            }
52224          },
52225          "201": {
52226            "description": "Created",
52227            "schema": {
52228              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision"
52229            }
52230          },
52231          "401": {
52232            "description": "Unauthorized"
52233          }
52234        },
52235        "schemes": [
52236          "https"
52237        ],
52238        "tags": [
52239          "apps_v1beta1"
52240        ],
52241        "x-kubernetes-action": "put",
52242        "x-kubernetes-group-version-kind": {
52243          "group": "apps",
52244          "kind": "ControllerRevision",
52245          "version": "v1beta1"
52246        }
52247      }
52248    },
52249    "/apis/apps/v1beta1/namespaces/{namespace}/deployments": {
52250      "delete": {
52251        "consumes": [
52252          "*/*"
52253        ],
52254        "description": "delete collection of Deployment",
52255        "operationId": "deleteAppsV1beta1CollectionNamespacedDeployment",
52256        "parameters": [
52257          {
52258            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
52259            "in": "query",
52260            "name": "allowWatchBookmarks",
52261            "type": "boolean",
52262            "uniqueItems": true
52263          },
52264          {
52265            "in": "body",
52266            "name": "body",
52267            "schema": {
52268              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
52269            }
52270          },
52271          {
52272            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52273            "in": "query",
52274            "name": "continue",
52275            "type": "string",
52276            "uniqueItems": true
52277          },
52278          {
52279            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52280            "in": "query",
52281            "name": "dryRun",
52282            "type": "string",
52283            "uniqueItems": true
52284          },
52285          {
52286            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52287            "in": "query",
52288            "name": "fieldSelector",
52289            "type": "string",
52290            "uniqueItems": true
52291          },
52292          {
52293            "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.",
52294            "in": "query",
52295            "name": "gracePeriodSeconds",
52296            "type": "integer",
52297            "uniqueItems": true
52298          },
52299          {
52300            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52301            "in": "query",
52302            "name": "labelSelector",
52303            "type": "string",
52304            "uniqueItems": true
52305          },
52306          {
52307            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52308            "in": "query",
52309            "name": "limit",
52310            "type": "integer",
52311            "uniqueItems": true
52312          },
52313          {
52314            "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.",
52315            "in": "query",
52316            "name": "orphanDependents",
52317            "type": "boolean",
52318            "uniqueItems": true
52319          },
52320          {
52321            "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.",
52322            "in": "query",
52323            "name": "propagationPolicy",
52324            "type": "string",
52325            "uniqueItems": true
52326          },
52327          {
52328            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
52329            "in": "query",
52330            "name": "resourceVersion",
52331            "type": "string",
52332            "uniqueItems": true
52333          },
52334          {
52335            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52336            "in": "query",
52337            "name": "timeoutSeconds",
52338            "type": "integer",
52339            "uniqueItems": true
52340          },
52341          {
52342            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52343            "in": "query",
52344            "name": "watch",
52345            "type": "boolean",
52346            "uniqueItems": true
52347          }
52348        ],
52349        "produces": [
52350          "application/json",
52351          "application/yaml",
52352          "application/vnd.kubernetes.protobuf"
52353        ],
52354        "responses": {
52355          "200": {
52356            "description": "OK",
52357            "schema": {
52358              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52359            }
52360          },
52361          "401": {
52362            "description": "Unauthorized"
52363          }
52364        },
52365        "schemes": [
52366          "https"
52367        ],
52368        "tags": [
52369          "apps_v1beta1"
52370        ],
52371        "x-kubernetes-action": "deletecollection",
52372        "x-kubernetes-group-version-kind": {
52373          "group": "apps",
52374          "kind": "Deployment",
52375          "version": "v1beta1"
52376        }
52377      },
52378      "get": {
52379        "consumes": [
52380          "*/*"
52381        ],
52382        "description": "list or watch objects of kind Deployment",
52383        "operationId": "listAppsV1beta1NamespacedDeployment",
52384        "parameters": [
52385          {
52386            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
52387            "in": "query",
52388            "name": "allowWatchBookmarks",
52389            "type": "boolean",
52390            "uniqueItems": true
52391          },
52392          {
52393            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
52394            "in": "query",
52395            "name": "continue",
52396            "type": "string",
52397            "uniqueItems": true
52398          },
52399          {
52400            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
52401            "in": "query",
52402            "name": "fieldSelector",
52403            "type": "string",
52404            "uniqueItems": true
52405          },
52406          {
52407            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
52408            "in": "query",
52409            "name": "labelSelector",
52410            "type": "string",
52411            "uniqueItems": true
52412          },
52413          {
52414            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
52415            "in": "query",
52416            "name": "limit",
52417            "type": "integer",
52418            "uniqueItems": true
52419          },
52420          {
52421            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
52422            "in": "query",
52423            "name": "resourceVersion",
52424            "type": "string",
52425            "uniqueItems": true
52426          },
52427          {
52428            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
52429            "in": "query",
52430            "name": "timeoutSeconds",
52431            "type": "integer",
52432            "uniqueItems": true
52433          },
52434          {
52435            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
52436            "in": "query",
52437            "name": "watch",
52438            "type": "boolean",
52439            "uniqueItems": true
52440          }
52441        ],
52442        "produces": [
52443          "application/json",
52444          "application/yaml",
52445          "application/vnd.kubernetes.protobuf",
52446          "application/json;stream=watch",
52447          "application/vnd.kubernetes.protobuf;stream=watch"
52448        ],
52449        "responses": {
52450          "200": {
52451            "description": "OK",
52452            "schema": {
52453              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentList"
52454            }
52455          },
52456          "401": {
52457            "description": "Unauthorized"
52458          }
52459        },
52460        "schemes": [
52461          "https"
52462        ],
52463        "tags": [
52464          "apps_v1beta1"
52465        ],
52466        "x-kubernetes-action": "list",
52467        "x-kubernetes-group-version-kind": {
52468          "group": "apps",
52469          "kind": "Deployment",
52470          "version": "v1beta1"
52471        }
52472      },
52473      "parameters": [
52474        {
52475          "description": "object name and auth scope, such as for teams and projects",
52476          "in": "path",
52477          "name": "namespace",
52478          "required": true,
52479          "type": "string",
52480          "uniqueItems": true
52481        },
52482        {
52483          "description": "If 'true', then the output is pretty printed.",
52484          "in": "query",
52485          "name": "pretty",
52486          "type": "string",
52487          "uniqueItems": true
52488        }
52489      ],
52490      "post": {
52491        "consumes": [
52492          "*/*"
52493        ],
52494        "description": "create a Deployment",
52495        "operationId": "createAppsV1beta1NamespacedDeployment",
52496        "parameters": [
52497          {
52498            "in": "body",
52499            "name": "body",
52500            "required": true,
52501            "schema": {
52502              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52503            }
52504          },
52505          {
52506            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52507            "in": "query",
52508            "name": "dryRun",
52509            "type": "string",
52510            "uniqueItems": true
52511          },
52512          {
52513            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52514            "in": "query",
52515            "name": "fieldManager",
52516            "type": "string",
52517            "uniqueItems": true
52518          }
52519        ],
52520        "produces": [
52521          "application/json",
52522          "application/yaml",
52523          "application/vnd.kubernetes.protobuf"
52524        ],
52525        "responses": {
52526          "200": {
52527            "description": "OK",
52528            "schema": {
52529              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52530            }
52531          },
52532          "201": {
52533            "description": "Created",
52534            "schema": {
52535              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52536            }
52537          },
52538          "202": {
52539            "description": "Accepted",
52540            "schema": {
52541              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52542            }
52543          },
52544          "401": {
52545            "description": "Unauthorized"
52546          }
52547        },
52548        "schemes": [
52549          "https"
52550        ],
52551        "tags": [
52552          "apps_v1beta1"
52553        ],
52554        "x-kubernetes-action": "post",
52555        "x-kubernetes-group-version-kind": {
52556          "group": "apps",
52557          "kind": "Deployment",
52558          "version": "v1beta1"
52559        }
52560      }
52561    },
52562    "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}": {
52563      "delete": {
52564        "consumes": [
52565          "*/*"
52566        ],
52567        "description": "delete a Deployment",
52568        "operationId": "deleteAppsV1beta1NamespacedDeployment",
52569        "parameters": [
52570          {
52571            "in": "body",
52572            "name": "body",
52573            "schema": {
52574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
52575            }
52576          },
52577          {
52578            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52579            "in": "query",
52580            "name": "dryRun",
52581            "type": "string",
52582            "uniqueItems": true
52583          },
52584          {
52585            "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.",
52586            "in": "query",
52587            "name": "gracePeriodSeconds",
52588            "type": "integer",
52589            "uniqueItems": true
52590          },
52591          {
52592            "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.",
52593            "in": "query",
52594            "name": "orphanDependents",
52595            "type": "boolean",
52596            "uniqueItems": true
52597          },
52598          {
52599            "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.",
52600            "in": "query",
52601            "name": "propagationPolicy",
52602            "type": "string",
52603            "uniqueItems": true
52604          }
52605        ],
52606        "produces": [
52607          "application/json",
52608          "application/yaml",
52609          "application/vnd.kubernetes.protobuf"
52610        ],
52611        "responses": {
52612          "200": {
52613            "description": "OK",
52614            "schema": {
52615              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52616            }
52617          },
52618          "202": {
52619            "description": "Accepted",
52620            "schema": {
52621              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52622            }
52623          },
52624          "401": {
52625            "description": "Unauthorized"
52626          }
52627        },
52628        "schemes": [
52629          "https"
52630        ],
52631        "tags": [
52632          "apps_v1beta1"
52633        ],
52634        "x-kubernetes-action": "delete",
52635        "x-kubernetes-group-version-kind": {
52636          "group": "apps",
52637          "kind": "Deployment",
52638          "version": "v1beta1"
52639        }
52640      },
52641      "get": {
52642        "consumes": [
52643          "*/*"
52644        ],
52645        "description": "read the specified Deployment",
52646        "operationId": "readAppsV1beta1NamespacedDeployment",
52647        "parameters": [
52648          {
52649            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
52650            "in": "query",
52651            "name": "exact",
52652            "type": "boolean",
52653            "uniqueItems": true
52654          },
52655          {
52656            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
52657            "in": "query",
52658            "name": "export",
52659            "type": "boolean",
52660            "uniqueItems": true
52661          }
52662        ],
52663        "produces": [
52664          "application/json",
52665          "application/yaml",
52666          "application/vnd.kubernetes.protobuf"
52667        ],
52668        "responses": {
52669          "200": {
52670            "description": "OK",
52671            "schema": {
52672              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52673            }
52674          },
52675          "401": {
52676            "description": "Unauthorized"
52677          }
52678        },
52679        "schemes": [
52680          "https"
52681        ],
52682        "tags": [
52683          "apps_v1beta1"
52684        ],
52685        "x-kubernetes-action": "get",
52686        "x-kubernetes-group-version-kind": {
52687          "group": "apps",
52688          "kind": "Deployment",
52689          "version": "v1beta1"
52690        }
52691      },
52692      "parameters": [
52693        {
52694          "description": "name of the Deployment",
52695          "in": "path",
52696          "name": "name",
52697          "required": true,
52698          "type": "string",
52699          "uniqueItems": true
52700        },
52701        {
52702          "description": "object name and auth scope, such as for teams and projects",
52703          "in": "path",
52704          "name": "namespace",
52705          "required": true,
52706          "type": "string",
52707          "uniqueItems": true
52708        },
52709        {
52710          "description": "If 'true', then the output is pretty printed.",
52711          "in": "query",
52712          "name": "pretty",
52713          "type": "string",
52714          "uniqueItems": true
52715        }
52716      ],
52717      "patch": {
52718        "consumes": [
52719          "application/json-patch+json",
52720          "application/merge-patch+json",
52721          "application/strategic-merge-patch+json"
52722        ],
52723        "description": "partially update the specified Deployment",
52724        "operationId": "patchAppsV1beta1NamespacedDeployment",
52725        "parameters": [
52726          {
52727            "in": "body",
52728            "name": "body",
52729            "required": true,
52730            "schema": {
52731              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
52732            }
52733          },
52734          {
52735            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52736            "in": "query",
52737            "name": "dryRun",
52738            "type": "string",
52739            "uniqueItems": true
52740          },
52741          {
52742            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
52743            "in": "query",
52744            "name": "fieldManager",
52745            "type": "string",
52746            "uniqueItems": true
52747          },
52748          {
52749            "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.",
52750            "in": "query",
52751            "name": "force",
52752            "type": "boolean",
52753            "uniqueItems": true
52754          }
52755        ],
52756        "produces": [
52757          "application/json",
52758          "application/yaml",
52759          "application/vnd.kubernetes.protobuf"
52760        ],
52761        "responses": {
52762          "200": {
52763            "description": "OK",
52764            "schema": {
52765              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52766            }
52767          },
52768          "401": {
52769            "description": "Unauthorized"
52770          }
52771        },
52772        "schemes": [
52773          "https"
52774        ],
52775        "tags": [
52776          "apps_v1beta1"
52777        ],
52778        "x-kubernetes-action": "patch",
52779        "x-kubernetes-group-version-kind": {
52780          "group": "apps",
52781          "kind": "Deployment",
52782          "version": "v1beta1"
52783        }
52784      },
52785      "put": {
52786        "consumes": [
52787          "*/*"
52788        ],
52789        "description": "replace the specified Deployment",
52790        "operationId": "replaceAppsV1beta1NamespacedDeployment",
52791        "parameters": [
52792          {
52793            "in": "body",
52794            "name": "body",
52795            "required": true,
52796            "schema": {
52797              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52798            }
52799          },
52800          {
52801            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52802            "in": "query",
52803            "name": "dryRun",
52804            "type": "string",
52805            "uniqueItems": true
52806          },
52807          {
52808            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52809            "in": "query",
52810            "name": "fieldManager",
52811            "type": "string",
52812            "uniqueItems": true
52813          }
52814        ],
52815        "produces": [
52816          "application/json",
52817          "application/yaml",
52818          "application/vnd.kubernetes.protobuf"
52819        ],
52820        "responses": {
52821          "200": {
52822            "description": "OK",
52823            "schema": {
52824              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52825            }
52826          },
52827          "201": {
52828            "description": "Created",
52829            "schema": {
52830              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
52831            }
52832          },
52833          "401": {
52834            "description": "Unauthorized"
52835          }
52836        },
52837        "schemes": [
52838          "https"
52839        ],
52840        "tags": [
52841          "apps_v1beta1"
52842        ],
52843        "x-kubernetes-action": "put",
52844        "x-kubernetes-group-version-kind": {
52845          "group": "apps",
52846          "kind": "Deployment",
52847          "version": "v1beta1"
52848        }
52849      }
52850    },
52851    "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback": {
52852      "parameters": [
52853        {
52854          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
52855          "in": "query",
52856          "name": "dryRun",
52857          "type": "string",
52858          "uniqueItems": true
52859        },
52860        {
52861          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
52862          "in": "query",
52863          "name": "fieldManager",
52864          "type": "string",
52865          "uniqueItems": true
52866        },
52867        {
52868          "description": "name of the DeploymentRollback",
52869          "in": "path",
52870          "name": "name",
52871          "required": true,
52872          "type": "string",
52873          "uniqueItems": true
52874        },
52875        {
52876          "description": "object name and auth scope, such as for teams and projects",
52877          "in": "path",
52878          "name": "namespace",
52879          "required": true,
52880          "type": "string",
52881          "uniqueItems": true
52882        },
52883        {
52884          "description": "If 'true', then the output is pretty printed.",
52885          "in": "query",
52886          "name": "pretty",
52887          "type": "string",
52888          "uniqueItems": true
52889        }
52890      ],
52891      "post": {
52892        "consumes": [
52893          "*/*"
52894        ],
52895        "description": "create rollback of a Deployment",
52896        "operationId": "createAppsV1beta1NamespacedDeploymentRollback",
52897        "parameters": [
52898          {
52899            "in": "body",
52900            "name": "body",
52901            "required": true,
52902            "schema": {
52903              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentRollback"
52904            }
52905          }
52906        ],
52907        "produces": [
52908          "application/json",
52909          "application/yaml",
52910          "application/vnd.kubernetes.protobuf"
52911        ],
52912        "responses": {
52913          "200": {
52914            "description": "OK",
52915            "schema": {
52916              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52917            }
52918          },
52919          "201": {
52920            "description": "Created",
52921            "schema": {
52922              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52923            }
52924          },
52925          "202": {
52926            "description": "Accepted",
52927            "schema": {
52928              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
52929            }
52930          },
52931          "401": {
52932            "description": "Unauthorized"
52933          }
52934        },
52935        "schemes": [
52936          "https"
52937        ],
52938        "tags": [
52939          "apps_v1beta1"
52940        ],
52941        "x-kubernetes-action": "post",
52942        "x-kubernetes-group-version-kind": {
52943          "group": "apps",
52944          "kind": "DeploymentRollback",
52945          "version": "v1beta1"
52946        }
52947      }
52948    },
52949    "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale": {
52950      "get": {
52951        "consumes": [
52952          "*/*"
52953        ],
52954        "description": "read scale of the specified Deployment",
52955        "operationId": "readAppsV1beta1NamespacedDeploymentScale",
52956        "produces": [
52957          "application/json",
52958          "application/yaml",
52959          "application/vnd.kubernetes.protobuf"
52960        ],
52961        "responses": {
52962          "200": {
52963            "description": "OK",
52964            "schema": {
52965              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
52966            }
52967          },
52968          "401": {
52969            "description": "Unauthorized"
52970          }
52971        },
52972        "schemes": [
52973          "https"
52974        ],
52975        "tags": [
52976          "apps_v1beta1"
52977        ],
52978        "x-kubernetes-action": "get",
52979        "x-kubernetes-group-version-kind": {
52980          "group": "apps",
52981          "kind": "Scale",
52982          "version": "v1beta1"
52983        }
52984      },
52985      "parameters": [
52986        {
52987          "description": "name of the Scale",
52988          "in": "path",
52989          "name": "name",
52990          "required": true,
52991          "type": "string",
52992          "uniqueItems": true
52993        },
52994        {
52995          "description": "object name and auth scope, such as for teams and projects",
52996          "in": "path",
52997          "name": "namespace",
52998          "required": true,
52999          "type": "string",
53000          "uniqueItems": true
53001        },
53002        {
53003          "description": "If 'true', then the output is pretty printed.",
53004          "in": "query",
53005          "name": "pretty",
53006          "type": "string",
53007          "uniqueItems": true
53008        }
53009      ],
53010      "patch": {
53011        "consumes": [
53012          "application/json-patch+json",
53013          "application/merge-patch+json",
53014          "application/strategic-merge-patch+json"
53015        ],
53016        "description": "partially update scale of the specified Deployment",
53017        "operationId": "patchAppsV1beta1NamespacedDeploymentScale",
53018        "parameters": [
53019          {
53020            "in": "body",
53021            "name": "body",
53022            "required": true,
53023            "schema": {
53024              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
53025            }
53026          },
53027          {
53028            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53029            "in": "query",
53030            "name": "dryRun",
53031            "type": "string",
53032            "uniqueItems": true
53033          },
53034          {
53035            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
53036            "in": "query",
53037            "name": "fieldManager",
53038            "type": "string",
53039            "uniqueItems": true
53040          },
53041          {
53042            "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.",
53043            "in": "query",
53044            "name": "force",
53045            "type": "boolean",
53046            "uniqueItems": true
53047          }
53048        ],
53049        "produces": [
53050          "application/json",
53051          "application/yaml",
53052          "application/vnd.kubernetes.protobuf"
53053        ],
53054        "responses": {
53055          "200": {
53056            "description": "OK",
53057            "schema": {
53058              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
53059            }
53060          },
53061          "401": {
53062            "description": "Unauthorized"
53063          }
53064        },
53065        "schemes": [
53066          "https"
53067        ],
53068        "tags": [
53069          "apps_v1beta1"
53070        ],
53071        "x-kubernetes-action": "patch",
53072        "x-kubernetes-group-version-kind": {
53073          "group": "apps",
53074          "kind": "Scale",
53075          "version": "v1beta1"
53076        }
53077      },
53078      "put": {
53079        "consumes": [
53080          "*/*"
53081        ],
53082        "description": "replace scale of the specified Deployment",
53083        "operationId": "replaceAppsV1beta1NamespacedDeploymentScale",
53084        "parameters": [
53085          {
53086            "in": "body",
53087            "name": "body",
53088            "required": true,
53089            "schema": {
53090              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
53091            }
53092          },
53093          {
53094            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53095            "in": "query",
53096            "name": "dryRun",
53097            "type": "string",
53098            "uniqueItems": true
53099          },
53100          {
53101            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53102            "in": "query",
53103            "name": "fieldManager",
53104            "type": "string",
53105            "uniqueItems": true
53106          }
53107        ],
53108        "produces": [
53109          "application/json",
53110          "application/yaml",
53111          "application/vnd.kubernetes.protobuf"
53112        ],
53113        "responses": {
53114          "200": {
53115            "description": "OK",
53116            "schema": {
53117              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
53118            }
53119          },
53120          "201": {
53121            "description": "Created",
53122            "schema": {
53123              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
53124            }
53125          },
53126          "401": {
53127            "description": "Unauthorized"
53128          }
53129        },
53130        "schemes": [
53131          "https"
53132        ],
53133        "tags": [
53134          "apps_v1beta1"
53135        ],
53136        "x-kubernetes-action": "put",
53137        "x-kubernetes-group-version-kind": {
53138          "group": "apps",
53139          "kind": "Scale",
53140          "version": "v1beta1"
53141        }
53142      }
53143    },
53144    "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status": {
53145      "get": {
53146        "consumes": [
53147          "*/*"
53148        ],
53149        "description": "read status of the specified Deployment",
53150        "operationId": "readAppsV1beta1NamespacedDeploymentStatus",
53151        "produces": [
53152          "application/json",
53153          "application/yaml",
53154          "application/vnd.kubernetes.protobuf"
53155        ],
53156        "responses": {
53157          "200": {
53158            "description": "OK",
53159            "schema": {
53160              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
53161            }
53162          },
53163          "401": {
53164            "description": "Unauthorized"
53165          }
53166        },
53167        "schemes": [
53168          "https"
53169        ],
53170        "tags": [
53171          "apps_v1beta1"
53172        ],
53173        "x-kubernetes-action": "get",
53174        "x-kubernetes-group-version-kind": {
53175          "group": "apps",
53176          "kind": "Deployment",
53177          "version": "v1beta1"
53178        }
53179      },
53180      "parameters": [
53181        {
53182          "description": "name of the Deployment",
53183          "in": "path",
53184          "name": "name",
53185          "required": true,
53186          "type": "string",
53187          "uniqueItems": true
53188        },
53189        {
53190          "description": "object name and auth scope, such as for teams and projects",
53191          "in": "path",
53192          "name": "namespace",
53193          "required": true,
53194          "type": "string",
53195          "uniqueItems": true
53196        },
53197        {
53198          "description": "If 'true', then the output is pretty printed.",
53199          "in": "query",
53200          "name": "pretty",
53201          "type": "string",
53202          "uniqueItems": true
53203        }
53204      ],
53205      "patch": {
53206        "consumes": [
53207          "application/json-patch+json",
53208          "application/merge-patch+json",
53209          "application/strategic-merge-patch+json"
53210        ],
53211        "description": "partially update status of the specified Deployment",
53212        "operationId": "patchAppsV1beta1NamespacedDeploymentStatus",
53213        "parameters": [
53214          {
53215            "in": "body",
53216            "name": "body",
53217            "required": true,
53218            "schema": {
53219              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
53220            }
53221          },
53222          {
53223            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53224            "in": "query",
53225            "name": "dryRun",
53226            "type": "string",
53227            "uniqueItems": true
53228          },
53229          {
53230            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
53231            "in": "query",
53232            "name": "fieldManager",
53233            "type": "string",
53234            "uniqueItems": true
53235          },
53236          {
53237            "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.",
53238            "in": "query",
53239            "name": "force",
53240            "type": "boolean",
53241            "uniqueItems": true
53242          }
53243        ],
53244        "produces": [
53245          "application/json",
53246          "application/yaml",
53247          "application/vnd.kubernetes.protobuf"
53248        ],
53249        "responses": {
53250          "200": {
53251            "description": "OK",
53252            "schema": {
53253              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
53254            }
53255          },
53256          "401": {
53257            "description": "Unauthorized"
53258          }
53259        },
53260        "schemes": [
53261          "https"
53262        ],
53263        "tags": [
53264          "apps_v1beta1"
53265        ],
53266        "x-kubernetes-action": "patch",
53267        "x-kubernetes-group-version-kind": {
53268          "group": "apps",
53269          "kind": "Deployment",
53270          "version": "v1beta1"
53271        }
53272      },
53273      "put": {
53274        "consumes": [
53275          "*/*"
53276        ],
53277        "description": "replace status of the specified Deployment",
53278        "operationId": "replaceAppsV1beta1NamespacedDeploymentStatus",
53279        "parameters": [
53280          {
53281            "in": "body",
53282            "name": "body",
53283            "required": true,
53284            "schema": {
53285              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
53286            }
53287          },
53288          {
53289            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53290            "in": "query",
53291            "name": "dryRun",
53292            "type": "string",
53293            "uniqueItems": true
53294          },
53295          {
53296            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53297            "in": "query",
53298            "name": "fieldManager",
53299            "type": "string",
53300            "uniqueItems": true
53301          }
53302        ],
53303        "produces": [
53304          "application/json",
53305          "application/yaml",
53306          "application/vnd.kubernetes.protobuf"
53307        ],
53308        "responses": {
53309          "200": {
53310            "description": "OK",
53311            "schema": {
53312              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
53313            }
53314          },
53315          "201": {
53316            "description": "Created",
53317            "schema": {
53318              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment"
53319            }
53320          },
53321          "401": {
53322            "description": "Unauthorized"
53323          }
53324        },
53325        "schemes": [
53326          "https"
53327        ],
53328        "tags": [
53329          "apps_v1beta1"
53330        ],
53331        "x-kubernetes-action": "put",
53332        "x-kubernetes-group-version-kind": {
53333          "group": "apps",
53334          "kind": "Deployment",
53335          "version": "v1beta1"
53336        }
53337      }
53338    },
53339    "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets": {
53340      "delete": {
53341        "consumes": [
53342          "*/*"
53343        ],
53344        "description": "delete collection of StatefulSet",
53345        "operationId": "deleteAppsV1beta1CollectionNamespacedStatefulSet",
53346        "parameters": [
53347          {
53348            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
53349            "in": "query",
53350            "name": "allowWatchBookmarks",
53351            "type": "boolean",
53352            "uniqueItems": true
53353          },
53354          {
53355            "in": "body",
53356            "name": "body",
53357            "schema": {
53358              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
53359            }
53360          },
53361          {
53362            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53363            "in": "query",
53364            "name": "continue",
53365            "type": "string",
53366            "uniqueItems": true
53367          },
53368          {
53369            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53370            "in": "query",
53371            "name": "dryRun",
53372            "type": "string",
53373            "uniqueItems": true
53374          },
53375          {
53376            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53377            "in": "query",
53378            "name": "fieldSelector",
53379            "type": "string",
53380            "uniqueItems": true
53381          },
53382          {
53383            "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.",
53384            "in": "query",
53385            "name": "gracePeriodSeconds",
53386            "type": "integer",
53387            "uniqueItems": true
53388          },
53389          {
53390            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53391            "in": "query",
53392            "name": "labelSelector",
53393            "type": "string",
53394            "uniqueItems": true
53395          },
53396          {
53397            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53398            "in": "query",
53399            "name": "limit",
53400            "type": "integer",
53401            "uniqueItems": true
53402          },
53403          {
53404            "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.",
53405            "in": "query",
53406            "name": "orphanDependents",
53407            "type": "boolean",
53408            "uniqueItems": true
53409          },
53410          {
53411            "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.",
53412            "in": "query",
53413            "name": "propagationPolicy",
53414            "type": "string",
53415            "uniqueItems": true
53416          },
53417          {
53418            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
53419            "in": "query",
53420            "name": "resourceVersion",
53421            "type": "string",
53422            "uniqueItems": true
53423          },
53424          {
53425            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53426            "in": "query",
53427            "name": "timeoutSeconds",
53428            "type": "integer",
53429            "uniqueItems": true
53430          },
53431          {
53432            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53433            "in": "query",
53434            "name": "watch",
53435            "type": "boolean",
53436            "uniqueItems": true
53437          }
53438        ],
53439        "produces": [
53440          "application/json",
53441          "application/yaml",
53442          "application/vnd.kubernetes.protobuf"
53443        ],
53444        "responses": {
53445          "200": {
53446            "description": "OK",
53447            "schema": {
53448              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
53449            }
53450          },
53451          "401": {
53452            "description": "Unauthorized"
53453          }
53454        },
53455        "schemes": [
53456          "https"
53457        ],
53458        "tags": [
53459          "apps_v1beta1"
53460        ],
53461        "x-kubernetes-action": "deletecollection",
53462        "x-kubernetes-group-version-kind": {
53463          "group": "apps",
53464          "kind": "StatefulSet",
53465          "version": "v1beta1"
53466        }
53467      },
53468      "get": {
53469        "consumes": [
53470          "*/*"
53471        ],
53472        "description": "list or watch objects of kind StatefulSet",
53473        "operationId": "listAppsV1beta1NamespacedStatefulSet",
53474        "parameters": [
53475          {
53476            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
53477            "in": "query",
53478            "name": "allowWatchBookmarks",
53479            "type": "boolean",
53480            "uniqueItems": true
53481          },
53482          {
53483            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
53484            "in": "query",
53485            "name": "continue",
53486            "type": "string",
53487            "uniqueItems": true
53488          },
53489          {
53490            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
53491            "in": "query",
53492            "name": "fieldSelector",
53493            "type": "string",
53494            "uniqueItems": true
53495          },
53496          {
53497            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
53498            "in": "query",
53499            "name": "labelSelector",
53500            "type": "string",
53501            "uniqueItems": true
53502          },
53503          {
53504            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
53505            "in": "query",
53506            "name": "limit",
53507            "type": "integer",
53508            "uniqueItems": true
53509          },
53510          {
53511            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
53512            "in": "query",
53513            "name": "resourceVersion",
53514            "type": "string",
53515            "uniqueItems": true
53516          },
53517          {
53518            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
53519            "in": "query",
53520            "name": "timeoutSeconds",
53521            "type": "integer",
53522            "uniqueItems": true
53523          },
53524          {
53525            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
53526            "in": "query",
53527            "name": "watch",
53528            "type": "boolean",
53529            "uniqueItems": true
53530          }
53531        ],
53532        "produces": [
53533          "application/json",
53534          "application/yaml",
53535          "application/vnd.kubernetes.protobuf",
53536          "application/json;stream=watch",
53537          "application/vnd.kubernetes.protobuf;stream=watch"
53538        ],
53539        "responses": {
53540          "200": {
53541            "description": "OK",
53542            "schema": {
53543              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetList"
53544            }
53545          },
53546          "401": {
53547            "description": "Unauthorized"
53548          }
53549        },
53550        "schemes": [
53551          "https"
53552        ],
53553        "tags": [
53554          "apps_v1beta1"
53555        ],
53556        "x-kubernetes-action": "list",
53557        "x-kubernetes-group-version-kind": {
53558          "group": "apps",
53559          "kind": "StatefulSet",
53560          "version": "v1beta1"
53561        }
53562      },
53563      "parameters": [
53564        {
53565          "description": "object name and auth scope, such as for teams and projects",
53566          "in": "path",
53567          "name": "namespace",
53568          "required": true,
53569          "type": "string",
53570          "uniqueItems": true
53571        },
53572        {
53573          "description": "If 'true', then the output is pretty printed.",
53574          "in": "query",
53575          "name": "pretty",
53576          "type": "string",
53577          "uniqueItems": true
53578        }
53579      ],
53580      "post": {
53581        "consumes": [
53582          "*/*"
53583        ],
53584        "description": "create a StatefulSet",
53585        "operationId": "createAppsV1beta1NamespacedStatefulSet",
53586        "parameters": [
53587          {
53588            "in": "body",
53589            "name": "body",
53590            "required": true,
53591            "schema": {
53592              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53593            }
53594          },
53595          {
53596            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53597            "in": "query",
53598            "name": "dryRun",
53599            "type": "string",
53600            "uniqueItems": true
53601          },
53602          {
53603            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53604            "in": "query",
53605            "name": "fieldManager",
53606            "type": "string",
53607            "uniqueItems": true
53608          }
53609        ],
53610        "produces": [
53611          "application/json",
53612          "application/yaml",
53613          "application/vnd.kubernetes.protobuf"
53614        ],
53615        "responses": {
53616          "200": {
53617            "description": "OK",
53618            "schema": {
53619              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53620            }
53621          },
53622          "201": {
53623            "description": "Created",
53624            "schema": {
53625              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53626            }
53627          },
53628          "202": {
53629            "description": "Accepted",
53630            "schema": {
53631              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53632            }
53633          },
53634          "401": {
53635            "description": "Unauthorized"
53636          }
53637        },
53638        "schemes": [
53639          "https"
53640        ],
53641        "tags": [
53642          "apps_v1beta1"
53643        ],
53644        "x-kubernetes-action": "post",
53645        "x-kubernetes-group-version-kind": {
53646          "group": "apps",
53647          "kind": "StatefulSet",
53648          "version": "v1beta1"
53649        }
53650      }
53651    },
53652    "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}": {
53653      "delete": {
53654        "consumes": [
53655          "*/*"
53656        ],
53657        "description": "delete a StatefulSet",
53658        "operationId": "deleteAppsV1beta1NamespacedStatefulSet",
53659        "parameters": [
53660          {
53661            "in": "body",
53662            "name": "body",
53663            "schema": {
53664              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
53665            }
53666          },
53667          {
53668            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53669            "in": "query",
53670            "name": "dryRun",
53671            "type": "string",
53672            "uniqueItems": true
53673          },
53674          {
53675            "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.",
53676            "in": "query",
53677            "name": "gracePeriodSeconds",
53678            "type": "integer",
53679            "uniqueItems": true
53680          },
53681          {
53682            "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.",
53683            "in": "query",
53684            "name": "orphanDependents",
53685            "type": "boolean",
53686            "uniqueItems": true
53687          },
53688          {
53689            "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.",
53690            "in": "query",
53691            "name": "propagationPolicy",
53692            "type": "string",
53693            "uniqueItems": true
53694          }
53695        ],
53696        "produces": [
53697          "application/json",
53698          "application/yaml",
53699          "application/vnd.kubernetes.protobuf"
53700        ],
53701        "responses": {
53702          "200": {
53703            "description": "OK",
53704            "schema": {
53705              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
53706            }
53707          },
53708          "202": {
53709            "description": "Accepted",
53710            "schema": {
53711              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
53712            }
53713          },
53714          "401": {
53715            "description": "Unauthorized"
53716          }
53717        },
53718        "schemes": [
53719          "https"
53720        ],
53721        "tags": [
53722          "apps_v1beta1"
53723        ],
53724        "x-kubernetes-action": "delete",
53725        "x-kubernetes-group-version-kind": {
53726          "group": "apps",
53727          "kind": "StatefulSet",
53728          "version": "v1beta1"
53729        }
53730      },
53731      "get": {
53732        "consumes": [
53733          "*/*"
53734        ],
53735        "description": "read the specified StatefulSet",
53736        "operationId": "readAppsV1beta1NamespacedStatefulSet",
53737        "parameters": [
53738          {
53739            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
53740            "in": "query",
53741            "name": "exact",
53742            "type": "boolean",
53743            "uniqueItems": true
53744          },
53745          {
53746            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
53747            "in": "query",
53748            "name": "export",
53749            "type": "boolean",
53750            "uniqueItems": true
53751          }
53752        ],
53753        "produces": [
53754          "application/json",
53755          "application/yaml",
53756          "application/vnd.kubernetes.protobuf"
53757        ],
53758        "responses": {
53759          "200": {
53760            "description": "OK",
53761            "schema": {
53762              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53763            }
53764          },
53765          "401": {
53766            "description": "Unauthorized"
53767          }
53768        },
53769        "schemes": [
53770          "https"
53771        ],
53772        "tags": [
53773          "apps_v1beta1"
53774        ],
53775        "x-kubernetes-action": "get",
53776        "x-kubernetes-group-version-kind": {
53777          "group": "apps",
53778          "kind": "StatefulSet",
53779          "version": "v1beta1"
53780        }
53781      },
53782      "parameters": [
53783        {
53784          "description": "name of the StatefulSet",
53785          "in": "path",
53786          "name": "name",
53787          "required": true,
53788          "type": "string",
53789          "uniqueItems": true
53790        },
53791        {
53792          "description": "object name and auth scope, such as for teams and projects",
53793          "in": "path",
53794          "name": "namespace",
53795          "required": true,
53796          "type": "string",
53797          "uniqueItems": true
53798        },
53799        {
53800          "description": "If 'true', then the output is pretty printed.",
53801          "in": "query",
53802          "name": "pretty",
53803          "type": "string",
53804          "uniqueItems": true
53805        }
53806      ],
53807      "patch": {
53808        "consumes": [
53809          "application/json-patch+json",
53810          "application/merge-patch+json",
53811          "application/strategic-merge-patch+json"
53812        ],
53813        "description": "partially update the specified StatefulSet",
53814        "operationId": "patchAppsV1beta1NamespacedStatefulSet",
53815        "parameters": [
53816          {
53817            "in": "body",
53818            "name": "body",
53819            "required": true,
53820            "schema": {
53821              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
53822            }
53823          },
53824          {
53825            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53826            "in": "query",
53827            "name": "dryRun",
53828            "type": "string",
53829            "uniqueItems": true
53830          },
53831          {
53832            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
53833            "in": "query",
53834            "name": "fieldManager",
53835            "type": "string",
53836            "uniqueItems": true
53837          },
53838          {
53839            "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.",
53840            "in": "query",
53841            "name": "force",
53842            "type": "boolean",
53843            "uniqueItems": true
53844          }
53845        ],
53846        "produces": [
53847          "application/json",
53848          "application/yaml",
53849          "application/vnd.kubernetes.protobuf"
53850        ],
53851        "responses": {
53852          "200": {
53853            "description": "OK",
53854            "schema": {
53855              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53856            }
53857          },
53858          "401": {
53859            "description": "Unauthorized"
53860          }
53861        },
53862        "schemes": [
53863          "https"
53864        ],
53865        "tags": [
53866          "apps_v1beta1"
53867        ],
53868        "x-kubernetes-action": "patch",
53869        "x-kubernetes-group-version-kind": {
53870          "group": "apps",
53871          "kind": "StatefulSet",
53872          "version": "v1beta1"
53873        }
53874      },
53875      "put": {
53876        "consumes": [
53877          "*/*"
53878        ],
53879        "description": "replace the specified StatefulSet",
53880        "operationId": "replaceAppsV1beta1NamespacedStatefulSet",
53881        "parameters": [
53882          {
53883            "in": "body",
53884            "name": "body",
53885            "required": true,
53886            "schema": {
53887              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53888            }
53889          },
53890          {
53891            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
53892            "in": "query",
53893            "name": "dryRun",
53894            "type": "string",
53895            "uniqueItems": true
53896          },
53897          {
53898            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
53899            "in": "query",
53900            "name": "fieldManager",
53901            "type": "string",
53902            "uniqueItems": true
53903          }
53904        ],
53905        "produces": [
53906          "application/json",
53907          "application/yaml",
53908          "application/vnd.kubernetes.protobuf"
53909        ],
53910        "responses": {
53911          "200": {
53912            "description": "OK",
53913            "schema": {
53914              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53915            }
53916          },
53917          "201": {
53918            "description": "Created",
53919            "schema": {
53920              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
53921            }
53922          },
53923          "401": {
53924            "description": "Unauthorized"
53925          }
53926        },
53927        "schemes": [
53928          "https"
53929        ],
53930        "tags": [
53931          "apps_v1beta1"
53932        ],
53933        "x-kubernetes-action": "put",
53934        "x-kubernetes-group-version-kind": {
53935          "group": "apps",
53936          "kind": "StatefulSet",
53937          "version": "v1beta1"
53938        }
53939      }
53940    },
53941    "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale": {
53942      "get": {
53943        "consumes": [
53944          "*/*"
53945        ],
53946        "description": "read scale of the specified StatefulSet",
53947        "operationId": "readAppsV1beta1NamespacedStatefulSetScale",
53948        "produces": [
53949          "application/json",
53950          "application/yaml",
53951          "application/vnd.kubernetes.protobuf"
53952        ],
53953        "responses": {
53954          "200": {
53955            "description": "OK",
53956            "schema": {
53957              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
53958            }
53959          },
53960          "401": {
53961            "description": "Unauthorized"
53962          }
53963        },
53964        "schemes": [
53965          "https"
53966        ],
53967        "tags": [
53968          "apps_v1beta1"
53969        ],
53970        "x-kubernetes-action": "get",
53971        "x-kubernetes-group-version-kind": {
53972          "group": "apps",
53973          "kind": "Scale",
53974          "version": "v1beta1"
53975        }
53976      },
53977      "parameters": [
53978        {
53979          "description": "name of the Scale",
53980          "in": "path",
53981          "name": "name",
53982          "required": true,
53983          "type": "string",
53984          "uniqueItems": true
53985        },
53986        {
53987          "description": "object name and auth scope, such as for teams and projects",
53988          "in": "path",
53989          "name": "namespace",
53990          "required": true,
53991          "type": "string",
53992          "uniqueItems": true
53993        },
53994        {
53995          "description": "If 'true', then the output is pretty printed.",
53996          "in": "query",
53997          "name": "pretty",
53998          "type": "string",
53999          "uniqueItems": true
54000        }
54001      ],
54002      "patch": {
54003        "consumes": [
54004          "application/json-patch+json",
54005          "application/merge-patch+json",
54006          "application/strategic-merge-patch+json"
54007        ],
54008        "description": "partially update scale of the specified StatefulSet",
54009        "operationId": "patchAppsV1beta1NamespacedStatefulSetScale",
54010        "parameters": [
54011          {
54012            "in": "body",
54013            "name": "body",
54014            "required": true,
54015            "schema": {
54016              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
54017            }
54018          },
54019          {
54020            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54021            "in": "query",
54022            "name": "dryRun",
54023            "type": "string",
54024            "uniqueItems": true
54025          },
54026          {
54027            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
54028            "in": "query",
54029            "name": "fieldManager",
54030            "type": "string",
54031            "uniqueItems": true
54032          },
54033          {
54034            "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.",
54035            "in": "query",
54036            "name": "force",
54037            "type": "boolean",
54038            "uniqueItems": true
54039          }
54040        ],
54041        "produces": [
54042          "application/json",
54043          "application/yaml",
54044          "application/vnd.kubernetes.protobuf"
54045        ],
54046        "responses": {
54047          "200": {
54048            "description": "OK",
54049            "schema": {
54050              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
54051            }
54052          },
54053          "401": {
54054            "description": "Unauthorized"
54055          }
54056        },
54057        "schemes": [
54058          "https"
54059        ],
54060        "tags": [
54061          "apps_v1beta1"
54062        ],
54063        "x-kubernetes-action": "patch",
54064        "x-kubernetes-group-version-kind": {
54065          "group": "apps",
54066          "kind": "Scale",
54067          "version": "v1beta1"
54068        }
54069      },
54070      "put": {
54071        "consumes": [
54072          "*/*"
54073        ],
54074        "description": "replace scale of the specified StatefulSet",
54075        "operationId": "replaceAppsV1beta1NamespacedStatefulSetScale",
54076        "parameters": [
54077          {
54078            "in": "body",
54079            "name": "body",
54080            "required": true,
54081            "schema": {
54082              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
54083            }
54084          },
54085          {
54086            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54087            "in": "query",
54088            "name": "dryRun",
54089            "type": "string",
54090            "uniqueItems": true
54091          },
54092          {
54093            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54094            "in": "query",
54095            "name": "fieldManager",
54096            "type": "string",
54097            "uniqueItems": true
54098          }
54099        ],
54100        "produces": [
54101          "application/json",
54102          "application/yaml",
54103          "application/vnd.kubernetes.protobuf"
54104        ],
54105        "responses": {
54106          "200": {
54107            "description": "OK",
54108            "schema": {
54109              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
54110            }
54111          },
54112          "201": {
54113            "description": "Created",
54114            "schema": {
54115              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale"
54116            }
54117          },
54118          "401": {
54119            "description": "Unauthorized"
54120          }
54121        },
54122        "schemes": [
54123          "https"
54124        ],
54125        "tags": [
54126          "apps_v1beta1"
54127        ],
54128        "x-kubernetes-action": "put",
54129        "x-kubernetes-group-version-kind": {
54130          "group": "apps",
54131          "kind": "Scale",
54132          "version": "v1beta1"
54133        }
54134      }
54135    },
54136    "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status": {
54137      "get": {
54138        "consumes": [
54139          "*/*"
54140        ],
54141        "description": "read status of the specified StatefulSet",
54142        "operationId": "readAppsV1beta1NamespacedStatefulSetStatus",
54143        "produces": [
54144          "application/json",
54145          "application/yaml",
54146          "application/vnd.kubernetes.protobuf"
54147        ],
54148        "responses": {
54149          "200": {
54150            "description": "OK",
54151            "schema": {
54152              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
54153            }
54154          },
54155          "401": {
54156            "description": "Unauthorized"
54157          }
54158        },
54159        "schemes": [
54160          "https"
54161        ],
54162        "tags": [
54163          "apps_v1beta1"
54164        ],
54165        "x-kubernetes-action": "get",
54166        "x-kubernetes-group-version-kind": {
54167          "group": "apps",
54168          "kind": "StatefulSet",
54169          "version": "v1beta1"
54170        }
54171      },
54172      "parameters": [
54173        {
54174          "description": "name of the StatefulSet",
54175          "in": "path",
54176          "name": "name",
54177          "required": true,
54178          "type": "string",
54179          "uniqueItems": true
54180        },
54181        {
54182          "description": "object name and auth scope, such as for teams and projects",
54183          "in": "path",
54184          "name": "namespace",
54185          "required": true,
54186          "type": "string",
54187          "uniqueItems": true
54188        },
54189        {
54190          "description": "If 'true', then the output is pretty printed.",
54191          "in": "query",
54192          "name": "pretty",
54193          "type": "string",
54194          "uniqueItems": true
54195        }
54196      ],
54197      "patch": {
54198        "consumes": [
54199          "application/json-patch+json",
54200          "application/merge-patch+json",
54201          "application/strategic-merge-patch+json"
54202        ],
54203        "description": "partially update status of the specified StatefulSet",
54204        "operationId": "patchAppsV1beta1NamespacedStatefulSetStatus",
54205        "parameters": [
54206          {
54207            "in": "body",
54208            "name": "body",
54209            "required": true,
54210            "schema": {
54211              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
54212            }
54213          },
54214          {
54215            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54216            "in": "query",
54217            "name": "dryRun",
54218            "type": "string",
54219            "uniqueItems": true
54220          },
54221          {
54222            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
54223            "in": "query",
54224            "name": "fieldManager",
54225            "type": "string",
54226            "uniqueItems": true
54227          },
54228          {
54229            "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.",
54230            "in": "query",
54231            "name": "force",
54232            "type": "boolean",
54233            "uniqueItems": true
54234          }
54235        ],
54236        "produces": [
54237          "application/json",
54238          "application/yaml",
54239          "application/vnd.kubernetes.protobuf"
54240        ],
54241        "responses": {
54242          "200": {
54243            "description": "OK",
54244            "schema": {
54245              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
54246            }
54247          },
54248          "401": {
54249            "description": "Unauthorized"
54250          }
54251        },
54252        "schemes": [
54253          "https"
54254        ],
54255        "tags": [
54256          "apps_v1beta1"
54257        ],
54258        "x-kubernetes-action": "patch",
54259        "x-kubernetes-group-version-kind": {
54260          "group": "apps",
54261          "kind": "StatefulSet",
54262          "version": "v1beta1"
54263        }
54264      },
54265      "put": {
54266        "consumes": [
54267          "*/*"
54268        ],
54269        "description": "replace status of the specified StatefulSet",
54270        "operationId": "replaceAppsV1beta1NamespacedStatefulSetStatus",
54271        "parameters": [
54272          {
54273            "in": "body",
54274            "name": "body",
54275            "required": true,
54276            "schema": {
54277              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
54278            }
54279          },
54280          {
54281            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
54282            "in": "query",
54283            "name": "dryRun",
54284            "type": "string",
54285            "uniqueItems": true
54286          },
54287          {
54288            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
54289            "in": "query",
54290            "name": "fieldManager",
54291            "type": "string",
54292            "uniqueItems": true
54293          }
54294        ],
54295        "produces": [
54296          "application/json",
54297          "application/yaml",
54298          "application/vnd.kubernetes.protobuf"
54299        ],
54300        "responses": {
54301          "200": {
54302            "description": "OK",
54303            "schema": {
54304              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
54305            }
54306          },
54307          "201": {
54308            "description": "Created",
54309            "schema": {
54310              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet"
54311            }
54312          },
54313          "401": {
54314            "description": "Unauthorized"
54315          }
54316        },
54317        "schemes": [
54318          "https"
54319        ],
54320        "tags": [
54321          "apps_v1beta1"
54322        ],
54323        "x-kubernetes-action": "put",
54324        "x-kubernetes-group-version-kind": {
54325          "group": "apps",
54326          "kind": "StatefulSet",
54327          "version": "v1beta1"
54328        }
54329      }
54330    },
54331    "/apis/apps/v1beta1/statefulsets": {
54332      "get": {
54333        "consumes": [
54334          "*/*"
54335        ],
54336        "description": "list or watch objects of kind StatefulSet",
54337        "operationId": "listAppsV1beta1StatefulSetForAllNamespaces",
54338        "produces": [
54339          "application/json",
54340          "application/yaml",
54341          "application/vnd.kubernetes.protobuf",
54342          "application/json;stream=watch",
54343          "application/vnd.kubernetes.protobuf;stream=watch"
54344        ],
54345        "responses": {
54346          "200": {
54347            "description": "OK",
54348            "schema": {
54349              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSetList"
54350            }
54351          },
54352          "401": {
54353            "description": "Unauthorized"
54354          }
54355        },
54356        "schemes": [
54357          "https"
54358        ],
54359        "tags": [
54360          "apps_v1beta1"
54361        ],
54362        "x-kubernetes-action": "list",
54363        "x-kubernetes-group-version-kind": {
54364          "group": "apps",
54365          "kind": "StatefulSet",
54366          "version": "v1beta1"
54367        }
54368      },
54369      "parameters": [
54370        {
54371          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
54372          "in": "query",
54373          "name": "allowWatchBookmarks",
54374          "type": "boolean",
54375          "uniqueItems": true
54376        },
54377        {
54378          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54379          "in": "query",
54380          "name": "continue",
54381          "type": "string",
54382          "uniqueItems": true
54383        },
54384        {
54385          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54386          "in": "query",
54387          "name": "fieldSelector",
54388          "type": "string",
54389          "uniqueItems": true
54390        },
54391        {
54392          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54393          "in": "query",
54394          "name": "labelSelector",
54395          "type": "string",
54396          "uniqueItems": true
54397        },
54398        {
54399          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54400          "in": "query",
54401          "name": "limit",
54402          "type": "integer",
54403          "uniqueItems": true
54404        },
54405        {
54406          "description": "If 'true', then the output is pretty printed.",
54407          "in": "query",
54408          "name": "pretty",
54409          "type": "string",
54410          "uniqueItems": true
54411        },
54412        {
54413          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
54414          "in": "query",
54415          "name": "resourceVersion",
54416          "type": "string",
54417          "uniqueItems": true
54418        },
54419        {
54420          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54421          "in": "query",
54422          "name": "timeoutSeconds",
54423          "type": "integer",
54424          "uniqueItems": true
54425        },
54426        {
54427          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54428          "in": "query",
54429          "name": "watch",
54430          "type": "boolean",
54431          "uniqueItems": true
54432        }
54433      ]
54434    },
54435    "/apis/apps/v1beta1/watch/controllerrevisions": {
54436      "get": {
54437        "consumes": [
54438          "*/*"
54439        ],
54440        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
54441        "operationId": "watchAppsV1beta1ControllerRevisionListForAllNamespaces",
54442        "produces": [
54443          "application/json",
54444          "application/yaml",
54445          "application/vnd.kubernetes.protobuf",
54446          "application/json;stream=watch",
54447          "application/vnd.kubernetes.protobuf;stream=watch"
54448        ],
54449        "responses": {
54450          "200": {
54451            "description": "OK",
54452            "schema": {
54453              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
54454            }
54455          },
54456          "401": {
54457            "description": "Unauthorized"
54458          }
54459        },
54460        "schemes": [
54461          "https"
54462        ],
54463        "tags": [
54464          "apps_v1beta1"
54465        ],
54466        "x-kubernetes-action": "watchlist",
54467        "x-kubernetes-group-version-kind": {
54468          "group": "apps",
54469          "kind": "ControllerRevision",
54470          "version": "v1beta1"
54471        }
54472      },
54473      "parameters": [
54474        {
54475          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
54476          "in": "query",
54477          "name": "allowWatchBookmarks",
54478          "type": "boolean",
54479          "uniqueItems": true
54480        },
54481        {
54482          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54483          "in": "query",
54484          "name": "continue",
54485          "type": "string",
54486          "uniqueItems": true
54487        },
54488        {
54489          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54490          "in": "query",
54491          "name": "fieldSelector",
54492          "type": "string",
54493          "uniqueItems": true
54494        },
54495        {
54496          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54497          "in": "query",
54498          "name": "labelSelector",
54499          "type": "string",
54500          "uniqueItems": true
54501        },
54502        {
54503          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54504          "in": "query",
54505          "name": "limit",
54506          "type": "integer",
54507          "uniqueItems": true
54508        },
54509        {
54510          "description": "If 'true', then the output is pretty printed.",
54511          "in": "query",
54512          "name": "pretty",
54513          "type": "string",
54514          "uniqueItems": true
54515        },
54516        {
54517          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
54518          "in": "query",
54519          "name": "resourceVersion",
54520          "type": "string",
54521          "uniqueItems": true
54522        },
54523        {
54524          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54525          "in": "query",
54526          "name": "timeoutSeconds",
54527          "type": "integer",
54528          "uniqueItems": true
54529        },
54530        {
54531          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54532          "in": "query",
54533          "name": "watch",
54534          "type": "boolean",
54535          "uniqueItems": true
54536        }
54537      ]
54538    },
54539    "/apis/apps/v1beta1/watch/deployments": {
54540      "get": {
54541        "consumes": [
54542          "*/*"
54543        ],
54544        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
54545        "operationId": "watchAppsV1beta1DeploymentListForAllNamespaces",
54546        "produces": [
54547          "application/json",
54548          "application/yaml",
54549          "application/vnd.kubernetes.protobuf",
54550          "application/json;stream=watch",
54551          "application/vnd.kubernetes.protobuf;stream=watch"
54552        ],
54553        "responses": {
54554          "200": {
54555            "description": "OK",
54556            "schema": {
54557              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
54558            }
54559          },
54560          "401": {
54561            "description": "Unauthorized"
54562          }
54563        },
54564        "schemes": [
54565          "https"
54566        ],
54567        "tags": [
54568          "apps_v1beta1"
54569        ],
54570        "x-kubernetes-action": "watchlist",
54571        "x-kubernetes-group-version-kind": {
54572          "group": "apps",
54573          "kind": "Deployment",
54574          "version": "v1beta1"
54575        }
54576      },
54577      "parameters": [
54578        {
54579          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
54580          "in": "query",
54581          "name": "allowWatchBookmarks",
54582          "type": "boolean",
54583          "uniqueItems": true
54584        },
54585        {
54586          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54587          "in": "query",
54588          "name": "continue",
54589          "type": "string",
54590          "uniqueItems": true
54591        },
54592        {
54593          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54594          "in": "query",
54595          "name": "fieldSelector",
54596          "type": "string",
54597          "uniqueItems": true
54598        },
54599        {
54600          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54601          "in": "query",
54602          "name": "labelSelector",
54603          "type": "string",
54604          "uniqueItems": true
54605        },
54606        {
54607          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54608          "in": "query",
54609          "name": "limit",
54610          "type": "integer",
54611          "uniqueItems": true
54612        },
54613        {
54614          "description": "If 'true', then the output is pretty printed.",
54615          "in": "query",
54616          "name": "pretty",
54617          "type": "string",
54618          "uniqueItems": true
54619        },
54620        {
54621          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
54622          "in": "query",
54623          "name": "resourceVersion",
54624          "type": "string",
54625          "uniqueItems": true
54626        },
54627        {
54628          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54629          "in": "query",
54630          "name": "timeoutSeconds",
54631          "type": "integer",
54632          "uniqueItems": true
54633        },
54634        {
54635          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54636          "in": "query",
54637          "name": "watch",
54638          "type": "boolean",
54639          "uniqueItems": true
54640        }
54641      ]
54642    },
54643    "/apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions": {
54644      "get": {
54645        "consumes": [
54646          "*/*"
54647        ],
54648        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
54649        "operationId": "watchAppsV1beta1NamespacedControllerRevisionList",
54650        "produces": [
54651          "application/json",
54652          "application/yaml",
54653          "application/vnd.kubernetes.protobuf",
54654          "application/json;stream=watch",
54655          "application/vnd.kubernetes.protobuf;stream=watch"
54656        ],
54657        "responses": {
54658          "200": {
54659            "description": "OK",
54660            "schema": {
54661              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
54662            }
54663          },
54664          "401": {
54665            "description": "Unauthorized"
54666          }
54667        },
54668        "schemes": [
54669          "https"
54670        ],
54671        "tags": [
54672          "apps_v1beta1"
54673        ],
54674        "x-kubernetes-action": "watchlist",
54675        "x-kubernetes-group-version-kind": {
54676          "group": "apps",
54677          "kind": "ControllerRevision",
54678          "version": "v1beta1"
54679        }
54680      },
54681      "parameters": [
54682        {
54683          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
54684          "in": "query",
54685          "name": "allowWatchBookmarks",
54686          "type": "boolean",
54687          "uniqueItems": true
54688        },
54689        {
54690          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54691          "in": "query",
54692          "name": "continue",
54693          "type": "string",
54694          "uniqueItems": true
54695        },
54696        {
54697          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54698          "in": "query",
54699          "name": "fieldSelector",
54700          "type": "string",
54701          "uniqueItems": true
54702        },
54703        {
54704          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54705          "in": "query",
54706          "name": "labelSelector",
54707          "type": "string",
54708          "uniqueItems": true
54709        },
54710        {
54711          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54712          "in": "query",
54713          "name": "limit",
54714          "type": "integer",
54715          "uniqueItems": true
54716        },
54717        {
54718          "description": "object name and auth scope, such as for teams and projects",
54719          "in": "path",
54720          "name": "namespace",
54721          "required": true,
54722          "type": "string",
54723          "uniqueItems": true
54724        },
54725        {
54726          "description": "If 'true', then the output is pretty printed.",
54727          "in": "query",
54728          "name": "pretty",
54729          "type": "string",
54730          "uniqueItems": true
54731        },
54732        {
54733          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
54734          "in": "query",
54735          "name": "resourceVersion",
54736          "type": "string",
54737          "uniqueItems": true
54738        },
54739        {
54740          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54741          "in": "query",
54742          "name": "timeoutSeconds",
54743          "type": "integer",
54744          "uniqueItems": true
54745        },
54746        {
54747          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54748          "in": "query",
54749          "name": "watch",
54750          "type": "boolean",
54751          "uniqueItems": true
54752        }
54753      ]
54754    },
54755    "/apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions/{name}": {
54756      "get": {
54757        "consumes": [
54758          "*/*"
54759        ],
54760        "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.",
54761        "operationId": "watchAppsV1beta1NamespacedControllerRevision",
54762        "produces": [
54763          "application/json",
54764          "application/yaml",
54765          "application/vnd.kubernetes.protobuf",
54766          "application/json;stream=watch",
54767          "application/vnd.kubernetes.protobuf;stream=watch"
54768        ],
54769        "responses": {
54770          "200": {
54771            "description": "OK",
54772            "schema": {
54773              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
54774            }
54775          },
54776          "401": {
54777            "description": "Unauthorized"
54778          }
54779        },
54780        "schemes": [
54781          "https"
54782        ],
54783        "tags": [
54784          "apps_v1beta1"
54785        ],
54786        "x-kubernetes-action": "watch",
54787        "x-kubernetes-group-version-kind": {
54788          "group": "apps",
54789          "kind": "ControllerRevision",
54790          "version": "v1beta1"
54791        }
54792      },
54793      "parameters": [
54794        {
54795          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
54796          "in": "query",
54797          "name": "allowWatchBookmarks",
54798          "type": "boolean",
54799          "uniqueItems": true
54800        },
54801        {
54802          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54803          "in": "query",
54804          "name": "continue",
54805          "type": "string",
54806          "uniqueItems": true
54807        },
54808        {
54809          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54810          "in": "query",
54811          "name": "fieldSelector",
54812          "type": "string",
54813          "uniqueItems": true
54814        },
54815        {
54816          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54817          "in": "query",
54818          "name": "labelSelector",
54819          "type": "string",
54820          "uniqueItems": true
54821        },
54822        {
54823          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54824          "in": "query",
54825          "name": "limit",
54826          "type": "integer",
54827          "uniqueItems": true
54828        },
54829        {
54830          "description": "name of the ControllerRevision",
54831          "in": "path",
54832          "name": "name",
54833          "required": true,
54834          "type": "string",
54835          "uniqueItems": true
54836        },
54837        {
54838          "description": "object name and auth scope, such as for teams and projects",
54839          "in": "path",
54840          "name": "namespace",
54841          "required": true,
54842          "type": "string",
54843          "uniqueItems": true
54844        },
54845        {
54846          "description": "If 'true', then the output is pretty printed.",
54847          "in": "query",
54848          "name": "pretty",
54849          "type": "string",
54850          "uniqueItems": true
54851        },
54852        {
54853          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
54854          "in": "query",
54855          "name": "resourceVersion",
54856          "type": "string",
54857          "uniqueItems": true
54858        },
54859        {
54860          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54861          "in": "query",
54862          "name": "timeoutSeconds",
54863          "type": "integer",
54864          "uniqueItems": true
54865        },
54866        {
54867          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54868          "in": "query",
54869          "name": "watch",
54870          "type": "boolean",
54871          "uniqueItems": true
54872        }
54873      ]
54874    },
54875    "/apis/apps/v1beta1/watch/namespaces/{namespace}/deployments": {
54876      "get": {
54877        "consumes": [
54878          "*/*"
54879        ],
54880        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
54881        "operationId": "watchAppsV1beta1NamespacedDeploymentList",
54882        "produces": [
54883          "application/json",
54884          "application/yaml",
54885          "application/vnd.kubernetes.protobuf",
54886          "application/json;stream=watch",
54887          "application/vnd.kubernetes.protobuf;stream=watch"
54888        ],
54889        "responses": {
54890          "200": {
54891            "description": "OK",
54892            "schema": {
54893              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
54894            }
54895          },
54896          "401": {
54897            "description": "Unauthorized"
54898          }
54899        },
54900        "schemes": [
54901          "https"
54902        ],
54903        "tags": [
54904          "apps_v1beta1"
54905        ],
54906        "x-kubernetes-action": "watchlist",
54907        "x-kubernetes-group-version-kind": {
54908          "group": "apps",
54909          "kind": "Deployment",
54910          "version": "v1beta1"
54911        }
54912      },
54913      "parameters": [
54914        {
54915          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
54916          "in": "query",
54917          "name": "allowWatchBookmarks",
54918          "type": "boolean",
54919          "uniqueItems": true
54920        },
54921        {
54922          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
54923          "in": "query",
54924          "name": "continue",
54925          "type": "string",
54926          "uniqueItems": true
54927        },
54928        {
54929          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
54930          "in": "query",
54931          "name": "fieldSelector",
54932          "type": "string",
54933          "uniqueItems": true
54934        },
54935        {
54936          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
54937          "in": "query",
54938          "name": "labelSelector",
54939          "type": "string",
54940          "uniqueItems": true
54941        },
54942        {
54943          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
54944          "in": "query",
54945          "name": "limit",
54946          "type": "integer",
54947          "uniqueItems": true
54948        },
54949        {
54950          "description": "object name and auth scope, such as for teams and projects",
54951          "in": "path",
54952          "name": "namespace",
54953          "required": true,
54954          "type": "string",
54955          "uniqueItems": true
54956        },
54957        {
54958          "description": "If 'true', then the output is pretty printed.",
54959          "in": "query",
54960          "name": "pretty",
54961          "type": "string",
54962          "uniqueItems": true
54963        },
54964        {
54965          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
54966          "in": "query",
54967          "name": "resourceVersion",
54968          "type": "string",
54969          "uniqueItems": true
54970        },
54971        {
54972          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
54973          "in": "query",
54974          "name": "timeoutSeconds",
54975          "type": "integer",
54976          "uniqueItems": true
54977        },
54978        {
54979          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
54980          "in": "query",
54981          "name": "watch",
54982          "type": "boolean",
54983          "uniqueItems": true
54984        }
54985      ]
54986    },
54987    "/apis/apps/v1beta1/watch/namespaces/{namespace}/deployments/{name}": {
54988      "get": {
54989        "consumes": [
54990          "*/*"
54991        ],
54992        "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.",
54993        "operationId": "watchAppsV1beta1NamespacedDeployment",
54994        "produces": [
54995          "application/json",
54996          "application/yaml",
54997          "application/vnd.kubernetes.protobuf",
54998          "application/json;stream=watch",
54999          "application/vnd.kubernetes.protobuf;stream=watch"
55000        ],
55001        "responses": {
55002          "200": {
55003            "description": "OK",
55004            "schema": {
55005              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55006            }
55007          },
55008          "401": {
55009            "description": "Unauthorized"
55010          }
55011        },
55012        "schemes": [
55013          "https"
55014        ],
55015        "tags": [
55016          "apps_v1beta1"
55017        ],
55018        "x-kubernetes-action": "watch",
55019        "x-kubernetes-group-version-kind": {
55020          "group": "apps",
55021          "kind": "Deployment",
55022          "version": "v1beta1"
55023        }
55024      },
55025      "parameters": [
55026        {
55027          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55028          "in": "query",
55029          "name": "allowWatchBookmarks",
55030          "type": "boolean",
55031          "uniqueItems": true
55032        },
55033        {
55034          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55035          "in": "query",
55036          "name": "continue",
55037          "type": "string",
55038          "uniqueItems": true
55039        },
55040        {
55041          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55042          "in": "query",
55043          "name": "fieldSelector",
55044          "type": "string",
55045          "uniqueItems": true
55046        },
55047        {
55048          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55049          "in": "query",
55050          "name": "labelSelector",
55051          "type": "string",
55052          "uniqueItems": true
55053        },
55054        {
55055          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55056          "in": "query",
55057          "name": "limit",
55058          "type": "integer",
55059          "uniqueItems": true
55060        },
55061        {
55062          "description": "name of the Deployment",
55063          "in": "path",
55064          "name": "name",
55065          "required": true,
55066          "type": "string",
55067          "uniqueItems": true
55068        },
55069        {
55070          "description": "object name and auth scope, such as for teams and projects",
55071          "in": "path",
55072          "name": "namespace",
55073          "required": true,
55074          "type": "string",
55075          "uniqueItems": true
55076        },
55077        {
55078          "description": "If 'true', then the output is pretty printed.",
55079          "in": "query",
55080          "name": "pretty",
55081          "type": "string",
55082          "uniqueItems": true
55083        },
55084        {
55085          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55086          "in": "query",
55087          "name": "resourceVersion",
55088          "type": "string",
55089          "uniqueItems": true
55090        },
55091        {
55092          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55093          "in": "query",
55094          "name": "timeoutSeconds",
55095          "type": "integer",
55096          "uniqueItems": true
55097        },
55098        {
55099          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55100          "in": "query",
55101          "name": "watch",
55102          "type": "boolean",
55103          "uniqueItems": true
55104        }
55105      ]
55106    },
55107    "/apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets": {
55108      "get": {
55109        "consumes": [
55110          "*/*"
55111        ],
55112        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
55113        "operationId": "watchAppsV1beta1NamespacedStatefulSetList",
55114        "produces": [
55115          "application/json",
55116          "application/yaml",
55117          "application/vnd.kubernetes.protobuf",
55118          "application/json;stream=watch",
55119          "application/vnd.kubernetes.protobuf;stream=watch"
55120        ],
55121        "responses": {
55122          "200": {
55123            "description": "OK",
55124            "schema": {
55125              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55126            }
55127          },
55128          "401": {
55129            "description": "Unauthorized"
55130          }
55131        },
55132        "schemes": [
55133          "https"
55134        ],
55135        "tags": [
55136          "apps_v1beta1"
55137        ],
55138        "x-kubernetes-action": "watchlist",
55139        "x-kubernetes-group-version-kind": {
55140          "group": "apps",
55141          "kind": "StatefulSet",
55142          "version": "v1beta1"
55143        }
55144      },
55145      "parameters": [
55146        {
55147          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55148          "in": "query",
55149          "name": "allowWatchBookmarks",
55150          "type": "boolean",
55151          "uniqueItems": true
55152        },
55153        {
55154          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55155          "in": "query",
55156          "name": "continue",
55157          "type": "string",
55158          "uniqueItems": true
55159        },
55160        {
55161          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55162          "in": "query",
55163          "name": "fieldSelector",
55164          "type": "string",
55165          "uniqueItems": true
55166        },
55167        {
55168          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55169          "in": "query",
55170          "name": "labelSelector",
55171          "type": "string",
55172          "uniqueItems": true
55173        },
55174        {
55175          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55176          "in": "query",
55177          "name": "limit",
55178          "type": "integer",
55179          "uniqueItems": true
55180        },
55181        {
55182          "description": "object name and auth scope, such as for teams and projects",
55183          "in": "path",
55184          "name": "namespace",
55185          "required": true,
55186          "type": "string",
55187          "uniqueItems": true
55188        },
55189        {
55190          "description": "If 'true', then the output is pretty printed.",
55191          "in": "query",
55192          "name": "pretty",
55193          "type": "string",
55194          "uniqueItems": true
55195        },
55196        {
55197          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55198          "in": "query",
55199          "name": "resourceVersion",
55200          "type": "string",
55201          "uniqueItems": true
55202        },
55203        {
55204          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55205          "in": "query",
55206          "name": "timeoutSeconds",
55207          "type": "integer",
55208          "uniqueItems": true
55209        },
55210        {
55211          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55212          "in": "query",
55213          "name": "watch",
55214          "type": "boolean",
55215          "uniqueItems": true
55216        }
55217      ]
55218    },
55219    "/apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets/{name}": {
55220      "get": {
55221        "consumes": [
55222          "*/*"
55223        ],
55224        "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.",
55225        "operationId": "watchAppsV1beta1NamespacedStatefulSet",
55226        "produces": [
55227          "application/json",
55228          "application/yaml",
55229          "application/vnd.kubernetes.protobuf",
55230          "application/json;stream=watch",
55231          "application/vnd.kubernetes.protobuf;stream=watch"
55232        ],
55233        "responses": {
55234          "200": {
55235            "description": "OK",
55236            "schema": {
55237              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55238            }
55239          },
55240          "401": {
55241            "description": "Unauthorized"
55242          }
55243        },
55244        "schemes": [
55245          "https"
55246        ],
55247        "tags": [
55248          "apps_v1beta1"
55249        ],
55250        "x-kubernetes-action": "watch",
55251        "x-kubernetes-group-version-kind": {
55252          "group": "apps",
55253          "kind": "StatefulSet",
55254          "version": "v1beta1"
55255        }
55256      },
55257      "parameters": [
55258        {
55259          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55260          "in": "query",
55261          "name": "allowWatchBookmarks",
55262          "type": "boolean",
55263          "uniqueItems": true
55264        },
55265        {
55266          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55267          "in": "query",
55268          "name": "continue",
55269          "type": "string",
55270          "uniqueItems": true
55271        },
55272        {
55273          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55274          "in": "query",
55275          "name": "fieldSelector",
55276          "type": "string",
55277          "uniqueItems": true
55278        },
55279        {
55280          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55281          "in": "query",
55282          "name": "labelSelector",
55283          "type": "string",
55284          "uniqueItems": true
55285        },
55286        {
55287          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55288          "in": "query",
55289          "name": "limit",
55290          "type": "integer",
55291          "uniqueItems": true
55292        },
55293        {
55294          "description": "name of the StatefulSet",
55295          "in": "path",
55296          "name": "name",
55297          "required": true,
55298          "type": "string",
55299          "uniqueItems": true
55300        },
55301        {
55302          "description": "object name and auth scope, such as for teams and projects",
55303          "in": "path",
55304          "name": "namespace",
55305          "required": true,
55306          "type": "string",
55307          "uniqueItems": true
55308        },
55309        {
55310          "description": "If 'true', then the output is pretty printed.",
55311          "in": "query",
55312          "name": "pretty",
55313          "type": "string",
55314          "uniqueItems": true
55315        },
55316        {
55317          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55318          "in": "query",
55319          "name": "resourceVersion",
55320          "type": "string",
55321          "uniqueItems": true
55322        },
55323        {
55324          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55325          "in": "query",
55326          "name": "timeoutSeconds",
55327          "type": "integer",
55328          "uniqueItems": true
55329        },
55330        {
55331          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55332          "in": "query",
55333          "name": "watch",
55334          "type": "boolean",
55335          "uniqueItems": true
55336        }
55337      ]
55338    },
55339    "/apis/apps/v1beta1/watch/statefulsets": {
55340      "get": {
55341        "consumes": [
55342          "*/*"
55343        ],
55344        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
55345        "operationId": "watchAppsV1beta1StatefulSetListForAllNamespaces",
55346        "produces": [
55347          "application/json",
55348          "application/yaml",
55349          "application/vnd.kubernetes.protobuf",
55350          "application/json;stream=watch",
55351          "application/vnd.kubernetes.protobuf;stream=watch"
55352        ],
55353        "responses": {
55354          "200": {
55355            "description": "OK",
55356            "schema": {
55357              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
55358            }
55359          },
55360          "401": {
55361            "description": "Unauthorized"
55362          }
55363        },
55364        "schemes": [
55365          "https"
55366        ],
55367        "tags": [
55368          "apps_v1beta1"
55369        ],
55370        "x-kubernetes-action": "watchlist",
55371        "x-kubernetes-group-version-kind": {
55372          "group": "apps",
55373          "kind": "StatefulSet",
55374          "version": "v1beta1"
55375        }
55376      },
55377      "parameters": [
55378        {
55379          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55380          "in": "query",
55381          "name": "allowWatchBookmarks",
55382          "type": "boolean",
55383          "uniqueItems": true
55384        },
55385        {
55386          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55387          "in": "query",
55388          "name": "continue",
55389          "type": "string",
55390          "uniqueItems": true
55391        },
55392        {
55393          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55394          "in": "query",
55395          "name": "fieldSelector",
55396          "type": "string",
55397          "uniqueItems": true
55398        },
55399        {
55400          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55401          "in": "query",
55402          "name": "labelSelector",
55403          "type": "string",
55404          "uniqueItems": true
55405        },
55406        {
55407          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55408          "in": "query",
55409          "name": "limit",
55410          "type": "integer",
55411          "uniqueItems": true
55412        },
55413        {
55414          "description": "If 'true', then the output is pretty printed.",
55415          "in": "query",
55416          "name": "pretty",
55417          "type": "string",
55418          "uniqueItems": true
55419        },
55420        {
55421          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55422          "in": "query",
55423          "name": "resourceVersion",
55424          "type": "string",
55425          "uniqueItems": true
55426        },
55427        {
55428          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55429          "in": "query",
55430          "name": "timeoutSeconds",
55431          "type": "integer",
55432          "uniqueItems": true
55433        },
55434        {
55435          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55436          "in": "query",
55437          "name": "watch",
55438          "type": "boolean",
55439          "uniqueItems": true
55440        }
55441      ]
55442    },
55443    "/apis/apps/v1beta2/": {
55444      "get": {
55445        "consumes": [
55446          "application/json",
55447          "application/yaml",
55448          "application/vnd.kubernetes.protobuf"
55449        ],
55450        "description": "get available resources",
55451        "operationId": "getAppsV1beta2APIResources",
55452        "produces": [
55453          "application/json",
55454          "application/yaml",
55455          "application/vnd.kubernetes.protobuf"
55456        ],
55457        "responses": {
55458          "200": {
55459            "description": "OK",
55460            "schema": {
55461              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
55462            }
55463          },
55464          "401": {
55465            "description": "Unauthorized"
55466          }
55467        },
55468        "schemes": [
55469          "https"
55470        ],
55471        "tags": [
55472          "apps_v1beta2"
55473        ]
55474      }
55475    },
55476    "/apis/apps/v1beta2/controllerrevisions": {
55477      "get": {
55478        "consumes": [
55479          "*/*"
55480        ],
55481        "description": "list or watch objects of kind ControllerRevision",
55482        "operationId": "listAppsV1beta2ControllerRevisionForAllNamespaces",
55483        "produces": [
55484          "application/json",
55485          "application/yaml",
55486          "application/vnd.kubernetes.protobuf",
55487          "application/json;stream=watch",
55488          "application/vnd.kubernetes.protobuf;stream=watch"
55489        ],
55490        "responses": {
55491          "200": {
55492            "description": "OK",
55493            "schema": {
55494              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevisionList"
55495            }
55496          },
55497          "401": {
55498            "description": "Unauthorized"
55499          }
55500        },
55501        "schemes": [
55502          "https"
55503        ],
55504        "tags": [
55505          "apps_v1beta2"
55506        ],
55507        "x-kubernetes-action": "list",
55508        "x-kubernetes-group-version-kind": {
55509          "group": "apps",
55510          "kind": "ControllerRevision",
55511          "version": "v1beta2"
55512        }
55513      },
55514      "parameters": [
55515        {
55516          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55517          "in": "query",
55518          "name": "allowWatchBookmarks",
55519          "type": "boolean",
55520          "uniqueItems": true
55521        },
55522        {
55523          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55524          "in": "query",
55525          "name": "continue",
55526          "type": "string",
55527          "uniqueItems": true
55528        },
55529        {
55530          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55531          "in": "query",
55532          "name": "fieldSelector",
55533          "type": "string",
55534          "uniqueItems": true
55535        },
55536        {
55537          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55538          "in": "query",
55539          "name": "labelSelector",
55540          "type": "string",
55541          "uniqueItems": true
55542        },
55543        {
55544          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55545          "in": "query",
55546          "name": "limit",
55547          "type": "integer",
55548          "uniqueItems": true
55549        },
55550        {
55551          "description": "If 'true', then the output is pretty printed.",
55552          "in": "query",
55553          "name": "pretty",
55554          "type": "string",
55555          "uniqueItems": true
55556        },
55557        {
55558          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55559          "in": "query",
55560          "name": "resourceVersion",
55561          "type": "string",
55562          "uniqueItems": true
55563        },
55564        {
55565          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55566          "in": "query",
55567          "name": "timeoutSeconds",
55568          "type": "integer",
55569          "uniqueItems": true
55570        },
55571        {
55572          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55573          "in": "query",
55574          "name": "watch",
55575          "type": "boolean",
55576          "uniqueItems": true
55577        }
55578      ]
55579    },
55580    "/apis/apps/v1beta2/daemonsets": {
55581      "get": {
55582        "consumes": [
55583          "*/*"
55584        ],
55585        "description": "list or watch objects of kind DaemonSet",
55586        "operationId": "listAppsV1beta2DaemonSetForAllNamespaces",
55587        "produces": [
55588          "application/json",
55589          "application/yaml",
55590          "application/vnd.kubernetes.protobuf",
55591          "application/json;stream=watch",
55592          "application/vnd.kubernetes.protobuf;stream=watch"
55593        ],
55594        "responses": {
55595          "200": {
55596            "description": "OK",
55597            "schema": {
55598              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetList"
55599            }
55600          },
55601          "401": {
55602            "description": "Unauthorized"
55603          }
55604        },
55605        "schemes": [
55606          "https"
55607        ],
55608        "tags": [
55609          "apps_v1beta2"
55610        ],
55611        "x-kubernetes-action": "list",
55612        "x-kubernetes-group-version-kind": {
55613          "group": "apps",
55614          "kind": "DaemonSet",
55615          "version": "v1beta2"
55616        }
55617      },
55618      "parameters": [
55619        {
55620          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55621          "in": "query",
55622          "name": "allowWatchBookmarks",
55623          "type": "boolean",
55624          "uniqueItems": true
55625        },
55626        {
55627          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55628          "in": "query",
55629          "name": "continue",
55630          "type": "string",
55631          "uniqueItems": true
55632        },
55633        {
55634          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55635          "in": "query",
55636          "name": "fieldSelector",
55637          "type": "string",
55638          "uniqueItems": true
55639        },
55640        {
55641          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55642          "in": "query",
55643          "name": "labelSelector",
55644          "type": "string",
55645          "uniqueItems": true
55646        },
55647        {
55648          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55649          "in": "query",
55650          "name": "limit",
55651          "type": "integer",
55652          "uniqueItems": true
55653        },
55654        {
55655          "description": "If 'true', then the output is pretty printed.",
55656          "in": "query",
55657          "name": "pretty",
55658          "type": "string",
55659          "uniqueItems": true
55660        },
55661        {
55662          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55663          "in": "query",
55664          "name": "resourceVersion",
55665          "type": "string",
55666          "uniqueItems": true
55667        },
55668        {
55669          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55670          "in": "query",
55671          "name": "timeoutSeconds",
55672          "type": "integer",
55673          "uniqueItems": true
55674        },
55675        {
55676          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55677          "in": "query",
55678          "name": "watch",
55679          "type": "boolean",
55680          "uniqueItems": true
55681        }
55682      ]
55683    },
55684    "/apis/apps/v1beta2/deployments": {
55685      "get": {
55686        "consumes": [
55687          "*/*"
55688        ],
55689        "description": "list or watch objects of kind Deployment",
55690        "operationId": "listAppsV1beta2DeploymentForAllNamespaces",
55691        "produces": [
55692          "application/json",
55693          "application/yaml",
55694          "application/vnd.kubernetes.protobuf",
55695          "application/json;stream=watch",
55696          "application/vnd.kubernetes.protobuf;stream=watch"
55697        ],
55698        "responses": {
55699          "200": {
55700            "description": "OK",
55701            "schema": {
55702              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentList"
55703            }
55704          },
55705          "401": {
55706            "description": "Unauthorized"
55707          }
55708        },
55709        "schemes": [
55710          "https"
55711        ],
55712        "tags": [
55713          "apps_v1beta2"
55714        ],
55715        "x-kubernetes-action": "list",
55716        "x-kubernetes-group-version-kind": {
55717          "group": "apps",
55718          "kind": "Deployment",
55719          "version": "v1beta2"
55720        }
55721      },
55722      "parameters": [
55723        {
55724          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55725          "in": "query",
55726          "name": "allowWatchBookmarks",
55727          "type": "boolean",
55728          "uniqueItems": true
55729        },
55730        {
55731          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55732          "in": "query",
55733          "name": "continue",
55734          "type": "string",
55735          "uniqueItems": true
55736        },
55737        {
55738          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55739          "in": "query",
55740          "name": "fieldSelector",
55741          "type": "string",
55742          "uniqueItems": true
55743        },
55744        {
55745          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55746          "in": "query",
55747          "name": "labelSelector",
55748          "type": "string",
55749          "uniqueItems": true
55750        },
55751        {
55752          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55753          "in": "query",
55754          "name": "limit",
55755          "type": "integer",
55756          "uniqueItems": true
55757        },
55758        {
55759          "description": "If 'true', then the output is pretty printed.",
55760          "in": "query",
55761          "name": "pretty",
55762          "type": "string",
55763          "uniqueItems": true
55764        },
55765        {
55766          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55767          "in": "query",
55768          "name": "resourceVersion",
55769          "type": "string",
55770          "uniqueItems": true
55771        },
55772        {
55773          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55774          "in": "query",
55775          "name": "timeoutSeconds",
55776          "type": "integer",
55777          "uniqueItems": true
55778        },
55779        {
55780          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55781          "in": "query",
55782          "name": "watch",
55783          "type": "boolean",
55784          "uniqueItems": true
55785        }
55786      ]
55787    },
55788    "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions": {
55789      "delete": {
55790        "consumes": [
55791          "*/*"
55792        ],
55793        "description": "delete collection of ControllerRevision",
55794        "operationId": "deleteAppsV1beta2CollectionNamespacedControllerRevision",
55795        "parameters": [
55796          {
55797            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55798            "in": "query",
55799            "name": "allowWatchBookmarks",
55800            "type": "boolean",
55801            "uniqueItems": true
55802          },
55803          {
55804            "in": "body",
55805            "name": "body",
55806            "schema": {
55807              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
55808            }
55809          },
55810          {
55811            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55812            "in": "query",
55813            "name": "continue",
55814            "type": "string",
55815            "uniqueItems": true
55816          },
55817          {
55818            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
55819            "in": "query",
55820            "name": "dryRun",
55821            "type": "string",
55822            "uniqueItems": true
55823          },
55824          {
55825            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55826            "in": "query",
55827            "name": "fieldSelector",
55828            "type": "string",
55829            "uniqueItems": true
55830          },
55831          {
55832            "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.",
55833            "in": "query",
55834            "name": "gracePeriodSeconds",
55835            "type": "integer",
55836            "uniqueItems": true
55837          },
55838          {
55839            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55840            "in": "query",
55841            "name": "labelSelector",
55842            "type": "string",
55843            "uniqueItems": true
55844          },
55845          {
55846            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55847            "in": "query",
55848            "name": "limit",
55849            "type": "integer",
55850            "uniqueItems": true
55851          },
55852          {
55853            "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.",
55854            "in": "query",
55855            "name": "orphanDependents",
55856            "type": "boolean",
55857            "uniqueItems": true
55858          },
55859          {
55860            "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.",
55861            "in": "query",
55862            "name": "propagationPolicy",
55863            "type": "string",
55864            "uniqueItems": true
55865          },
55866          {
55867            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55868            "in": "query",
55869            "name": "resourceVersion",
55870            "type": "string",
55871            "uniqueItems": true
55872          },
55873          {
55874            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55875            "in": "query",
55876            "name": "timeoutSeconds",
55877            "type": "integer",
55878            "uniqueItems": true
55879          },
55880          {
55881            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55882            "in": "query",
55883            "name": "watch",
55884            "type": "boolean",
55885            "uniqueItems": true
55886          }
55887        ],
55888        "produces": [
55889          "application/json",
55890          "application/yaml",
55891          "application/vnd.kubernetes.protobuf"
55892        ],
55893        "responses": {
55894          "200": {
55895            "description": "OK",
55896            "schema": {
55897              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
55898            }
55899          },
55900          "401": {
55901            "description": "Unauthorized"
55902          }
55903        },
55904        "schemes": [
55905          "https"
55906        ],
55907        "tags": [
55908          "apps_v1beta2"
55909        ],
55910        "x-kubernetes-action": "deletecollection",
55911        "x-kubernetes-group-version-kind": {
55912          "group": "apps",
55913          "kind": "ControllerRevision",
55914          "version": "v1beta2"
55915        }
55916      },
55917      "get": {
55918        "consumes": [
55919          "*/*"
55920        ],
55921        "description": "list or watch objects of kind ControllerRevision",
55922        "operationId": "listAppsV1beta2NamespacedControllerRevision",
55923        "parameters": [
55924          {
55925            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
55926            "in": "query",
55927            "name": "allowWatchBookmarks",
55928            "type": "boolean",
55929            "uniqueItems": true
55930          },
55931          {
55932            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
55933            "in": "query",
55934            "name": "continue",
55935            "type": "string",
55936            "uniqueItems": true
55937          },
55938          {
55939            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
55940            "in": "query",
55941            "name": "fieldSelector",
55942            "type": "string",
55943            "uniqueItems": true
55944          },
55945          {
55946            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
55947            "in": "query",
55948            "name": "labelSelector",
55949            "type": "string",
55950            "uniqueItems": true
55951          },
55952          {
55953            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
55954            "in": "query",
55955            "name": "limit",
55956            "type": "integer",
55957            "uniqueItems": true
55958          },
55959          {
55960            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
55961            "in": "query",
55962            "name": "resourceVersion",
55963            "type": "string",
55964            "uniqueItems": true
55965          },
55966          {
55967            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
55968            "in": "query",
55969            "name": "timeoutSeconds",
55970            "type": "integer",
55971            "uniqueItems": true
55972          },
55973          {
55974            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
55975            "in": "query",
55976            "name": "watch",
55977            "type": "boolean",
55978            "uniqueItems": true
55979          }
55980        ],
55981        "produces": [
55982          "application/json",
55983          "application/yaml",
55984          "application/vnd.kubernetes.protobuf",
55985          "application/json;stream=watch",
55986          "application/vnd.kubernetes.protobuf;stream=watch"
55987        ],
55988        "responses": {
55989          "200": {
55990            "description": "OK",
55991            "schema": {
55992              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevisionList"
55993            }
55994          },
55995          "401": {
55996            "description": "Unauthorized"
55997          }
55998        },
55999        "schemes": [
56000          "https"
56001        ],
56002        "tags": [
56003          "apps_v1beta2"
56004        ],
56005        "x-kubernetes-action": "list",
56006        "x-kubernetes-group-version-kind": {
56007          "group": "apps",
56008          "kind": "ControllerRevision",
56009          "version": "v1beta2"
56010        }
56011      },
56012      "parameters": [
56013        {
56014          "description": "object name and auth scope, such as for teams and projects",
56015          "in": "path",
56016          "name": "namespace",
56017          "required": true,
56018          "type": "string",
56019          "uniqueItems": true
56020        },
56021        {
56022          "description": "If 'true', then the output is pretty printed.",
56023          "in": "query",
56024          "name": "pretty",
56025          "type": "string",
56026          "uniqueItems": true
56027        }
56028      ],
56029      "post": {
56030        "consumes": [
56031          "*/*"
56032        ],
56033        "description": "create a ControllerRevision",
56034        "operationId": "createAppsV1beta2NamespacedControllerRevision",
56035        "parameters": [
56036          {
56037            "in": "body",
56038            "name": "body",
56039            "required": true,
56040            "schema": {
56041              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56042            }
56043          },
56044          {
56045            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56046            "in": "query",
56047            "name": "dryRun",
56048            "type": "string",
56049            "uniqueItems": true
56050          },
56051          {
56052            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56053            "in": "query",
56054            "name": "fieldManager",
56055            "type": "string",
56056            "uniqueItems": true
56057          }
56058        ],
56059        "produces": [
56060          "application/json",
56061          "application/yaml",
56062          "application/vnd.kubernetes.protobuf"
56063        ],
56064        "responses": {
56065          "200": {
56066            "description": "OK",
56067            "schema": {
56068              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56069            }
56070          },
56071          "201": {
56072            "description": "Created",
56073            "schema": {
56074              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56075            }
56076          },
56077          "202": {
56078            "description": "Accepted",
56079            "schema": {
56080              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56081            }
56082          },
56083          "401": {
56084            "description": "Unauthorized"
56085          }
56086        },
56087        "schemes": [
56088          "https"
56089        ],
56090        "tags": [
56091          "apps_v1beta2"
56092        ],
56093        "x-kubernetes-action": "post",
56094        "x-kubernetes-group-version-kind": {
56095          "group": "apps",
56096          "kind": "ControllerRevision",
56097          "version": "v1beta2"
56098        }
56099      }
56100    },
56101    "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}": {
56102      "delete": {
56103        "consumes": [
56104          "*/*"
56105        ],
56106        "description": "delete a ControllerRevision",
56107        "operationId": "deleteAppsV1beta2NamespacedControllerRevision",
56108        "parameters": [
56109          {
56110            "in": "body",
56111            "name": "body",
56112            "schema": {
56113              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56114            }
56115          },
56116          {
56117            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56118            "in": "query",
56119            "name": "dryRun",
56120            "type": "string",
56121            "uniqueItems": true
56122          },
56123          {
56124            "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.",
56125            "in": "query",
56126            "name": "gracePeriodSeconds",
56127            "type": "integer",
56128            "uniqueItems": true
56129          },
56130          {
56131            "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.",
56132            "in": "query",
56133            "name": "orphanDependents",
56134            "type": "boolean",
56135            "uniqueItems": true
56136          },
56137          {
56138            "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.",
56139            "in": "query",
56140            "name": "propagationPolicy",
56141            "type": "string",
56142            "uniqueItems": true
56143          }
56144        ],
56145        "produces": [
56146          "application/json",
56147          "application/yaml",
56148          "application/vnd.kubernetes.protobuf"
56149        ],
56150        "responses": {
56151          "200": {
56152            "description": "OK",
56153            "schema": {
56154              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56155            }
56156          },
56157          "202": {
56158            "description": "Accepted",
56159            "schema": {
56160              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56161            }
56162          },
56163          "401": {
56164            "description": "Unauthorized"
56165          }
56166        },
56167        "schemes": [
56168          "https"
56169        ],
56170        "tags": [
56171          "apps_v1beta2"
56172        ],
56173        "x-kubernetes-action": "delete",
56174        "x-kubernetes-group-version-kind": {
56175          "group": "apps",
56176          "kind": "ControllerRevision",
56177          "version": "v1beta2"
56178        }
56179      },
56180      "get": {
56181        "consumes": [
56182          "*/*"
56183        ],
56184        "description": "read the specified ControllerRevision",
56185        "operationId": "readAppsV1beta2NamespacedControllerRevision",
56186        "parameters": [
56187          {
56188            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
56189            "in": "query",
56190            "name": "exact",
56191            "type": "boolean",
56192            "uniqueItems": true
56193          },
56194          {
56195            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
56196            "in": "query",
56197            "name": "export",
56198            "type": "boolean",
56199            "uniqueItems": true
56200          }
56201        ],
56202        "produces": [
56203          "application/json",
56204          "application/yaml",
56205          "application/vnd.kubernetes.protobuf"
56206        ],
56207        "responses": {
56208          "200": {
56209            "description": "OK",
56210            "schema": {
56211              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56212            }
56213          },
56214          "401": {
56215            "description": "Unauthorized"
56216          }
56217        },
56218        "schemes": [
56219          "https"
56220        ],
56221        "tags": [
56222          "apps_v1beta2"
56223        ],
56224        "x-kubernetes-action": "get",
56225        "x-kubernetes-group-version-kind": {
56226          "group": "apps",
56227          "kind": "ControllerRevision",
56228          "version": "v1beta2"
56229        }
56230      },
56231      "parameters": [
56232        {
56233          "description": "name of the ControllerRevision",
56234          "in": "path",
56235          "name": "name",
56236          "required": true,
56237          "type": "string",
56238          "uniqueItems": true
56239        },
56240        {
56241          "description": "object name and auth scope, such as for teams and projects",
56242          "in": "path",
56243          "name": "namespace",
56244          "required": true,
56245          "type": "string",
56246          "uniqueItems": true
56247        },
56248        {
56249          "description": "If 'true', then the output is pretty printed.",
56250          "in": "query",
56251          "name": "pretty",
56252          "type": "string",
56253          "uniqueItems": true
56254        }
56255      ],
56256      "patch": {
56257        "consumes": [
56258          "application/json-patch+json",
56259          "application/merge-patch+json",
56260          "application/strategic-merge-patch+json"
56261        ],
56262        "description": "partially update the specified ControllerRevision",
56263        "operationId": "patchAppsV1beta2NamespacedControllerRevision",
56264        "parameters": [
56265          {
56266            "in": "body",
56267            "name": "body",
56268            "required": true,
56269            "schema": {
56270              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56271            }
56272          },
56273          {
56274            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56275            "in": "query",
56276            "name": "dryRun",
56277            "type": "string",
56278            "uniqueItems": true
56279          },
56280          {
56281            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
56282            "in": "query",
56283            "name": "fieldManager",
56284            "type": "string",
56285            "uniqueItems": true
56286          },
56287          {
56288            "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.",
56289            "in": "query",
56290            "name": "force",
56291            "type": "boolean",
56292            "uniqueItems": true
56293          }
56294        ],
56295        "produces": [
56296          "application/json",
56297          "application/yaml",
56298          "application/vnd.kubernetes.protobuf"
56299        ],
56300        "responses": {
56301          "200": {
56302            "description": "OK",
56303            "schema": {
56304              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56305            }
56306          },
56307          "401": {
56308            "description": "Unauthorized"
56309          }
56310        },
56311        "schemes": [
56312          "https"
56313        ],
56314        "tags": [
56315          "apps_v1beta2"
56316        ],
56317        "x-kubernetes-action": "patch",
56318        "x-kubernetes-group-version-kind": {
56319          "group": "apps",
56320          "kind": "ControllerRevision",
56321          "version": "v1beta2"
56322        }
56323      },
56324      "put": {
56325        "consumes": [
56326          "*/*"
56327        ],
56328        "description": "replace the specified ControllerRevision",
56329        "operationId": "replaceAppsV1beta2NamespacedControllerRevision",
56330        "parameters": [
56331          {
56332            "in": "body",
56333            "name": "body",
56334            "required": true,
56335            "schema": {
56336              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56337            }
56338          },
56339          {
56340            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56341            "in": "query",
56342            "name": "dryRun",
56343            "type": "string",
56344            "uniqueItems": true
56345          },
56346          {
56347            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56348            "in": "query",
56349            "name": "fieldManager",
56350            "type": "string",
56351            "uniqueItems": true
56352          }
56353        ],
56354        "produces": [
56355          "application/json",
56356          "application/yaml",
56357          "application/vnd.kubernetes.protobuf"
56358        ],
56359        "responses": {
56360          "200": {
56361            "description": "OK",
56362            "schema": {
56363              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56364            }
56365          },
56366          "201": {
56367            "description": "Created",
56368            "schema": {
56369              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision"
56370            }
56371          },
56372          "401": {
56373            "description": "Unauthorized"
56374          }
56375        },
56376        "schemes": [
56377          "https"
56378        ],
56379        "tags": [
56380          "apps_v1beta2"
56381        ],
56382        "x-kubernetes-action": "put",
56383        "x-kubernetes-group-version-kind": {
56384          "group": "apps",
56385          "kind": "ControllerRevision",
56386          "version": "v1beta2"
56387        }
56388      }
56389    },
56390    "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets": {
56391      "delete": {
56392        "consumes": [
56393          "*/*"
56394        ],
56395        "description": "delete collection of DaemonSet",
56396        "operationId": "deleteAppsV1beta2CollectionNamespacedDaemonSet",
56397        "parameters": [
56398          {
56399            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
56400            "in": "query",
56401            "name": "allowWatchBookmarks",
56402            "type": "boolean",
56403            "uniqueItems": true
56404          },
56405          {
56406            "in": "body",
56407            "name": "body",
56408            "schema": {
56409              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56410            }
56411          },
56412          {
56413            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56414            "in": "query",
56415            "name": "continue",
56416            "type": "string",
56417            "uniqueItems": true
56418          },
56419          {
56420            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56421            "in": "query",
56422            "name": "dryRun",
56423            "type": "string",
56424            "uniqueItems": true
56425          },
56426          {
56427            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56428            "in": "query",
56429            "name": "fieldSelector",
56430            "type": "string",
56431            "uniqueItems": true
56432          },
56433          {
56434            "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.",
56435            "in": "query",
56436            "name": "gracePeriodSeconds",
56437            "type": "integer",
56438            "uniqueItems": true
56439          },
56440          {
56441            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56442            "in": "query",
56443            "name": "labelSelector",
56444            "type": "string",
56445            "uniqueItems": true
56446          },
56447          {
56448            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56449            "in": "query",
56450            "name": "limit",
56451            "type": "integer",
56452            "uniqueItems": true
56453          },
56454          {
56455            "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.",
56456            "in": "query",
56457            "name": "orphanDependents",
56458            "type": "boolean",
56459            "uniqueItems": true
56460          },
56461          {
56462            "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.",
56463            "in": "query",
56464            "name": "propagationPolicy",
56465            "type": "string",
56466            "uniqueItems": true
56467          },
56468          {
56469            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
56470            "in": "query",
56471            "name": "resourceVersion",
56472            "type": "string",
56473            "uniqueItems": true
56474          },
56475          {
56476            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56477            "in": "query",
56478            "name": "timeoutSeconds",
56479            "type": "integer",
56480            "uniqueItems": true
56481          },
56482          {
56483            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56484            "in": "query",
56485            "name": "watch",
56486            "type": "boolean",
56487            "uniqueItems": true
56488          }
56489        ],
56490        "produces": [
56491          "application/json",
56492          "application/yaml",
56493          "application/vnd.kubernetes.protobuf"
56494        ],
56495        "responses": {
56496          "200": {
56497            "description": "OK",
56498            "schema": {
56499              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56500            }
56501          },
56502          "401": {
56503            "description": "Unauthorized"
56504          }
56505        },
56506        "schemes": [
56507          "https"
56508        ],
56509        "tags": [
56510          "apps_v1beta2"
56511        ],
56512        "x-kubernetes-action": "deletecollection",
56513        "x-kubernetes-group-version-kind": {
56514          "group": "apps",
56515          "kind": "DaemonSet",
56516          "version": "v1beta2"
56517        }
56518      },
56519      "get": {
56520        "consumes": [
56521          "*/*"
56522        ],
56523        "description": "list or watch objects of kind DaemonSet",
56524        "operationId": "listAppsV1beta2NamespacedDaemonSet",
56525        "parameters": [
56526          {
56527            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
56528            "in": "query",
56529            "name": "allowWatchBookmarks",
56530            "type": "boolean",
56531            "uniqueItems": true
56532          },
56533          {
56534            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
56535            "in": "query",
56536            "name": "continue",
56537            "type": "string",
56538            "uniqueItems": true
56539          },
56540          {
56541            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
56542            "in": "query",
56543            "name": "fieldSelector",
56544            "type": "string",
56545            "uniqueItems": true
56546          },
56547          {
56548            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
56549            "in": "query",
56550            "name": "labelSelector",
56551            "type": "string",
56552            "uniqueItems": true
56553          },
56554          {
56555            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
56556            "in": "query",
56557            "name": "limit",
56558            "type": "integer",
56559            "uniqueItems": true
56560          },
56561          {
56562            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
56563            "in": "query",
56564            "name": "resourceVersion",
56565            "type": "string",
56566            "uniqueItems": true
56567          },
56568          {
56569            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
56570            "in": "query",
56571            "name": "timeoutSeconds",
56572            "type": "integer",
56573            "uniqueItems": true
56574          },
56575          {
56576            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
56577            "in": "query",
56578            "name": "watch",
56579            "type": "boolean",
56580            "uniqueItems": true
56581          }
56582        ],
56583        "produces": [
56584          "application/json",
56585          "application/yaml",
56586          "application/vnd.kubernetes.protobuf",
56587          "application/json;stream=watch",
56588          "application/vnd.kubernetes.protobuf;stream=watch"
56589        ],
56590        "responses": {
56591          "200": {
56592            "description": "OK",
56593            "schema": {
56594              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSetList"
56595            }
56596          },
56597          "401": {
56598            "description": "Unauthorized"
56599          }
56600        },
56601        "schemes": [
56602          "https"
56603        ],
56604        "tags": [
56605          "apps_v1beta2"
56606        ],
56607        "x-kubernetes-action": "list",
56608        "x-kubernetes-group-version-kind": {
56609          "group": "apps",
56610          "kind": "DaemonSet",
56611          "version": "v1beta2"
56612        }
56613      },
56614      "parameters": [
56615        {
56616          "description": "object name and auth scope, such as for teams and projects",
56617          "in": "path",
56618          "name": "namespace",
56619          "required": true,
56620          "type": "string",
56621          "uniqueItems": true
56622        },
56623        {
56624          "description": "If 'true', then the output is pretty printed.",
56625          "in": "query",
56626          "name": "pretty",
56627          "type": "string",
56628          "uniqueItems": true
56629        }
56630      ],
56631      "post": {
56632        "consumes": [
56633          "*/*"
56634        ],
56635        "description": "create a DaemonSet",
56636        "operationId": "createAppsV1beta2NamespacedDaemonSet",
56637        "parameters": [
56638          {
56639            "in": "body",
56640            "name": "body",
56641            "required": true,
56642            "schema": {
56643              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56644            }
56645          },
56646          {
56647            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56648            "in": "query",
56649            "name": "dryRun",
56650            "type": "string",
56651            "uniqueItems": true
56652          },
56653          {
56654            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56655            "in": "query",
56656            "name": "fieldManager",
56657            "type": "string",
56658            "uniqueItems": true
56659          }
56660        ],
56661        "produces": [
56662          "application/json",
56663          "application/yaml",
56664          "application/vnd.kubernetes.protobuf"
56665        ],
56666        "responses": {
56667          "200": {
56668            "description": "OK",
56669            "schema": {
56670              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56671            }
56672          },
56673          "201": {
56674            "description": "Created",
56675            "schema": {
56676              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56677            }
56678          },
56679          "202": {
56680            "description": "Accepted",
56681            "schema": {
56682              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56683            }
56684          },
56685          "401": {
56686            "description": "Unauthorized"
56687          }
56688        },
56689        "schemes": [
56690          "https"
56691        ],
56692        "tags": [
56693          "apps_v1beta2"
56694        ],
56695        "x-kubernetes-action": "post",
56696        "x-kubernetes-group-version-kind": {
56697          "group": "apps",
56698          "kind": "DaemonSet",
56699          "version": "v1beta2"
56700        }
56701      }
56702    },
56703    "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}": {
56704      "delete": {
56705        "consumes": [
56706          "*/*"
56707        ],
56708        "description": "delete a DaemonSet",
56709        "operationId": "deleteAppsV1beta2NamespacedDaemonSet",
56710        "parameters": [
56711          {
56712            "in": "body",
56713            "name": "body",
56714            "schema": {
56715              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
56716            }
56717          },
56718          {
56719            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56720            "in": "query",
56721            "name": "dryRun",
56722            "type": "string",
56723            "uniqueItems": true
56724          },
56725          {
56726            "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.",
56727            "in": "query",
56728            "name": "gracePeriodSeconds",
56729            "type": "integer",
56730            "uniqueItems": true
56731          },
56732          {
56733            "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.",
56734            "in": "query",
56735            "name": "orphanDependents",
56736            "type": "boolean",
56737            "uniqueItems": true
56738          },
56739          {
56740            "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.",
56741            "in": "query",
56742            "name": "propagationPolicy",
56743            "type": "string",
56744            "uniqueItems": true
56745          }
56746        ],
56747        "produces": [
56748          "application/json",
56749          "application/yaml",
56750          "application/vnd.kubernetes.protobuf"
56751        ],
56752        "responses": {
56753          "200": {
56754            "description": "OK",
56755            "schema": {
56756              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56757            }
56758          },
56759          "202": {
56760            "description": "Accepted",
56761            "schema": {
56762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
56763            }
56764          },
56765          "401": {
56766            "description": "Unauthorized"
56767          }
56768        },
56769        "schemes": [
56770          "https"
56771        ],
56772        "tags": [
56773          "apps_v1beta2"
56774        ],
56775        "x-kubernetes-action": "delete",
56776        "x-kubernetes-group-version-kind": {
56777          "group": "apps",
56778          "kind": "DaemonSet",
56779          "version": "v1beta2"
56780        }
56781      },
56782      "get": {
56783        "consumes": [
56784          "*/*"
56785        ],
56786        "description": "read the specified DaemonSet",
56787        "operationId": "readAppsV1beta2NamespacedDaemonSet",
56788        "parameters": [
56789          {
56790            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
56791            "in": "query",
56792            "name": "exact",
56793            "type": "boolean",
56794            "uniqueItems": true
56795          },
56796          {
56797            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
56798            "in": "query",
56799            "name": "export",
56800            "type": "boolean",
56801            "uniqueItems": true
56802          }
56803        ],
56804        "produces": [
56805          "application/json",
56806          "application/yaml",
56807          "application/vnd.kubernetes.protobuf"
56808        ],
56809        "responses": {
56810          "200": {
56811            "description": "OK",
56812            "schema": {
56813              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56814            }
56815          },
56816          "401": {
56817            "description": "Unauthorized"
56818          }
56819        },
56820        "schemes": [
56821          "https"
56822        ],
56823        "tags": [
56824          "apps_v1beta2"
56825        ],
56826        "x-kubernetes-action": "get",
56827        "x-kubernetes-group-version-kind": {
56828          "group": "apps",
56829          "kind": "DaemonSet",
56830          "version": "v1beta2"
56831        }
56832      },
56833      "parameters": [
56834        {
56835          "description": "name of the DaemonSet",
56836          "in": "path",
56837          "name": "name",
56838          "required": true,
56839          "type": "string",
56840          "uniqueItems": true
56841        },
56842        {
56843          "description": "object name and auth scope, such as for teams and projects",
56844          "in": "path",
56845          "name": "namespace",
56846          "required": true,
56847          "type": "string",
56848          "uniqueItems": true
56849        },
56850        {
56851          "description": "If 'true', then the output is pretty printed.",
56852          "in": "query",
56853          "name": "pretty",
56854          "type": "string",
56855          "uniqueItems": true
56856        }
56857      ],
56858      "patch": {
56859        "consumes": [
56860          "application/json-patch+json",
56861          "application/merge-patch+json",
56862          "application/strategic-merge-patch+json"
56863        ],
56864        "description": "partially update the specified DaemonSet",
56865        "operationId": "patchAppsV1beta2NamespacedDaemonSet",
56866        "parameters": [
56867          {
56868            "in": "body",
56869            "name": "body",
56870            "required": true,
56871            "schema": {
56872              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
56873            }
56874          },
56875          {
56876            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56877            "in": "query",
56878            "name": "dryRun",
56879            "type": "string",
56880            "uniqueItems": true
56881          },
56882          {
56883            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
56884            "in": "query",
56885            "name": "fieldManager",
56886            "type": "string",
56887            "uniqueItems": true
56888          },
56889          {
56890            "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.",
56891            "in": "query",
56892            "name": "force",
56893            "type": "boolean",
56894            "uniqueItems": true
56895          }
56896        ],
56897        "produces": [
56898          "application/json",
56899          "application/yaml",
56900          "application/vnd.kubernetes.protobuf"
56901        ],
56902        "responses": {
56903          "200": {
56904            "description": "OK",
56905            "schema": {
56906              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56907            }
56908          },
56909          "401": {
56910            "description": "Unauthorized"
56911          }
56912        },
56913        "schemes": [
56914          "https"
56915        ],
56916        "tags": [
56917          "apps_v1beta2"
56918        ],
56919        "x-kubernetes-action": "patch",
56920        "x-kubernetes-group-version-kind": {
56921          "group": "apps",
56922          "kind": "DaemonSet",
56923          "version": "v1beta2"
56924        }
56925      },
56926      "put": {
56927        "consumes": [
56928          "*/*"
56929        ],
56930        "description": "replace the specified DaemonSet",
56931        "operationId": "replaceAppsV1beta2NamespacedDaemonSet",
56932        "parameters": [
56933          {
56934            "in": "body",
56935            "name": "body",
56936            "required": true,
56937            "schema": {
56938              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56939            }
56940          },
56941          {
56942            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
56943            "in": "query",
56944            "name": "dryRun",
56945            "type": "string",
56946            "uniqueItems": true
56947          },
56948          {
56949            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
56950            "in": "query",
56951            "name": "fieldManager",
56952            "type": "string",
56953            "uniqueItems": true
56954          }
56955        ],
56956        "produces": [
56957          "application/json",
56958          "application/yaml",
56959          "application/vnd.kubernetes.protobuf"
56960        ],
56961        "responses": {
56962          "200": {
56963            "description": "OK",
56964            "schema": {
56965              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56966            }
56967          },
56968          "201": {
56969            "description": "Created",
56970            "schema": {
56971              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
56972            }
56973          },
56974          "401": {
56975            "description": "Unauthorized"
56976          }
56977        },
56978        "schemes": [
56979          "https"
56980        ],
56981        "tags": [
56982          "apps_v1beta2"
56983        ],
56984        "x-kubernetes-action": "put",
56985        "x-kubernetes-group-version-kind": {
56986          "group": "apps",
56987          "kind": "DaemonSet",
56988          "version": "v1beta2"
56989        }
56990      }
56991    },
56992    "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status": {
56993      "get": {
56994        "consumes": [
56995          "*/*"
56996        ],
56997        "description": "read status of the specified DaemonSet",
56998        "operationId": "readAppsV1beta2NamespacedDaemonSetStatus",
56999        "produces": [
57000          "application/json",
57001          "application/yaml",
57002          "application/vnd.kubernetes.protobuf"
57003        ],
57004        "responses": {
57005          "200": {
57006            "description": "OK",
57007            "schema": {
57008              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
57009            }
57010          },
57011          "401": {
57012            "description": "Unauthorized"
57013          }
57014        },
57015        "schemes": [
57016          "https"
57017        ],
57018        "tags": [
57019          "apps_v1beta2"
57020        ],
57021        "x-kubernetes-action": "get",
57022        "x-kubernetes-group-version-kind": {
57023          "group": "apps",
57024          "kind": "DaemonSet",
57025          "version": "v1beta2"
57026        }
57027      },
57028      "parameters": [
57029        {
57030          "description": "name of the DaemonSet",
57031          "in": "path",
57032          "name": "name",
57033          "required": true,
57034          "type": "string",
57035          "uniqueItems": true
57036        },
57037        {
57038          "description": "object name and auth scope, such as for teams and projects",
57039          "in": "path",
57040          "name": "namespace",
57041          "required": true,
57042          "type": "string",
57043          "uniqueItems": true
57044        },
57045        {
57046          "description": "If 'true', then the output is pretty printed.",
57047          "in": "query",
57048          "name": "pretty",
57049          "type": "string",
57050          "uniqueItems": true
57051        }
57052      ],
57053      "patch": {
57054        "consumes": [
57055          "application/json-patch+json",
57056          "application/merge-patch+json",
57057          "application/strategic-merge-patch+json"
57058        ],
57059        "description": "partially update status of the specified DaemonSet",
57060        "operationId": "patchAppsV1beta2NamespacedDaemonSetStatus",
57061        "parameters": [
57062          {
57063            "in": "body",
57064            "name": "body",
57065            "required": true,
57066            "schema": {
57067              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
57068            }
57069          },
57070          {
57071            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57072            "in": "query",
57073            "name": "dryRun",
57074            "type": "string",
57075            "uniqueItems": true
57076          },
57077          {
57078            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
57079            "in": "query",
57080            "name": "fieldManager",
57081            "type": "string",
57082            "uniqueItems": true
57083          },
57084          {
57085            "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.",
57086            "in": "query",
57087            "name": "force",
57088            "type": "boolean",
57089            "uniqueItems": true
57090          }
57091        ],
57092        "produces": [
57093          "application/json",
57094          "application/yaml",
57095          "application/vnd.kubernetes.protobuf"
57096        ],
57097        "responses": {
57098          "200": {
57099            "description": "OK",
57100            "schema": {
57101              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
57102            }
57103          },
57104          "401": {
57105            "description": "Unauthorized"
57106          }
57107        },
57108        "schemes": [
57109          "https"
57110        ],
57111        "tags": [
57112          "apps_v1beta2"
57113        ],
57114        "x-kubernetes-action": "patch",
57115        "x-kubernetes-group-version-kind": {
57116          "group": "apps",
57117          "kind": "DaemonSet",
57118          "version": "v1beta2"
57119        }
57120      },
57121      "put": {
57122        "consumes": [
57123          "*/*"
57124        ],
57125        "description": "replace status of the specified DaemonSet",
57126        "operationId": "replaceAppsV1beta2NamespacedDaemonSetStatus",
57127        "parameters": [
57128          {
57129            "in": "body",
57130            "name": "body",
57131            "required": true,
57132            "schema": {
57133              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
57134            }
57135          },
57136          {
57137            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57138            "in": "query",
57139            "name": "dryRun",
57140            "type": "string",
57141            "uniqueItems": true
57142          },
57143          {
57144            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57145            "in": "query",
57146            "name": "fieldManager",
57147            "type": "string",
57148            "uniqueItems": true
57149          }
57150        ],
57151        "produces": [
57152          "application/json",
57153          "application/yaml",
57154          "application/vnd.kubernetes.protobuf"
57155        ],
57156        "responses": {
57157          "200": {
57158            "description": "OK",
57159            "schema": {
57160              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
57161            }
57162          },
57163          "201": {
57164            "description": "Created",
57165            "schema": {
57166              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet"
57167            }
57168          },
57169          "401": {
57170            "description": "Unauthorized"
57171          }
57172        },
57173        "schemes": [
57174          "https"
57175        ],
57176        "tags": [
57177          "apps_v1beta2"
57178        ],
57179        "x-kubernetes-action": "put",
57180        "x-kubernetes-group-version-kind": {
57181          "group": "apps",
57182          "kind": "DaemonSet",
57183          "version": "v1beta2"
57184        }
57185      }
57186    },
57187    "/apis/apps/v1beta2/namespaces/{namespace}/deployments": {
57188      "delete": {
57189        "consumes": [
57190          "*/*"
57191        ],
57192        "description": "delete collection of Deployment",
57193        "operationId": "deleteAppsV1beta2CollectionNamespacedDeployment",
57194        "parameters": [
57195          {
57196            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
57197            "in": "query",
57198            "name": "allowWatchBookmarks",
57199            "type": "boolean",
57200            "uniqueItems": true
57201          },
57202          {
57203            "in": "body",
57204            "name": "body",
57205            "schema": {
57206              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57207            }
57208          },
57209          {
57210            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57211            "in": "query",
57212            "name": "continue",
57213            "type": "string",
57214            "uniqueItems": true
57215          },
57216          {
57217            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57218            "in": "query",
57219            "name": "dryRun",
57220            "type": "string",
57221            "uniqueItems": true
57222          },
57223          {
57224            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57225            "in": "query",
57226            "name": "fieldSelector",
57227            "type": "string",
57228            "uniqueItems": true
57229          },
57230          {
57231            "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.",
57232            "in": "query",
57233            "name": "gracePeriodSeconds",
57234            "type": "integer",
57235            "uniqueItems": true
57236          },
57237          {
57238            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57239            "in": "query",
57240            "name": "labelSelector",
57241            "type": "string",
57242            "uniqueItems": true
57243          },
57244          {
57245            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57246            "in": "query",
57247            "name": "limit",
57248            "type": "integer",
57249            "uniqueItems": true
57250          },
57251          {
57252            "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.",
57253            "in": "query",
57254            "name": "orphanDependents",
57255            "type": "boolean",
57256            "uniqueItems": true
57257          },
57258          {
57259            "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.",
57260            "in": "query",
57261            "name": "propagationPolicy",
57262            "type": "string",
57263            "uniqueItems": true
57264          },
57265          {
57266            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
57267            "in": "query",
57268            "name": "resourceVersion",
57269            "type": "string",
57270            "uniqueItems": true
57271          },
57272          {
57273            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57274            "in": "query",
57275            "name": "timeoutSeconds",
57276            "type": "integer",
57277            "uniqueItems": true
57278          },
57279          {
57280            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57281            "in": "query",
57282            "name": "watch",
57283            "type": "boolean",
57284            "uniqueItems": true
57285          }
57286        ],
57287        "produces": [
57288          "application/json",
57289          "application/yaml",
57290          "application/vnd.kubernetes.protobuf"
57291        ],
57292        "responses": {
57293          "200": {
57294            "description": "OK",
57295            "schema": {
57296              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57297            }
57298          },
57299          "401": {
57300            "description": "Unauthorized"
57301          }
57302        },
57303        "schemes": [
57304          "https"
57305        ],
57306        "tags": [
57307          "apps_v1beta2"
57308        ],
57309        "x-kubernetes-action": "deletecollection",
57310        "x-kubernetes-group-version-kind": {
57311          "group": "apps",
57312          "kind": "Deployment",
57313          "version": "v1beta2"
57314        }
57315      },
57316      "get": {
57317        "consumes": [
57318          "*/*"
57319        ],
57320        "description": "list or watch objects of kind Deployment",
57321        "operationId": "listAppsV1beta2NamespacedDeployment",
57322        "parameters": [
57323          {
57324            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
57325            "in": "query",
57326            "name": "allowWatchBookmarks",
57327            "type": "boolean",
57328            "uniqueItems": true
57329          },
57330          {
57331            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
57332            "in": "query",
57333            "name": "continue",
57334            "type": "string",
57335            "uniqueItems": true
57336          },
57337          {
57338            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
57339            "in": "query",
57340            "name": "fieldSelector",
57341            "type": "string",
57342            "uniqueItems": true
57343          },
57344          {
57345            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
57346            "in": "query",
57347            "name": "labelSelector",
57348            "type": "string",
57349            "uniqueItems": true
57350          },
57351          {
57352            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
57353            "in": "query",
57354            "name": "limit",
57355            "type": "integer",
57356            "uniqueItems": true
57357          },
57358          {
57359            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
57360            "in": "query",
57361            "name": "resourceVersion",
57362            "type": "string",
57363            "uniqueItems": true
57364          },
57365          {
57366            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
57367            "in": "query",
57368            "name": "timeoutSeconds",
57369            "type": "integer",
57370            "uniqueItems": true
57371          },
57372          {
57373            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
57374            "in": "query",
57375            "name": "watch",
57376            "type": "boolean",
57377            "uniqueItems": true
57378          }
57379        ],
57380        "produces": [
57381          "application/json",
57382          "application/yaml",
57383          "application/vnd.kubernetes.protobuf",
57384          "application/json;stream=watch",
57385          "application/vnd.kubernetes.protobuf;stream=watch"
57386        ],
57387        "responses": {
57388          "200": {
57389            "description": "OK",
57390            "schema": {
57391              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentList"
57392            }
57393          },
57394          "401": {
57395            "description": "Unauthorized"
57396          }
57397        },
57398        "schemes": [
57399          "https"
57400        ],
57401        "tags": [
57402          "apps_v1beta2"
57403        ],
57404        "x-kubernetes-action": "list",
57405        "x-kubernetes-group-version-kind": {
57406          "group": "apps",
57407          "kind": "Deployment",
57408          "version": "v1beta2"
57409        }
57410      },
57411      "parameters": [
57412        {
57413          "description": "object name and auth scope, such as for teams and projects",
57414          "in": "path",
57415          "name": "namespace",
57416          "required": true,
57417          "type": "string",
57418          "uniqueItems": true
57419        },
57420        {
57421          "description": "If 'true', then the output is pretty printed.",
57422          "in": "query",
57423          "name": "pretty",
57424          "type": "string",
57425          "uniqueItems": true
57426        }
57427      ],
57428      "post": {
57429        "consumes": [
57430          "*/*"
57431        ],
57432        "description": "create a Deployment",
57433        "operationId": "createAppsV1beta2NamespacedDeployment",
57434        "parameters": [
57435          {
57436            "in": "body",
57437            "name": "body",
57438            "required": true,
57439            "schema": {
57440              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57441            }
57442          },
57443          {
57444            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57445            "in": "query",
57446            "name": "dryRun",
57447            "type": "string",
57448            "uniqueItems": true
57449          },
57450          {
57451            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57452            "in": "query",
57453            "name": "fieldManager",
57454            "type": "string",
57455            "uniqueItems": true
57456          }
57457        ],
57458        "produces": [
57459          "application/json",
57460          "application/yaml",
57461          "application/vnd.kubernetes.protobuf"
57462        ],
57463        "responses": {
57464          "200": {
57465            "description": "OK",
57466            "schema": {
57467              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57468            }
57469          },
57470          "201": {
57471            "description": "Created",
57472            "schema": {
57473              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57474            }
57475          },
57476          "202": {
57477            "description": "Accepted",
57478            "schema": {
57479              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57480            }
57481          },
57482          "401": {
57483            "description": "Unauthorized"
57484          }
57485        },
57486        "schemes": [
57487          "https"
57488        ],
57489        "tags": [
57490          "apps_v1beta2"
57491        ],
57492        "x-kubernetes-action": "post",
57493        "x-kubernetes-group-version-kind": {
57494          "group": "apps",
57495          "kind": "Deployment",
57496          "version": "v1beta2"
57497        }
57498      }
57499    },
57500    "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}": {
57501      "delete": {
57502        "consumes": [
57503          "*/*"
57504        ],
57505        "description": "delete a Deployment",
57506        "operationId": "deleteAppsV1beta2NamespacedDeployment",
57507        "parameters": [
57508          {
57509            "in": "body",
57510            "name": "body",
57511            "schema": {
57512              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
57513            }
57514          },
57515          {
57516            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57517            "in": "query",
57518            "name": "dryRun",
57519            "type": "string",
57520            "uniqueItems": true
57521          },
57522          {
57523            "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.",
57524            "in": "query",
57525            "name": "gracePeriodSeconds",
57526            "type": "integer",
57527            "uniqueItems": true
57528          },
57529          {
57530            "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.",
57531            "in": "query",
57532            "name": "orphanDependents",
57533            "type": "boolean",
57534            "uniqueItems": true
57535          },
57536          {
57537            "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.",
57538            "in": "query",
57539            "name": "propagationPolicy",
57540            "type": "string",
57541            "uniqueItems": true
57542          }
57543        ],
57544        "produces": [
57545          "application/json",
57546          "application/yaml",
57547          "application/vnd.kubernetes.protobuf"
57548        ],
57549        "responses": {
57550          "200": {
57551            "description": "OK",
57552            "schema": {
57553              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57554            }
57555          },
57556          "202": {
57557            "description": "Accepted",
57558            "schema": {
57559              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
57560            }
57561          },
57562          "401": {
57563            "description": "Unauthorized"
57564          }
57565        },
57566        "schemes": [
57567          "https"
57568        ],
57569        "tags": [
57570          "apps_v1beta2"
57571        ],
57572        "x-kubernetes-action": "delete",
57573        "x-kubernetes-group-version-kind": {
57574          "group": "apps",
57575          "kind": "Deployment",
57576          "version": "v1beta2"
57577        }
57578      },
57579      "get": {
57580        "consumes": [
57581          "*/*"
57582        ],
57583        "description": "read the specified Deployment",
57584        "operationId": "readAppsV1beta2NamespacedDeployment",
57585        "parameters": [
57586          {
57587            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
57588            "in": "query",
57589            "name": "exact",
57590            "type": "boolean",
57591            "uniqueItems": true
57592          },
57593          {
57594            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
57595            "in": "query",
57596            "name": "export",
57597            "type": "boolean",
57598            "uniqueItems": true
57599          }
57600        ],
57601        "produces": [
57602          "application/json",
57603          "application/yaml",
57604          "application/vnd.kubernetes.protobuf"
57605        ],
57606        "responses": {
57607          "200": {
57608            "description": "OK",
57609            "schema": {
57610              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57611            }
57612          },
57613          "401": {
57614            "description": "Unauthorized"
57615          }
57616        },
57617        "schemes": [
57618          "https"
57619        ],
57620        "tags": [
57621          "apps_v1beta2"
57622        ],
57623        "x-kubernetes-action": "get",
57624        "x-kubernetes-group-version-kind": {
57625          "group": "apps",
57626          "kind": "Deployment",
57627          "version": "v1beta2"
57628        }
57629      },
57630      "parameters": [
57631        {
57632          "description": "name of the Deployment",
57633          "in": "path",
57634          "name": "name",
57635          "required": true,
57636          "type": "string",
57637          "uniqueItems": true
57638        },
57639        {
57640          "description": "object name and auth scope, such as for teams and projects",
57641          "in": "path",
57642          "name": "namespace",
57643          "required": true,
57644          "type": "string",
57645          "uniqueItems": true
57646        },
57647        {
57648          "description": "If 'true', then the output is pretty printed.",
57649          "in": "query",
57650          "name": "pretty",
57651          "type": "string",
57652          "uniqueItems": true
57653        }
57654      ],
57655      "patch": {
57656        "consumes": [
57657          "application/json-patch+json",
57658          "application/merge-patch+json",
57659          "application/strategic-merge-patch+json"
57660        ],
57661        "description": "partially update the specified Deployment",
57662        "operationId": "patchAppsV1beta2NamespacedDeployment",
57663        "parameters": [
57664          {
57665            "in": "body",
57666            "name": "body",
57667            "required": true,
57668            "schema": {
57669              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
57670            }
57671          },
57672          {
57673            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57674            "in": "query",
57675            "name": "dryRun",
57676            "type": "string",
57677            "uniqueItems": true
57678          },
57679          {
57680            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
57681            "in": "query",
57682            "name": "fieldManager",
57683            "type": "string",
57684            "uniqueItems": true
57685          },
57686          {
57687            "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.",
57688            "in": "query",
57689            "name": "force",
57690            "type": "boolean",
57691            "uniqueItems": true
57692          }
57693        ],
57694        "produces": [
57695          "application/json",
57696          "application/yaml",
57697          "application/vnd.kubernetes.protobuf"
57698        ],
57699        "responses": {
57700          "200": {
57701            "description": "OK",
57702            "schema": {
57703              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57704            }
57705          },
57706          "401": {
57707            "description": "Unauthorized"
57708          }
57709        },
57710        "schemes": [
57711          "https"
57712        ],
57713        "tags": [
57714          "apps_v1beta2"
57715        ],
57716        "x-kubernetes-action": "patch",
57717        "x-kubernetes-group-version-kind": {
57718          "group": "apps",
57719          "kind": "Deployment",
57720          "version": "v1beta2"
57721        }
57722      },
57723      "put": {
57724        "consumes": [
57725          "*/*"
57726        ],
57727        "description": "replace the specified Deployment",
57728        "operationId": "replaceAppsV1beta2NamespacedDeployment",
57729        "parameters": [
57730          {
57731            "in": "body",
57732            "name": "body",
57733            "required": true,
57734            "schema": {
57735              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57736            }
57737          },
57738          {
57739            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57740            "in": "query",
57741            "name": "dryRun",
57742            "type": "string",
57743            "uniqueItems": true
57744          },
57745          {
57746            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57747            "in": "query",
57748            "name": "fieldManager",
57749            "type": "string",
57750            "uniqueItems": true
57751          }
57752        ],
57753        "produces": [
57754          "application/json",
57755          "application/yaml",
57756          "application/vnd.kubernetes.protobuf"
57757        ],
57758        "responses": {
57759          "200": {
57760            "description": "OK",
57761            "schema": {
57762              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57763            }
57764          },
57765          "201": {
57766            "description": "Created",
57767            "schema": {
57768              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
57769            }
57770          },
57771          "401": {
57772            "description": "Unauthorized"
57773          }
57774        },
57775        "schemes": [
57776          "https"
57777        ],
57778        "tags": [
57779          "apps_v1beta2"
57780        ],
57781        "x-kubernetes-action": "put",
57782        "x-kubernetes-group-version-kind": {
57783          "group": "apps",
57784          "kind": "Deployment",
57785          "version": "v1beta2"
57786        }
57787      }
57788    },
57789    "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale": {
57790      "get": {
57791        "consumes": [
57792          "*/*"
57793        ],
57794        "description": "read scale of the specified Deployment",
57795        "operationId": "readAppsV1beta2NamespacedDeploymentScale",
57796        "produces": [
57797          "application/json",
57798          "application/yaml",
57799          "application/vnd.kubernetes.protobuf"
57800        ],
57801        "responses": {
57802          "200": {
57803            "description": "OK",
57804            "schema": {
57805              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
57806            }
57807          },
57808          "401": {
57809            "description": "Unauthorized"
57810          }
57811        },
57812        "schemes": [
57813          "https"
57814        ],
57815        "tags": [
57816          "apps_v1beta2"
57817        ],
57818        "x-kubernetes-action": "get",
57819        "x-kubernetes-group-version-kind": {
57820          "group": "apps",
57821          "kind": "Scale",
57822          "version": "v1beta2"
57823        }
57824      },
57825      "parameters": [
57826        {
57827          "description": "name of the Scale",
57828          "in": "path",
57829          "name": "name",
57830          "required": true,
57831          "type": "string",
57832          "uniqueItems": true
57833        },
57834        {
57835          "description": "object name and auth scope, such as for teams and projects",
57836          "in": "path",
57837          "name": "namespace",
57838          "required": true,
57839          "type": "string",
57840          "uniqueItems": true
57841        },
57842        {
57843          "description": "If 'true', then the output is pretty printed.",
57844          "in": "query",
57845          "name": "pretty",
57846          "type": "string",
57847          "uniqueItems": true
57848        }
57849      ],
57850      "patch": {
57851        "consumes": [
57852          "application/json-patch+json",
57853          "application/merge-patch+json",
57854          "application/strategic-merge-patch+json"
57855        ],
57856        "description": "partially update scale of the specified Deployment",
57857        "operationId": "patchAppsV1beta2NamespacedDeploymentScale",
57858        "parameters": [
57859          {
57860            "in": "body",
57861            "name": "body",
57862            "required": true,
57863            "schema": {
57864              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
57865            }
57866          },
57867          {
57868            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57869            "in": "query",
57870            "name": "dryRun",
57871            "type": "string",
57872            "uniqueItems": true
57873          },
57874          {
57875            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
57876            "in": "query",
57877            "name": "fieldManager",
57878            "type": "string",
57879            "uniqueItems": true
57880          },
57881          {
57882            "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.",
57883            "in": "query",
57884            "name": "force",
57885            "type": "boolean",
57886            "uniqueItems": true
57887          }
57888        ],
57889        "produces": [
57890          "application/json",
57891          "application/yaml",
57892          "application/vnd.kubernetes.protobuf"
57893        ],
57894        "responses": {
57895          "200": {
57896            "description": "OK",
57897            "schema": {
57898              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
57899            }
57900          },
57901          "401": {
57902            "description": "Unauthorized"
57903          }
57904        },
57905        "schemes": [
57906          "https"
57907        ],
57908        "tags": [
57909          "apps_v1beta2"
57910        ],
57911        "x-kubernetes-action": "patch",
57912        "x-kubernetes-group-version-kind": {
57913          "group": "apps",
57914          "kind": "Scale",
57915          "version": "v1beta2"
57916        }
57917      },
57918      "put": {
57919        "consumes": [
57920          "*/*"
57921        ],
57922        "description": "replace scale of the specified Deployment",
57923        "operationId": "replaceAppsV1beta2NamespacedDeploymentScale",
57924        "parameters": [
57925          {
57926            "in": "body",
57927            "name": "body",
57928            "required": true,
57929            "schema": {
57930              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
57931            }
57932          },
57933          {
57934            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
57935            "in": "query",
57936            "name": "dryRun",
57937            "type": "string",
57938            "uniqueItems": true
57939          },
57940          {
57941            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
57942            "in": "query",
57943            "name": "fieldManager",
57944            "type": "string",
57945            "uniqueItems": true
57946          }
57947        ],
57948        "produces": [
57949          "application/json",
57950          "application/yaml",
57951          "application/vnd.kubernetes.protobuf"
57952        ],
57953        "responses": {
57954          "200": {
57955            "description": "OK",
57956            "schema": {
57957              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
57958            }
57959          },
57960          "201": {
57961            "description": "Created",
57962            "schema": {
57963              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
57964            }
57965          },
57966          "401": {
57967            "description": "Unauthorized"
57968          }
57969        },
57970        "schemes": [
57971          "https"
57972        ],
57973        "tags": [
57974          "apps_v1beta2"
57975        ],
57976        "x-kubernetes-action": "put",
57977        "x-kubernetes-group-version-kind": {
57978          "group": "apps",
57979          "kind": "Scale",
57980          "version": "v1beta2"
57981        }
57982      }
57983    },
57984    "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status": {
57985      "get": {
57986        "consumes": [
57987          "*/*"
57988        ],
57989        "description": "read status of the specified Deployment",
57990        "operationId": "readAppsV1beta2NamespacedDeploymentStatus",
57991        "produces": [
57992          "application/json",
57993          "application/yaml",
57994          "application/vnd.kubernetes.protobuf"
57995        ],
57996        "responses": {
57997          "200": {
57998            "description": "OK",
57999            "schema": {
58000              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
58001            }
58002          },
58003          "401": {
58004            "description": "Unauthorized"
58005          }
58006        },
58007        "schemes": [
58008          "https"
58009        ],
58010        "tags": [
58011          "apps_v1beta2"
58012        ],
58013        "x-kubernetes-action": "get",
58014        "x-kubernetes-group-version-kind": {
58015          "group": "apps",
58016          "kind": "Deployment",
58017          "version": "v1beta2"
58018        }
58019      },
58020      "parameters": [
58021        {
58022          "description": "name of the Deployment",
58023          "in": "path",
58024          "name": "name",
58025          "required": true,
58026          "type": "string",
58027          "uniqueItems": true
58028        },
58029        {
58030          "description": "object name and auth scope, such as for teams and projects",
58031          "in": "path",
58032          "name": "namespace",
58033          "required": true,
58034          "type": "string",
58035          "uniqueItems": true
58036        },
58037        {
58038          "description": "If 'true', then the output is pretty printed.",
58039          "in": "query",
58040          "name": "pretty",
58041          "type": "string",
58042          "uniqueItems": true
58043        }
58044      ],
58045      "patch": {
58046        "consumes": [
58047          "application/json-patch+json",
58048          "application/merge-patch+json",
58049          "application/strategic-merge-patch+json"
58050        ],
58051        "description": "partially update status of the specified Deployment",
58052        "operationId": "patchAppsV1beta2NamespacedDeploymentStatus",
58053        "parameters": [
58054          {
58055            "in": "body",
58056            "name": "body",
58057            "required": true,
58058            "schema": {
58059              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
58060            }
58061          },
58062          {
58063            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58064            "in": "query",
58065            "name": "dryRun",
58066            "type": "string",
58067            "uniqueItems": true
58068          },
58069          {
58070            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
58071            "in": "query",
58072            "name": "fieldManager",
58073            "type": "string",
58074            "uniqueItems": true
58075          },
58076          {
58077            "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.",
58078            "in": "query",
58079            "name": "force",
58080            "type": "boolean",
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.apps.v1beta2.Deployment"
58094            }
58095          },
58096          "401": {
58097            "description": "Unauthorized"
58098          }
58099        },
58100        "schemes": [
58101          "https"
58102        ],
58103        "tags": [
58104          "apps_v1beta2"
58105        ],
58106        "x-kubernetes-action": "patch",
58107        "x-kubernetes-group-version-kind": {
58108          "group": "apps",
58109          "kind": "Deployment",
58110          "version": "v1beta2"
58111        }
58112      },
58113      "put": {
58114        "consumes": [
58115          "*/*"
58116        ],
58117        "description": "replace status of the specified Deployment",
58118        "operationId": "replaceAppsV1beta2NamespacedDeploymentStatus",
58119        "parameters": [
58120          {
58121            "in": "body",
58122            "name": "body",
58123            "required": true,
58124            "schema": {
58125              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
58126            }
58127          },
58128          {
58129            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58130            "in": "query",
58131            "name": "dryRun",
58132            "type": "string",
58133            "uniqueItems": true
58134          },
58135          {
58136            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58137            "in": "query",
58138            "name": "fieldManager",
58139            "type": "string",
58140            "uniqueItems": true
58141          }
58142        ],
58143        "produces": [
58144          "application/json",
58145          "application/yaml",
58146          "application/vnd.kubernetes.protobuf"
58147        ],
58148        "responses": {
58149          "200": {
58150            "description": "OK",
58151            "schema": {
58152              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
58153            }
58154          },
58155          "201": {
58156            "description": "Created",
58157            "schema": {
58158              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment"
58159            }
58160          },
58161          "401": {
58162            "description": "Unauthorized"
58163          }
58164        },
58165        "schemes": [
58166          "https"
58167        ],
58168        "tags": [
58169          "apps_v1beta2"
58170        ],
58171        "x-kubernetes-action": "put",
58172        "x-kubernetes-group-version-kind": {
58173          "group": "apps",
58174          "kind": "Deployment",
58175          "version": "v1beta2"
58176        }
58177      }
58178    },
58179    "/apis/apps/v1beta2/namespaces/{namespace}/replicasets": {
58180      "delete": {
58181        "consumes": [
58182          "*/*"
58183        ],
58184        "description": "delete collection of ReplicaSet",
58185        "operationId": "deleteAppsV1beta2CollectionNamespacedReplicaSet",
58186        "parameters": [
58187          {
58188            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
58189            "in": "query",
58190            "name": "allowWatchBookmarks",
58191            "type": "boolean",
58192            "uniqueItems": true
58193          },
58194          {
58195            "in": "body",
58196            "name": "body",
58197            "schema": {
58198              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58199            }
58200          },
58201          {
58202            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58203            "in": "query",
58204            "name": "continue",
58205            "type": "string",
58206            "uniqueItems": true
58207          },
58208          {
58209            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58210            "in": "query",
58211            "name": "dryRun",
58212            "type": "string",
58213            "uniqueItems": true
58214          },
58215          {
58216            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58217            "in": "query",
58218            "name": "fieldSelector",
58219            "type": "string",
58220            "uniqueItems": true
58221          },
58222          {
58223            "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.",
58224            "in": "query",
58225            "name": "gracePeriodSeconds",
58226            "type": "integer",
58227            "uniqueItems": true
58228          },
58229          {
58230            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58231            "in": "query",
58232            "name": "labelSelector",
58233            "type": "string",
58234            "uniqueItems": true
58235          },
58236          {
58237            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58238            "in": "query",
58239            "name": "limit",
58240            "type": "integer",
58241            "uniqueItems": true
58242          },
58243          {
58244            "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.",
58245            "in": "query",
58246            "name": "orphanDependents",
58247            "type": "boolean",
58248            "uniqueItems": true
58249          },
58250          {
58251            "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.",
58252            "in": "query",
58253            "name": "propagationPolicy",
58254            "type": "string",
58255            "uniqueItems": true
58256          },
58257          {
58258            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
58259            "in": "query",
58260            "name": "resourceVersion",
58261            "type": "string",
58262            "uniqueItems": true
58263          },
58264          {
58265            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58266            "in": "query",
58267            "name": "timeoutSeconds",
58268            "type": "integer",
58269            "uniqueItems": true
58270          },
58271          {
58272            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58273            "in": "query",
58274            "name": "watch",
58275            "type": "boolean",
58276            "uniqueItems": true
58277          }
58278        ],
58279        "produces": [
58280          "application/json",
58281          "application/yaml",
58282          "application/vnd.kubernetes.protobuf"
58283        ],
58284        "responses": {
58285          "200": {
58286            "description": "OK",
58287            "schema": {
58288              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58289            }
58290          },
58291          "401": {
58292            "description": "Unauthorized"
58293          }
58294        },
58295        "schemes": [
58296          "https"
58297        ],
58298        "tags": [
58299          "apps_v1beta2"
58300        ],
58301        "x-kubernetes-action": "deletecollection",
58302        "x-kubernetes-group-version-kind": {
58303          "group": "apps",
58304          "kind": "ReplicaSet",
58305          "version": "v1beta2"
58306        }
58307      },
58308      "get": {
58309        "consumes": [
58310          "*/*"
58311        ],
58312        "description": "list or watch objects of kind ReplicaSet",
58313        "operationId": "listAppsV1beta2NamespacedReplicaSet",
58314        "parameters": [
58315          {
58316            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
58317            "in": "query",
58318            "name": "allowWatchBookmarks",
58319            "type": "boolean",
58320            "uniqueItems": true
58321          },
58322          {
58323            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
58324            "in": "query",
58325            "name": "continue",
58326            "type": "string",
58327            "uniqueItems": true
58328          },
58329          {
58330            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
58331            "in": "query",
58332            "name": "fieldSelector",
58333            "type": "string",
58334            "uniqueItems": true
58335          },
58336          {
58337            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
58338            "in": "query",
58339            "name": "labelSelector",
58340            "type": "string",
58341            "uniqueItems": true
58342          },
58343          {
58344            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
58345            "in": "query",
58346            "name": "limit",
58347            "type": "integer",
58348            "uniqueItems": true
58349          },
58350          {
58351            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
58352            "in": "query",
58353            "name": "resourceVersion",
58354            "type": "string",
58355            "uniqueItems": true
58356          },
58357          {
58358            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
58359            "in": "query",
58360            "name": "timeoutSeconds",
58361            "type": "integer",
58362            "uniqueItems": true
58363          },
58364          {
58365            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
58366            "in": "query",
58367            "name": "watch",
58368            "type": "boolean",
58369            "uniqueItems": true
58370          }
58371        ],
58372        "produces": [
58373          "application/json",
58374          "application/yaml",
58375          "application/vnd.kubernetes.protobuf",
58376          "application/json;stream=watch",
58377          "application/vnd.kubernetes.protobuf;stream=watch"
58378        ],
58379        "responses": {
58380          "200": {
58381            "description": "OK",
58382            "schema": {
58383              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetList"
58384            }
58385          },
58386          "401": {
58387            "description": "Unauthorized"
58388          }
58389        },
58390        "schemes": [
58391          "https"
58392        ],
58393        "tags": [
58394          "apps_v1beta2"
58395        ],
58396        "x-kubernetes-action": "list",
58397        "x-kubernetes-group-version-kind": {
58398          "group": "apps",
58399          "kind": "ReplicaSet",
58400          "version": "v1beta2"
58401        }
58402      },
58403      "parameters": [
58404        {
58405          "description": "object name and auth scope, such as for teams and projects",
58406          "in": "path",
58407          "name": "namespace",
58408          "required": true,
58409          "type": "string",
58410          "uniqueItems": true
58411        },
58412        {
58413          "description": "If 'true', then the output is pretty printed.",
58414          "in": "query",
58415          "name": "pretty",
58416          "type": "string",
58417          "uniqueItems": true
58418        }
58419      ],
58420      "post": {
58421        "consumes": [
58422          "*/*"
58423        ],
58424        "description": "create a ReplicaSet",
58425        "operationId": "createAppsV1beta2NamespacedReplicaSet",
58426        "parameters": [
58427          {
58428            "in": "body",
58429            "name": "body",
58430            "required": true,
58431            "schema": {
58432              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58433            }
58434          },
58435          {
58436            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58437            "in": "query",
58438            "name": "dryRun",
58439            "type": "string",
58440            "uniqueItems": true
58441          },
58442          {
58443            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58444            "in": "query",
58445            "name": "fieldManager",
58446            "type": "string",
58447            "uniqueItems": true
58448          }
58449        ],
58450        "produces": [
58451          "application/json",
58452          "application/yaml",
58453          "application/vnd.kubernetes.protobuf"
58454        ],
58455        "responses": {
58456          "200": {
58457            "description": "OK",
58458            "schema": {
58459              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58460            }
58461          },
58462          "201": {
58463            "description": "Created",
58464            "schema": {
58465              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58466            }
58467          },
58468          "202": {
58469            "description": "Accepted",
58470            "schema": {
58471              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58472            }
58473          },
58474          "401": {
58475            "description": "Unauthorized"
58476          }
58477        },
58478        "schemes": [
58479          "https"
58480        ],
58481        "tags": [
58482          "apps_v1beta2"
58483        ],
58484        "x-kubernetes-action": "post",
58485        "x-kubernetes-group-version-kind": {
58486          "group": "apps",
58487          "kind": "ReplicaSet",
58488          "version": "v1beta2"
58489        }
58490      }
58491    },
58492    "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}": {
58493      "delete": {
58494        "consumes": [
58495          "*/*"
58496        ],
58497        "description": "delete a ReplicaSet",
58498        "operationId": "deleteAppsV1beta2NamespacedReplicaSet",
58499        "parameters": [
58500          {
58501            "in": "body",
58502            "name": "body",
58503            "schema": {
58504              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
58505            }
58506          },
58507          {
58508            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58509            "in": "query",
58510            "name": "dryRun",
58511            "type": "string",
58512            "uniqueItems": true
58513          },
58514          {
58515            "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.",
58516            "in": "query",
58517            "name": "gracePeriodSeconds",
58518            "type": "integer",
58519            "uniqueItems": true
58520          },
58521          {
58522            "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.",
58523            "in": "query",
58524            "name": "orphanDependents",
58525            "type": "boolean",
58526            "uniqueItems": true
58527          },
58528          {
58529            "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.",
58530            "in": "query",
58531            "name": "propagationPolicy",
58532            "type": "string",
58533            "uniqueItems": true
58534          }
58535        ],
58536        "produces": [
58537          "application/json",
58538          "application/yaml",
58539          "application/vnd.kubernetes.protobuf"
58540        ],
58541        "responses": {
58542          "200": {
58543            "description": "OK",
58544            "schema": {
58545              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58546            }
58547          },
58548          "202": {
58549            "description": "Accepted",
58550            "schema": {
58551              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
58552            }
58553          },
58554          "401": {
58555            "description": "Unauthorized"
58556          }
58557        },
58558        "schemes": [
58559          "https"
58560        ],
58561        "tags": [
58562          "apps_v1beta2"
58563        ],
58564        "x-kubernetes-action": "delete",
58565        "x-kubernetes-group-version-kind": {
58566          "group": "apps",
58567          "kind": "ReplicaSet",
58568          "version": "v1beta2"
58569        }
58570      },
58571      "get": {
58572        "consumes": [
58573          "*/*"
58574        ],
58575        "description": "read the specified ReplicaSet",
58576        "operationId": "readAppsV1beta2NamespacedReplicaSet",
58577        "parameters": [
58578          {
58579            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
58580            "in": "query",
58581            "name": "exact",
58582            "type": "boolean",
58583            "uniqueItems": true
58584          },
58585          {
58586            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
58587            "in": "query",
58588            "name": "export",
58589            "type": "boolean",
58590            "uniqueItems": true
58591          }
58592        ],
58593        "produces": [
58594          "application/json",
58595          "application/yaml",
58596          "application/vnd.kubernetes.protobuf"
58597        ],
58598        "responses": {
58599          "200": {
58600            "description": "OK",
58601            "schema": {
58602              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58603            }
58604          },
58605          "401": {
58606            "description": "Unauthorized"
58607          }
58608        },
58609        "schemes": [
58610          "https"
58611        ],
58612        "tags": [
58613          "apps_v1beta2"
58614        ],
58615        "x-kubernetes-action": "get",
58616        "x-kubernetes-group-version-kind": {
58617          "group": "apps",
58618          "kind": "ReplicaSet",
58619          "version": "v1beta2"
58620        }
58621      },
58622      "parameters": [
58623        {
58624          "description": "name of the ReplicaSet",
58625          "in": "path",
58626          "name": "name",
58627          "required": true,
58628          "type": "string",
58629          "uniqueItems": true
58630        },
58631        {
58632          "description": "object name and auth scope, such as for teams and projects",
58633          "in": "path",
58634          "name": "namespace",
58635          "required": true,
58636          "type": "string",
58637          "uniqueItems": true
58638        },
58639        {
58640          "description": "If 'true', then the output is pretty printed.",
58641          "in": "query",
58642          "name": "pretty",
58643          "type": "string",
58644          "uniqueItems": true
58645        }
58646      ],
58647      "patch": {
58648        "consumes": [
58649          "application/json-patch+json",
58650          "application/merge-patch+json",
58651          "application/strategic-merge-patch+json"
58652        ],
58653        "description": "partially update the specified ReplicaSet",
58654        "operationId": "patchAppsV1beta2NamespacedReplicaSet",
58655        "parameters": [
58656          {
58657            "in": "body",
58658            "name": "body",
58659            "required": true,
58660            "schema": {
58661              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
58662            }
58663          },
58664          {
58665            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58666            "in": "query",
58667            "name": "dryRun",
58668            "type": "string",
58669            "uniqueItems": true
58670          },
58671          {
58672            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
58673            "in": "query",
58674            "name": "fieldManager",
58675            "type": "string",
58676            "uniqueItems": true
58677          },
58678          {
58679            "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.",
58680            "in": "query",
58681            "name": "force",
58682            "type": "boolean",
58683            "uniqueItems": true
58684          }
58685        ],
58686        "produces": [
58687          "application/json",
58688          "application/yaml",
58689          "application/vnd.kubernetes.protobuf"
58690        ],
58691        "responses": {
58692          "200": {
58693            "description": "OK",
58694            "schema": {
58695              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58696            }
58697          },
58698          "401": {
58699            "description": "Unauthorized"
58700          }
58701        },
58702        "schemes": [
58703          "https"
58704        ],
58705        "tags": [
58706          "apps_v1beta2"
58707        ],
58708        "x-kubernetes-action": "patch",
58709        "x-kubernetes-group-version-kind": {
58710          "group": "apps",
58711          "kind": "ReplicaSet",
58712          "version": "v1beta2"
58713        }
58714      },
58715      "put": {
58716        "consumes": [
58717          "*/*"
58718        ],
58719        "description": "replace the specified ReplicaSet",
58720        "operationId": "replaceAppsV1beta2NamespacedReplicaSet",
58721        "parameters": [
58722          {
58723            "in": "body",
58724            "name": "body",
58725            "required": true,
58726            "schema": {
58727              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58728            }
58729          },
58730          {
58731            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58732            "in": "query",
58733            "name": "dryRun",
58734            "type": "string",
58735            "uniqueItems": true
58736          },
58737          {
58738            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58739            "in": "query",
58740            "name": "fieldManager",
58741            "type": "string",
58742            "uniqueItems": true
58743          }
58744        ],
58745        "produces": [
58746          "application/json",
58747          "application/yaml",
58748          "application/vnd.kubernetes.protobuf"
58749        ],
58750        "responses": {
58751          "200": {
58752            "description": "OK",
58753            "schema": {
58754              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58755            }
58756          },
58757          "201": {
58758            "description": "Created",
58759            "schema": {
58760              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58761            }
58762          },
58763          "401": {
58764            "description": "Unauthorized"
58765          }
58766        },
58767        "schemes": [
58768          "https"
58769        ],
58770        "tags": [
58771          "apps_v1beta2"
58772        ],
58773        "x-kubernetes-action": "put",
58774        "x-kubernetes-group-version-kind": {
58775          "group": "apps",
58776          "kind": "ReplicaSet",
58777          "version": "v1beta2"
58778        }
58779      }
58780    },
58781    "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale": {
58782      "get": {
58783        "consumes": [
58784          "*/*"
58785        ],
58786        "description": "read scale of the specified ReplicaSet",
58787        "operationId": "readAppsV1beta2NamespacedReplicaSetScale",
58788        "produces": [
58789          "application/json",
58790          "application/yaml",
58791          "application/vnd.kubernetes.protobuf"
58792        ],
58793        "responses": {
58794          "200": {
58795            "description": "OK",
58796            "schema": {
58797              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
58798            }
58799          },
58800          "401": {
58801            "description": "Unauthorized"
58802          }
58803        },
58804        "schemes": [
58805          "https"
58806        ],
58807        "tags": [
58808          "apps_v1beta2"
58809        ],
58810        "x-kubernetes-action": "get",
58811        "x-kubernetes-group-version-kind": {
58812          "group": "apps",
58813          "kind": "Scale",
58814          "version": "v1beta2"
58815        }
58816      },
58817      "parameters": [
58818        {
58819          "description": "name of the Scale",
58820          "in": "path",
58821          "name": "name",
58822          "required": true,
58823          "type": "string",
58824          "uniqueItems": true
58825        },
58826        {
58827          "description": "object name and auth scope, such as for teams and projects",
58828          "in": "path",
58829          "name": "namespace",
58830          "required": true,
58831          "type": "string",
58832          "uniqueItems": true
58833        },
58834        {
58835          "description": "If 'true', then the output is pretty printed.",
58836          "in": "query",
58837          "name": "pretty",
58838          "type": "string",
58839          "uniqueItems": true
58840        }
58841      ],
58842      "patch": {
58843        "consumes": [
58844          "application/json-patch+json",
58845          "application/merge-patch+json",
58846          "application/strategic-merge-patch+json"
58847        ],
58848        "description": "partially update scale of the specified ReplicaSet",
58849        "operationId": "patchAppsV1beta2NamespacedReplicaSetScale",
58850        "parameters": [
58851          {
58852            "in": "body",
58853            "name": "body",
58854            "required": true,
58855            "schema": {
58856              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
58857            }
58858          },
58859          {
58860            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58861            "in": "query",
58862            "name": "dryRun",
58863            "type": "string",
58864            "uniqueItems": true
58865          },
58866          {
58867            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
58868            "in": "query",
58869            "name": "fieldManager",
58870            "type": "string",
58871            "uniqueItems": true
58872          },
58873          {
58874            "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.",
58875            "in": "query",
58876            "name": "force",
58877            "type": "boolean",
58878            "uniqueItems": true
58879          }
58880        ],
58881        "produces": [
58882          "application/json",
58883          "application/yaml",
58884          "application/vnd.kubernetes.protobuf"
58885        ],
58886        "responses": {
58887          "200": {
58888            "description": "OK",
58889            "schema": {
58890              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
58891            }
58892          },
58893          "401": {
58894            "description": "Unauthorized"
58895          }
58896        },
58897        "schemes": [
58898          "https"
58899        ],
58900        "tags": [
58901          "apps_v1beta2"
58902        ],
58903        "x-kubernetes-action": "patch",
58904        "x-kubernetes-group-version-kind": {
58905          "group": "apps",
58906          "kind": "Scale",
58907          "version": "v1beta2"
58908        }
58909      },
58910      "put": {
58911        "consumes": [
58912          "*/*"
58913        ],
58914        "description": "replace scale of the specified ReplicaSet",
58915        "operationId": "replaceAppsV1beta2NamespacedReplicaSetScale",
58916        "parameters": [
58917          {
58918            "in": "body",
58919            "name": "body",
58920            "required": true,
58921            "schema": {
58922              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
58923            }
58924          },
58925          {
58926            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
58927            "in": "query",
58928            "name": "dryRun",
58929            "type": "string",
58930            "uniqueItems": true
58931          },
58932          {
58933            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
58934            "in": "query",
58935            "name": "fieldManager",
58936            "type": "string",
58937            "uniqueItems": true
58938          }
58939        ],
58940        "produces": [
58941          "application/json",
58942          "application/yaml",
58943          "application/vnd.kubernetes.protobuf"
58944        ],
58945        "responses": {
58946          "200": {
58947            "description": "OK",
58948            "schema": {
58949              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
58950            }
58951          },
58952          "201": {
58953            "description": "Created",
58954            "schema": {
58955              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
58956            }
58957          },
58958          "401": {
58959            "description": "Unauthorized"
58960          }
58961        },
58962        "schemes": [
58963          "https"
58964        ],
58965        "tags": [
58966          "apps_v1beta2"
58967        ],
58968        "x-kubernetes-action": "put",
58969        "x-kubernetes-group-version-kind": {
58970          "group": "apps",
58971          "kind": "Scale",
58972          "version": "v1beta2"
58973        }
58974      }
58975    },
58976    "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status": {
58977      "get": {
58978        "consumes": [
58979          "*/*"
58980        ],
58981        "description": "read status of the specified ReplicaSet",
58982        "operationId": "readAppsV1beta2NamespacedReplicaSetStatus",
58983        "produces": [
58984          "application/json",
58985          "application/yaml",
58986          "application/vnd.kubernetes.protobuf"
58987        ],
58988        "responses": {
58989          "200": {
58990            "description": "OK",
58991            "schema": {
58992              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
58993            }
58994          },
58995          "401": {
58996            "description": "Unauthorized"
58997          }
58998        },
58999        "schemes": [
59000          "https"
59001        ],
59002        "tags": [
59003          "apps_v1beta2"
59004        ],
59005        "x-kubernetes-action": "get",
59006        "x-kubernetes-group-version-kind": {
59007          "group": "apps",
59008          "kind": "ReplicaSet",
59009          "version": "v1beta2"
59010        }
59011      },
59012      "parameters": [
59013        {
59014          "description": "name of the ReplicaSet",
59015          "in": "path",
59016          "name": "name",
59017          "required": true,
59018          "type": "string",
59019          "uniqueItems": true
59020        },
59021        {
59022          "description": "object name and auth scope, such as for teams and projects",
59023          "in": "path",
59024          "name": "namespace",
59025          "required": true,
59026          "type": "string",
59027          "uniqueItems": true
59028        },
59029        {
59030          "description": "If 'true', then the output is pretty printed.",
59031          "in": "query",
59032          "name": "pretty",
59033          "type": "string",
59034          "uniqueItems": true
59035        }
59036      ],
59037      "patch": {
59038        "consumes": [
59039          "application/json-patch+json",
59040          "application/merge-patch+json",
59041          "application/strategic-merge-patch+json"
59042        ],
59043        "description": "partially update status of the specified ReplicaSet",
59044        "operationId": "patchAppsV1beta2NamespacedReplicaSetStatus",
59045        "parameters": [
59046          {
59047            "in": "body",
59048            "name": "body",
59049            "required": true,
59050            "schema": {
59051              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59052            }
59053          },
59054          {
59055            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59056            "in": "query",
59057            "name": "dryRun",
59058            "type": "string",
59059            "uniqueItems": true
59060          },
59061          {
59062            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
59063            "in": "query",
59064            "name": "fieldManager",
59065            "type": "string",
59066            "uniqueItems": true
59067          },
59068          {
59069            "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.",
59070            "in": "query",
59071            "name": "force",
59072            "type": "boolean",
59073            "uniqueItems": true
59074          }
59075        ],
59076        "produces": [
59077          "application/json",
59078          "application/yaml",
59079          "application/vnd.kubernetes.protobuf"
59080        ],
59081        "responses": {
59082          "200": {
59083            "description": "OK",
59084            "schema": {
59085              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
59086            }
59087          },
59088          "401": {
59089            "description": "Unauthorized"
59090          }
59091        },
59092        "schemes": [
59093          "https"
59094        ],
59095        "tags": [
59096          "apps_v1beta2"
59097        ],
59098        "x-kubernetes-action": "patch",
59099        "x-kubernetes-group-version-kind": {
59100          "group": "apps",
59101          "kind": "ReplicaSet",
59102          "version": "v1beta2"
59103        }
59104      },
59105      "put": {
59106        "consumes": [
59107          "*/*"
59108        ],
59109        "description": "replace status of the specified ReplicaSet",
59110        "operationId": "replaceAppsV1beta2NamespacedReplicaSetStatus",
59111        "parameters": [
59112          {
59113            "in": "body",
59114            "name": "body",
59115            "required": true,
59116            "schema": {
59117              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
59118            }
59119          },
59120          {
59121            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59122            "in": "query",
59123            "name": "dryRun",
59124            "type": "string",
59125            "uniqueItems": true
59126          },
59127          {
59128            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59129            "in": "query",
59130            "name": "fieldManager",
59131            "type": "string",
59132            "uniqueItems": true
59133          }
59134        ],
59135        "produces": [
59136          "application/json",
59137          "application/yaml",
59138          "application/vnd.kubernetes.protobuf"
59139        ],
59140        "responses": {
59141          "200": {
59142            "description": "OK",
59143            "schema": {
59144              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
59145            }
59146          },
59147          "201": {
59148            "description": "Created",
59149            "schema": {
59150              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet"
59151            }
59152          },
59153          "401": {
59154            "description": "Unauthorized"
59155          }
59156        },
59157        "schemes": [
59158          "https"
59159        ],
59160        "tags": [
59161          "apps_v1beta2"
59162        ],
59163        "x-kubernetes-action": "put",
59164        "x-kubernetes-group-version-kind": {
59165          "group": "apps",
59166          "kind": "ReplicaSet",
59167          "version": "v1beta2"
59168        }
59169      }
59170    },
59171    "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets": {
59172      "delete": {
59173        "consumes": [
59174          "*/*"
59175        ],
59176        "description": "delete collection of StatefulSet",
59177        "operationId": "deleteAppsV1beta2CollectionNamespacedStatefulSet",
59178        "parameters": [
59179          {
59180            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
59181            "in": "query",
59182            "name": "allowWatchBookmarks",
59183            "type": "boolean",
59184            "uniqueItems": true
59185          },
59186          {
59187            "in": "body",
59188            "name": "body",
59189            "schema": {
59190              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59191            }
59192          },
59193          {
59194            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59195            "in": "query",
59196            "name": "continue",
59197            "type": "string",
59198            "uniqueItems": true
59199          },
59200          {
59201            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59202            "in": "query",
59203            "name": "dryRun",
59204            "type": "string",
59205            "uniqueItems": true
59206          },
59207          {
59208            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59209            "in": "query",
59210            "name": "fieldSelector",
59211            "type": "string",
59212            "uniqueItems": true
59213          },
59214          {
59215            "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.",
59216            "in": "query",
59217            "name": "gracePeriodSeconds",
59218            "type": "integer",
59219            "uniqueItems": true
59220          },
59221          {
59222            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59223            "in": "query",
59224            "name": "labelSelector",
59225            "type": "string",
59226            "uniqueItems": true
59227          },
59228          {
59229            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59230            "in": "query",
59231            "name": "limit",
59232            "type": "integer",
59233            "uniqueItems": true
59234          },
59235          {
59236            "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.",
59237            "in": "query",
59238            "name": "orphanDependents",
59239            "type": "boolean",
59240            "uniqueItems": true
59241          },
59242          {
59243            "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.",
59244            "in": "query",
59245            "name": "propagationPolicy",
59246            "type": "string",
59247            "uniqueItems": true
59248          },
59249          {
59250            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
59251            "in": "query",
59252            "name": "resourceVersion",
59253            "type": "string",
59254            "uniqueItems": true
59255          },
59256          {
59257            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59258            "in": "query",
59259            "name": "timeoutSeconds",
59260            "type": "integer",
59261            "uniqueItems": true
59262          },
59263          {
59264            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59265            "in": "query",
59266            "name": "watch",
59267            "type": "boolean",
59268            "uniqueItems": true
59269          }
59270        ],
59271        "produces": [
59272          "application/json",
59273          "application/yaml",
59274          "application/vnd.kubernetes.protobuf"
59275        ],
59276        "responses": {
59277          "200": {
59278            "description": "OK",
59279            "schema": {
59280              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59281            }
59282          },
59283          "401": {
59284            "description": "Unauthorized"
59285          }
59286        },
59287        "schemes": [
59288          "https"
59289        ],
59290        "tags": [
59291          "apps_v1beta2"
59292        ],
59293        "x-kubernetes-action": "deletecollection",
59294        "x-kubernetes-group-version-kind": {
59295          "group": "apps",
59296          "kind": "StatefulSet",
59297          "version": "v1beta2"
59298        }
59299      },
59300      "get": {
59301        "consumes": [
59302          "*/*"
59303        ],
59304        "description": "list or watch objects of kind StatefulSet",
59305        "operationId": "listAppsV1beta2NamespacedStatefulSet",
59306        "parameters": [
59307          {
59308            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
59309            "in": "query",
59310            "name": "allowWatchBookmarks",
59311            "type": "boolean",
59312            "uniqueItems": true
59313          },
59314          {
59315            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
59316            "in": "query",
59317            "name": "continue",
59318            "type": "string",
59319            "uniqueItems": true
59320          },
59321          {
59322            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
59323            "in": "query",
59324            "name": "fieldSelector",
59325            "type": "string",
59326            "uniqueItems": true
59327          },
59328          {
59329            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
59330            "in": "query",
59331            "name": "labelSelector",
59332            "type": "string",
59333            "uniqueItems": true
59334          },
59335          {
59336            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
59337            "in": "query",
59338            "name": "limit",
59339            "type": "integer",
59340            "uniqueItems": true
59341          },
59342          {
59343            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
59344            "in": "query",
59345            "name": "resourceVersion",
59346            "type": "string",
59347            "uniqueItems": true
59348          },
59349          {
59350            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
59351            "in": "query",
59352            "name": "timeoutSeconds",
59353            "type": "integer",
59354            "uniqueItems": true
59355          },
59356          {
59357            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
59358            "in": "query",
59359            "name": "watch",
59360            "type": "boolean",
59361            "uniqueItems": true
59362          }
59363        ],
59364        "produces": [
59365          "application/json",
59366          "application/yaml",
59367          "application/vnd.kubernetes.protobuf",
59368          "application/json;stream=watch",
59369          "application/vnd.kubernetes.protobuf;stream=watch"
59370        ],
59371        "responses": {
59372          "200": {
59373            "description": "OK",
59374            "schema": {
59375              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetList"
59376            }
59377          },
59378          "401": {
59379            "description": "Unauthorized"
59380          }
59381        },
59382        "schemes": [
59383          "https"
59384        ],
59385        "tags": [
59386          "apps_v1beta2"
59387        ],
59388        "x-kubernetes-action": "list",
59389        "x-kubernetes-group-version-kind": {
59390          "group": "apps",
59391          "kind": "StatefulSet",
59392          "version": "v1beta2"
59393        }
59394      },
59395      "parameters": [
59396        {
59397          "description": "object name and auth scope, such as for teams and projects",
59398          "in": "path",
59399          "name": "namespace",
59400          "required": true,
59401          "type": "string",
59402          "uniqueItems": true
59403        },
59404        {
59405          "description": "If 'true', then the output is pretty printed.",
59406          "in": "query",
59407          "name": "pretty",
59408          "type": "string",
59409          "uniqueItems": true
59410        }
59411      ],
59412      "post": {
59413        "consumes": [
59414          "*/*"
59415        ],
59416        "description": "create a StatefulSet",
59417        "operationId": "createAppsV1beta2NamespacedStatefulSet",
59418        "parameters": [
59419          {
59420            "in": "body",
59421            "name": "body",
59422            "required": true,
59423            "schema": {
59424              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59425            }
59426          },
59427          {
59428            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59429            "in": "query",
59430            "name": "dryRun",
59431            "type": "string",
59432            "uniqueItems": true
59433          },
59434          {
59435            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59436            "in": "query",
59437            "name": "fieldManager",
59438            "type": "string",
59439            "uniqueItems": true
59440          }
59441        ],
59442        "produces": [
59443          "application/json",
59444          "application/yaml",
59445          "application/vnd.kubernetes.protobuf"
59446        ],
59447        "responses": {
59448          "200": {
59449            "description": "OK",
59450            "schema": {
59451              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59452            }
59453          },
59454          "201": {
59455            "description": "Created",
59456            "schema": {
59457              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59458            }
59459          },
59460          "202": {
59461            "description": "Accepted",
59462            "schema": {
59463              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59464            }
59465          },
59466          "401": {
59467            "description": "Unauthorized"
59468          }
59469        },
59470        "schemes": [
59471          "https"
59472        ],
59473        "tags": [
59474          "apps_v1beta2"
59475        ],
59476        "x-kubernetes-action": "post",
59477        "x-kubernetes-group-version-kind": {
59478          "group": "apps",
59479          "kind": "StatefulSet",
59480          "version": "v1beta2"
59481        }
59482      }
59483    },
59484    "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}": {
59485      "delete": {
59486        "consumes": [
59487          "*/*"
59488        ],
59489        "description": "delete a StatefulSet",
59490        "operationId": "deleteAppsV1beta2NamespacedStatefulSet",
59491        "parameters": [
59492          {
59493            "in": "body",
59494            "name": "body",
59495            "schema": {
59496              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
59497            }
59498          },
59499          {
59500            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59501            "in": "query",
59502            "name": "dryRun",
59503            "type": "string",
59504            "uniqueItems": true
59505          },
59506          {
59507            "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.",
59508            "in": "query",
59509            "name": "gracePeriodSeconds",
59510            "type": "integer",
59511            "uniqueItems": true
59512          },
59513          {
59514            "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.",
59515            "in": "query",
59516            "name": "orphanDependents",
59517            "type": "boolean",
59518            "uniqueItems": true
59519          },
59520          {
59521            "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.",
59522            "in": "query",
59523            "name": "propagationPolicy",
59524            "type": "string",
59525            "uniqueItems": true
59526          }
59527        ],
59528        "produces": [
59529          "application/json",
59530          "application/yaml",
59531          "application/vnd.kubernetes.protobuf"
59532        ],
59533        "responses": {
59534          "200": {
59535            "description": "OK",
59536            "schema": {
59537              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59538            }
59539          },
59540          "202": {
59541            "description": "Accepted",
59542            "schema": {
59543              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
59544            }
59545          },
59546          "401": {
59547            "description": "Unauthorized"
59548          }
59549        },
59550        "schemes": [
59551          "https"
59552        ],
59553        "tags": [
59554          "apps_v1beta2"
59555        ],
59556        "x-kubernetes-action": "delete",
59557        "x-kubernetes-group-version-kind": {
59558          "group": "apps",
59559          "kind": "StatefulSet",
59560          "version": "v1beta2"
59561        }
59562      },
59563      "get": {
59564        "consumes": [
59565          "*/*"
59566        ],
59567        "description": "read the specified StatefulSet",
59568        "operationId": "readAppsV1beta2NamespacedStatefulSet",
59569        "parameters": [
59570          {
59571            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
59572            "in": "query",
59573            "name": "exact",
59574            "type": "boolean",
59575            "uniqueItems": true
59576          },
59577          {
59578            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
59579            "in": "query",
59580            "name": "export",
59581            "type": "boolean",
59582            "uniqueItems": true
59583          }
59584        ],
59585        "produces": [
59586          "application/json",
59587          "application/yaml",
59588          "application/vnd.kubernetes.protobuf"
59589        ],
59590        "responses": {
59591          "200": {
59592            "description": "OK",
59593            "schema": {
59594              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59595            }
59596          },
59597          "401": {
59598            "description": "Unauthorized"
59599          }
59600        },
59601        "schemes": [
59602          "https"
59603        ],
59604        "tags": [
59605          "apps_v1beta2"
59606        ],
59607        "x-kubernetes-action": "get",
59608        "x-kubernetes-group-version-kind": {
59609          "group": "apps",
59610          "kind": "StatefulSet",
59611          "version": "v1beta2"
59612        }
59613      },
59614      "parameters": [
59615        {
59616          "description": "name of the StatefulSet",
59617          "in": "path",
59618          "name": "name",
59619          "required": true,
59620          "type": "string",
59621          "uniqueItems": true
59622        },
59623        {
59624          "description": "object name and auth scope, such as for teams and projects",
59625          "in": "path",
59626          "name": "namespace",
59627          "required": true,
59628          "type": "string",
59629          "uniqueItems": true
59630        },
59631        {
59632          "description": "If 'true', then the output is pretty printed.",
59633          "in": "query",
59634          "name": "pretty",
59635          "type": "string",
59636          "uniqueItems": true
59637        }
59638      ],
59639      "patch": {
59640        "consumes": [
59641          "application/json-patch+json",
59642          "application/merge-patch+json",
59643          "application/strategic-merge-patch+json"
59644        ],
59645        "description": "partially update the specified StatefulSet",
59646        "operationId": "patchAppsV1beta2NamespacedStatefulSet",
59647        "parameters": [
59648          {
59649            "in": "body",
59650            "name": "body",
59651            "required": true,
59652            "schema": {
59653              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59654            }
59655          },
59656          {
59657            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59658            "in": "query",
59659            "name": "dryRun",
59660            "type": "string",
59661            "uniqueItems": true
59662          },
59663          {
59664            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
59665            "in": "query",
59666            "name": "fieldManager",
59667            "type": "string",
59668            "uniqueItems": true
59669          },
59670          {
59671            "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.",
59672            "in": "query",
59673            "name": "force",
59674            "type": "boolean",
59675            "uniqueItems": true
59676          }
59677        ],
59678        "produces": [
59679          "application/json",
59680          "application/yaml",
59681          "application/vnd.kubernetes.protobuf"
59682        ],
59683        "responses": {
59684          "200": {
59685            "description": "OK",
59686            "schema": {
59687              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59688            }
59689          },
59690          "401": {
59691            "description": "Unauthorized"
59692          }
59693        },
59694        "schemes": [
59695          "https"
59696        ],
59697        "tags": [
59698          "apps_v1beta2"
59699        ],
59700        "x-kubernetes-action": "patch",
59701        "x-kubernetes-group-version-kind": {
59702          "group": "apps",
59703          "kind": "StatefulSet",
59704          "version": "v1beta2"
59705        }
59706      },
59707      "put": {
59708        "consumes": [
59709          "*/*"
59710        ],
59711        "description": "replace the specified StatefulSet",
59712        "operationId": "replaceAppsV1beta2NamespacedStatefulSet",
59713        "parameters": [
59714          {
59715            "in": "body",
59716            "name": "body",
59717            "required": true,
59718            "schema": {
59719              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59720            }
59721          },
59722          {
59723            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59724            "in": "query",
59725            "name": "dryRun",
59726            "type": "string",
59727            "uniqueItems": true
59728          },
59729          {
59730            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59731            "in": "query",
59732            "name": "fieldManager",
59733            "type": "string",
59734            "uniqueItems": true
59735          }
59736        ],
59737        "produces": [
59738          "application/json",
59739          "application/yaml",
59740          "application/vnd.kubernetes.protobuf"
59741        ],
59742        "responses": {
59743          "200": {
59744            "description": "OK",
59745            "schema": {
59746              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59747            }
59748          },
59749          "201": {
59750            "description": "Created",
59751            "schema": {
59752              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59753            }
59754          },
59755          "401": {
59756            "description": "Unauthorized"
59757          }
59758        },
59759        "schemes": [
59760          "https"
59761        ],
59762        "tags": [
59763          "apps_v1beta2"
59764        ],
59765        "x-kubernetes-action": "put",
59766        "x-kubernetes-group-version-kind": {
59767          "group": "apps",
59768          "kind": "StatefulSet",
59769          "version": "v1beta2"
59770        }
59771      }
59772    },
59773    "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale": {
59774      "get": {
59775        "consumes": [
59776          "*/*"
59777        ],
59778        "description": "read scale of the specified StatefulSet",
59779        "operationId": "readAppsV1beta2NamespacedStatefulSetScale",
59780        "produces": [
59781          "application/json",
59782          "application/yaml",
59783          "application/vnd.kubernetes.protobuf"
59784        ],
59785        "responses": {
59786          "200": {
59787            "description": "OK",
59788            "schema": {
59789              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
59790            }
59791          },
59792          "401": {
59793            "description": "Unauthorized"
59794          }
59795        },
59796        "schemes": [
59797          "https"
59798        ],
59799        "tags": [
59800          "apps_v1beta2"
59801        ],
59802        "x-kubernetes-action": "get",
59803        "x-kubernetes-group-version-kind": {
59804          "group": "apps",
59805          "kind": "Scale",
59806          "version": "v1beta2"
59807        }
59808      },
59809      "parameters": [
59810        {
59811          "description": "name of the Scale",
59812          "in": "path",
59813          "name": "name",
59814          "required": true,
59815          "type": "string",
59816          "uniqueItems": true
59817        },
59818        {
59819          "description": "object name and auth scope, such as for teams and projects",
59820          "in": "path",
59821          "name": "namespace",
59822          "required": true,
59823          "type": "string",
59824          "uniqueItems": true
59825        },
59826        {
59827          "description": "If 'true', then the output is pretty printed.",
59828          "in": "query",
59829          "name": "pretty",
59830          "type": "string",
59831          "uniqueItems": true
59832        }
59833      ],
59834      "patch": {
59835        "consumes": [
59836          "application/json-patch+json",
59837          "application/merge-patch+json",
59838          "application/strategic-merge-patch+json"
59839        ],
59840        "description": "partially update scale of the specified StatefulSet",
59841        "operationId": "patchAppsV1beta2NamespacedStatefulSetScale",
59842        "parameters": [
59843          {
59844            "in": "body",
59845            "name": "body",
59846            "required": true,
59847            "schema": {
59848              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
59849            }
59850          },
59851          {
59852            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59853            "in": "query",
59854            "name": "dryRun",
59855            "type": "string",
59856            "uniqueItems": true
59857          },
59858          {
59859            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
59860            "in": "query",
59861            "name": "fieldManager",
59862            "type": "string",
59863            "uniqueItems": true
59864          },
59865          {
59866            "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.",
59867            "in": "query",
59868            "name": "force",
59869            "type": "boolean",
59870            "uniqueItems": true
59871          }
59872        ],
59873        "produces": [
59874          "application/json",
59875          "application/yaml",
59876          "application/vnd.kubernetes.protobuf"
59877        ],
59878        "responses": {
59879          "200": {
59880            "description": "OK",
59881            "schema": {
59882              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
59883            }
59884          },
59885          "401": {
59886            "description": "Unauthorized"
59887          }
59888        },
59889        "schemes": [
59890          "https"
59891        ],
59892        "tags": [
59893          "apps_v1beta2"
59894        ],
59895        "x-kubernetes-action": "patch",
59896        "x-kubernetes-group-version-kind": {
59897          "group": "apps",
59898          "kind": "Scale",
59899          "version": "v1beta2"
59900        }
59901      },
59902      "put": {
59903        "consumes": [
59904          "*/*"
59905        ],
59906        "description": "replace scale of the specified StatefulSet",
59907        "operationId": "replaceAppsV1beta2NamespacedStatefulSetScale",
59908        "parameters": [
59909          {
59910            "in": "body",
59911            "name": "body",
59912            "required": true,
59913            "schema": {
59914              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
59915            }
59916          },
59917          {
59918            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
59919            "in": "query",
59920            "name": "dryRun",
59921            "type": "string",
59922            "uniqueItems": true
59923          },
59924          {
59925            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
59926            "in": "query",
59927            "name": "fieldManager",
59928            "type": "string",
59929            "uniqueItems": true
59930          }
59931        ],
59932        "produces": [
59933          "application/json",
59934          "application/yaml",
59935          "application/vnd.kubernetes.protobuf"
59936        ],
59937        "responses": {
59938          "200": {
59939            "description": "OK",
59940            "schema": {
59941              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
59942            }
59943          },
59944          "201": {
59945            "description": "Created",
59946            "schema": {
59947              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale"
59948            }
59949          },
59950          "401": {
59951            "description": "Unauthorized"
59952          }
59953        },
59954        "schemes": [
59955          "https"
59956        ],
59957        "tags": [
59958          "apps_v1beta2"
59959        ],
59960        "x-kubernetes-action": "put",
59961        "x-kubernetes-group-version-kind": {
59962          "group": "apps",
59963          "kind": "Scale",
59964          "version": "v1beta2"
59965        }
59966      }
59967    },
59968    "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status": {
59969      "get": {
59970        "consumes": [
59971          "*/*"
59972        ],
59973        "description": "read status of the specified StatefulSet",
59974        "operationId": "readAppsV1beta2NamespacedStatefulSetStatus",
59975        "produces": [
59976          "application/json",
59977          "application/yaml",
59978          "application/vnd.kubernetes.protobuf"
59979        ],
59980        "responses": {
59981          "200": {
59982            "description": "OK",
59983            "schema": {
59984              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
59985            }
59986          },
59987          "401": {
59988            "description": "Unauthorized"
59989          }
59990        },
59991        "schemes": [
59992          "https"
59993        ],
59994        "tags": [
59995          "apps_v1beta2"
59996        ],
59997        "x-kubernetes-action": "get",
59998        "x-kubernetes-group-version-kind": {
59999          "group": "apps",
60000          "kind": "StatefulSet",
60001          "version": "v1beta2"
60002        }
60003      },
60004      "parameters": [
60005        {
60006          "description": "name of the StatefulSet",
60007          "in": "path",
60008          "name": "name",
60009          "required": true,
60010          "type": "string",
60011          "uniqueItems": true
60012        },
60013        {
60014          "description": "object name and auth scope, such as for teams and projects",
60015          "in": "path",
60016          "name": "namespace",
60017          "required": true,
60018          "type": "string",
60019          "uniqueItems": true
60020        },
60021        {
60022          "description": "If 'true', then the output is pretty printed.",
60023          "in": "query",
60024          "name": "pretty",
60025          "type": "string",
60026          "uniqueItems": true
60027        }
60028      ],
60029      "patch": {
60030        "consumes": [
60031          "application/json-patch+json",
60032          "application/merge-patch+json",
60033          "application/strategic-merge-patch+json"
60034        ],
60035        "description": "partially update status of the specified StatefulSet",
60036        "operationId": "patchAppsV1beta2NamespacedStatefulSetStatus",
60037        "parameters": [
60038          {
60039            "in": "body",
60040            "name": "body",
60041            "required": true,
60042            "schema": {
60043              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
60044            }
60045          },
60046          {
60047            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60048            "in": "query",
60049            "name": "dryRun",
60050            "type": "string",
60051            "uniqueItems": true
60052          },
60053          {
60054            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
60055            "in": "query",
60056            "name": "fieldManager",
60057            "type": "string",
60058            "uniqueItems": true
60059          },
60060          {
60061            "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.",
60062            "in": "query",
60063            "name": "force",
60064            "type": "boolean",
60065            "uniqueItems": true
60066          }
60067        ],
60068        "produces": [
60069          "application/json",
60070          "application/yaml",
60071          "application/vnd.kubernetes.protobuf"
60072        ],
60073        "responses": {
60074          "200": {
60075            "description": "OK",
60076            "schema": {
60077              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
60078            }
60079          },
60080          "401": {
60081            "description": "Unauthorized"
60082          }
60083        },
60084        "schemes": [
60085          "https"
60086        ],
60087        "tags": [
60088          "apps_v1beta2"
60089        ],
60090        "x-kubernetes-action": "patch",
60091        "x-kubernetes-group-version-kind": {
60092          "group": "apps",
60093          "kind": "StatefulSet",
60094          "version": "v1beta2"
60095        }
60096      },
60097      "put": {
60098        "consumes": [
60099          "*/*"
60100        ],
60101        "description": "replace status of the specified StatefulSet",
60102        "operationId": "replaceAppsV1beta2NamespacedStatefulSetStatus",
60103        "parameters": [
60104          {
60105            "in": "body",
60106            "name": "body",
60107            "required": true,
60108            "schema": {
60109              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
60110            }
60111          },
60112          {
60113            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
60114            "in": "query",
60115            "name": "dryRun",
60116            "type": "string",
60117            "uniqueItems": true
60118          },
60119          {
60120            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
60121            "in": "query",
60122            "name": "fieldManager",
60123            "type": "string",
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.api.apps.v1beta2.StatefulSet"
60137            }
60138          },
60139          "201": {
60140            "description": "Created",
60141            "schema": {
60142              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet"
60143            }
60144          },
60145          "401": {
60146            "description": "Unauthorized"
60147          }
60148        },
60149        "schemes": [
60150          "https"
60151        ],
60152        "tags": [
60153          "apps_v1beta2"
60154        ],
60155        "x-kubernetes-action": "put",
60156        "x-kubernetes-group-version-kind": {
60157          "group": "apps",
60158          "kind": "StatefulSet",
60159          "version": "v1beta2"
60160        }
60161      }
60162    },
60163    "/apis/apps/v1beta2/replicasets": {
60164      "get": {
60165        "consumes": [
60166          "*/*"
60167        ],
60168        "description": "list or watch objects of kind ReplicaSet",
60169        "operationId": "listAppsV1beta2ReplicaSetForAllNamespaces",
60170        "produces": [
60171          "application/json",
60172          "application/yaml",
60173          "application/vnd.kubernetes.protobuf",
60174          "application/json;stream=watch",
60175          "application/vnd.kubernetes.protobuf;stream=watch"
60176        ],
60177        "responses": {
60178          "200": {
60179            "description": "OK",
60180            "schema": {
60181              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetList"
60182            }
60183          },
60184          "401": {
60185            "description": "Unauthorized"
60186          }
60187        },
60188        "schemes": [
60189          "https"
60190        ],
60191        "tags": [
60192          "apps_v1beta2"
60193        ],
60194        "x-kubernetes-action": "list",
60195        "x-kubernetes-group-version-kind": {
60196          "group": "apps",
60197          "kind": "ReplicaSet",
60198          "version": "v1beta2"
60199        }
60200      },
60201      "parameters": [
60202        {
60203          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60204          "in": "query",
60205          "name": "allowWatchBookmarks",
60206          "type": "boolean",
60207          "uniqueItems": true
60208        },
60209        {
60210          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60211          "in": "query",
60212          "name": "continue",
60213          "type": "string",
60214          "uniqueItems": true
60215        },
60216        {
60217          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60218          "in": "query",
60219          "name": "fieldSelector",
60220          "type": "string",
60221          "uniqueItems": true
60222        },
60223        {
60224          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60225          "in": "query",
60226          "name": "labelSelector",
60227          "type": "string",
60228          "uniqueItems": true
60229        },
60230        {
60231          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60232          "in": "query",
60233          "name": "limit",
60234          "type": "integer",
60235          "uniqueItems": true
60236        },
60237        {
60238          "description": "If 'true', then the output is pretty printed.",
60239          "in": "query",
60240          "name": "pretty",
60241          "type": "string",
60242          "uniqueItems": true
60243        },
60244        {
60245          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60246          "in": "query",
60247          "name": "resourceVersion",
60248          "type": "string",
60249          "uniqueItems": true
60250        },
60251        {
60252          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60253          "in": "query",
60254          "name": "timeoutSeconds",
60255          "type": "integer",
60256          "uniqueItems": true
60257        },
60258        {
60259          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60260          "in": "query",
60261          "name": "watch",
60262          "type": "boolean",
60263          "uniqueItems": true
60264        }
60265      ]
60266    },
60267    "/apis/apps/v1beta2/statefulsets": {
60268      "get": {
60269        "consumes": [
60270          "*/*"
60271        ],
60272        "description": "list or watch objects of kind StatefulSet",
60273        "operationId": "listAppsV1beta2StatefulSetForAllNamespaces",
60274        "produces": [
60275          "application/json",
60276          "application/yaml",
60277          "application/vnd.kubernetes.protobuf",
60278          "application/json;stream=watch",
60279          "application/vnd.kubernetes.protobuf;stream=watch"
60280        ],
60281        "responses": {
60282          "200": {
60283            "description": "OK",
60284            "schema": {
60285              "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSetList"
60286            }
60287          },
60288          "401": {
60289            "description": "Unauthorized"
60290          }
60291        },
60292        "schemes": [
60293          "https"
60294        ],
60295        "tags": [
60296          "apps_v1beta2"
60297        ],
60298        "x-kubernetes-action": "list",
60299        "x-kubernetes-group-version-kind": {
60300          "group": "apps",
60301          "kind": "StatefulSet",
60302          "version": "v1beta2"
60303        }
60304      },
60305      "parameters": [
60306        {
60307          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60308          "in": "query",
60309          "name": "allowWatchBookmarks",
60310          "type": "boolean",
60311          "uniqueItems": true
60312        },
60313        {
60314          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60315          "in": "query",
60316          "name": "continue",
60317          "type": "string",
60318          "uniqueItems": true
60319        },
60320        {
60321          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60322          "in": "query",
60323          "name": "fieldSelector",
60324          "type": "string",
60325          "uniqueItems": true
60326        },
60327        {
60328          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60329          "in": "query",
60330          "name": "labelSelector",
60331          "type": "string",
60332          "uniqueItems": true
60333        },
60334        {
60335          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60336          "in": "query",
60337          "name": "limit",
60338          "type": "integer",
60339          "uniqueItems": true
60340        },
60341        {
60342          "description": "If 'true', then the output is pretty printed.",
60343          "in": "query",
60344          "name": "pretty",
60345          "type": "string",
60346          "uniqueItems": true
60347        },
60348        {
60349          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60350          "in": "query",
60351          "name": "resourceVersion",
60352          "type": "string",
60353          "uniqueItems": true
60354        },
60355        {
60356          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60357          "in": "query",
60358          "name": "timeoutSeconds",
60359          "type": "integer",
60360          "uniqueItems": true
60361        },
60362        {
60363          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60364          "in": "query",
60365          "name": "watch",
60366          "type": "boolean",
60367          "uniqueItems": true
60368        }
60369      ]
60370    },
60371    "/apis/apps/v1beta2/watch/controllerrevisions": {
60372      "get": {
60373        "consumes": [
60374          "*/*"
60375        ],
60376        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
60377        "operationId": "watchAppsV1beta2ControllerRevisionListForAllNamespaces",
60378        "produces": [
60379          "application/json",
60380          "application/yaml",
60381          "application/vnd.kubernetes.protobuf",
60382          "application/json;stream=watch",
60383          "application/vnd.kubernetes.protobuf;stream=watch"
60384        ],
60385        "responses": {
60386          "200": {
60387            "description": "OK",
60388            "schema": {
60389              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60390            }
60391          },
60392          "401": {
60393            "description": "Unauthorized"
60394          }
60395        },
60396        "schemes": [
60397          "https"
60398        ],
60399        "tags": [
60400          "apps_v1beta2"
60401        ],
60402        "x-kubernetes-action": "watchlist",
60403        "x-kubernetes-group-version-kind": {
60404          "group": "apps",
60405          "kind": "ControllerRevision",
60406          "version": "v1beta2"
60407        }
60408      },
60409      "parameters": [
60410        {
60411          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60412          "in": "query",
60413          "name": "allowWatchBookmarks",
60414          "type": "boolean",
60415          "uniqueItems": true
60416        },
60417        {
60418          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60419          "in": "query",
60420          "name": "continue",
60421          "type": "string",
60422          "uniqueItems": true
60423        },
60424        {
60425          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60426          "in": "query",
60427          "name": "fieldSelector",
60428          "type": "string",
60429          "uniqueItems": true
60430        },
60431        {
60432          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60433          "in": "query",
60434          "name": "labelSelector",
60435          "type": "string",
60436          "uniqueItems": true
60437        },
60438        {
60439          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60440          "in": "query",
60441          "name": "limit",
60442          "type": "integer",
60443          "uniqueItems": true
60444        },
60445        {
60446          "description": "If 'true', then the output is pretty printed.",
60447          "in": "query",
60448          "name": "pretty",
60449          "type": "string",
60450          "uniqueItems": true
60451        },
60452        {
60453          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60454          "in": "query",
60455          "name": "resourceVersion",
60456          "type": "string",
60457          "uniqueItems": true
60458        },
60459        {
60460          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60461          "in": "query",
60462          "name": "timeoutSeconds",
60463          "type": "integer",
60464          "uniqueItems": true
60465        },
60466        {
60467          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60468          "in": "query",
60469          "name": "watch",
60470          "type": "boolean",
60471          "uniqueItems": true
60472        }
60473      ]
60474    },
60475    "/apis/apps/v1beta2/watch/daemonsets": {
60476      "get": {
60477        "consumes": [
60478          "*/*"
60479        ],
60480        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
60481        "operationId": "watchAppsV1beta2DaemonSetListForAllNamespaces",
60482        "produces": [
60483          "application/json",
60484          "application/yaml",
60485          "application/vnd.kubernetes.protobuf",
60486          "application/json;stream=watch",
60487          "application/vnd.kubernetes.protobuf;stream=watch"
60488        ],
60489        "responses": {
60490          "200": {
60491            "description": "OK",
60492            "schema": {
60493              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60494            }
60495          },
60496          "401": {
60497            "description": "Unauthorized"
60498          }
60499        },
60500        "schemes": [
60501          "https"
60502        ],
60503        "tags": [
60504          "apps_v1beta2"
60505        ],
60506        "x-kubernetes-action": "watchlist",
60507        "x-kubernetes-group-version-kind": {
60508          "group": "apps",
60509          "kind": "DaemonSet",
60510          "version": "v1beta2"
60511        }
60512      },
60513      "parameters": [
60514        {
60515          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60516          "in": "query",
60517          "name": "allowWatchBookmarks",
60518          "type": "boolean",
60519          "uniqueItems": true
60520        },
60521        {
60522          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60523          "in": "query",
60524          "name": "continue",
60525          "type": "string",
60526          "uniqueItems": true
60527        },
60528        {
60529          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60530          "in": "query",
60531          "name": "fieldSelector",
60532          "type": "string",
60533          "uniqueItems": true
60534        },
60535        {
60536          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60537          "in": "query",
60538          "name": "labelSelector",
60539          "type": "string",
60540          "uniqueItems": true
60541        },
60542        {
60543          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60544          "in": "query",
60545          "name": "limit",
60546          "type": "integer",
60547          "uniqueItems": true
60548        },
60549        {
60550          "description": "If 'true', then the output is pretty printed.",
60551          "in": "query",
60552          "name": "pretty",
60553          "type": "string",
60554          "uniqueItems": true
60555        },
60556        {
60557          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60558          "in": "query",
60559          "name": "resourceVersion",
60560          "type": "string",
60561          "uniqueItems": true
60562        },
60563        {
60564          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60565          "in": "query",
60566          "name": "timeoutSeconds",
60567          "type": "integer",
60568          "uniqueItems": true
60569        },
60570        {
60571          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60572          "in": "query",
60573          "name": "watch",
60574          "type": "boolean",
60575          "uniqueItems": true
60576        }
60577      ]
60578    },
60579    "/apis/apps/v1beta2/watch/deployments": {
60580      "get": {
60581        "consumes": [
60582          "*/*"
60583        ],
60584        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
60585        "operationId": "watchAppsV1beta2DeploymentListForAllNamespaces",
60586        "produces": [
60587          "application/json",
60588          "application/yaml",
60589          "application/vnd.kubernetes.protobuf",
60590          "application/json;stream=watch",
60591          "application/vnd.kubernetes.protobuf;stream=watch"
60592        ],
60593        "responses": {
60594          "200": {
60595            "description": "OK",
60596            "schema": {
60597              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60598            }
60599          },
60600          "401": {
60601            "description": "Unauthorized"
60602          }
60603        },
60604        "schemes": [
60605          "https"
60606        ],
60607        "tags": [
60608          "apps_v1beta2"
60609        ],
60610        "x-kubernetes-action": "watchlist",
60611        "x-kubernetes-group-version-kind": {
60612          "group": "apps",
60613          "kind": "Deployment",
60614          "version": "v1beta2"
60615        }
60616      },
60617      "parameters": [
60618        {
60619          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60620          "in": "query",
60621          "name": "allowWatchBookmarks",
60622          "type": "boolean",
60623          "uniqueItems": true
60624        },
60625        {
60626          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60627          "in": "query",
60628          "name": "continue",
60629          "type": "string",
60630          "uniqueItems": true
60631        },
60632        {
60633          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60634          "in": "query",
60635          "name": "fieldSelector",
60636          "type": "string",
60637          "uniqueItems": true
60638        },
60639        {
60640          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60641          "in": "query",
60642          "name": "labelSelector",
60643          "type": "string",
60644          "uniqueItems": true
60645        },
60646        {
60647          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60648          "in": "query",
60649          "name": "limit",
60650          "type": "integer",
60651          "uniqueItems": true
60652        },
60653        {
60654          "description": "If 'true', then the output is pretty printed.",
60655          "in": "query",
60656          "name": "pretty",
60657          "type": "string",
60658          "uniqueItems": true
60659        },
60660        {
60661          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60662          "in": "query",
60663          "name": "resourceVersion",
60664          "type": "string",
60665          "uniqueItems": true
60666        },
60667        {
60668          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60669          "in": "query",
60670          "name": "timeoutSeconds",
60671          "type": "integer",
60672          "uniqueItems": true
60673        },
60674        {
60675          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60676          "in": "query",
60677          "name": "watch",
60678          "type": "boolean",
60679          "uniqueItems": true
60680        }
60681      ]
60682    },
60683    "/apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions": {
60684      "get": {
60685        "consumes": [
60686          "*/*"
60687        ],
60688        "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.",
60689        "operationId": "watchAppsV1beta2NamespacedControllerRevisionList",
60690        "produces": [
60691          "application/json",
60692          "application/yaml",
60693          "application/vnd.kubernetes.protobuf",
60694          "application/json;stream=watch",
60695          "application/vnd.kubernetes.protobuf;stream=watch"
60696        ],
60697        "responses": {
60698          "200": {
60699            "description": "OK",
60700            "schema": {
60701              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60702            }
60703          },
60704          "401": {
60705            "description": "Unauthorized"
60706          }
60707        },
60708        "schemes": [
60709          "https"
60710        ],
60711        "tags": [
60712          "apps_v1beta2"
60713        ],
60714        "x-kubernetes-action": "watchlist",
60715        "x-kubernetes-group-version-kind": {
60716          "group": "apps",
60717          "kind": "ControllerRevision",
60718          "version": "v1beta2"
60719        }
60720      },
60721      "parameters": [
60722        {
60723          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60724          "in": "query",
60725          "name": "allowWatchBookmarks",
60726          "type": "boolean",
60727          "uniqueItems": true
60728        },
60729        {
60730          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60731          "in": "query",
60732          "name": "continue",
60733          "type": "string",
60734          "uniqueItems": true
60735        },
60736        {
60737          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60738          "in": "query",
60739          "name": "fieldSelector",
60740          "type": "string",
60741          "uniqueItems": true
60742        },
60743        {
60744          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60745          "in": "query",
60746          "name": "labelSelector",
60747          "type": "string",
60748          "uniqueItems": true
60749        },
60750        {
60751          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60752          "in": "query",
60753          "name": "limit",
60754          "type": "integer",
60755          "uniqueItems": true
60756        },
60757        {
60758          "description": "object name and auth scope, such as for teams and projects",
60759          "in": "path",
60760          "name": "namespace",
60761          "required": true,
60762          "type": "string",
60763          "uniqueItems": true
60764        },
60765        {
60766          "description": "If 'true', then the output is pretty printed.",
60767          "in": "query",
60768          "name": "pretty",
60769          "type": "string",
60770          "uniqueItems": true
60771        },
60772        {
60773          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60774          "in": "query",
60775          "name": "resourceVersion",
60776          "type": "string",
60777          "uniqueItems": true
60778        },
60779        {
60780          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60781          "in": "query",
60782          "name": "timeoutSeconds",
60783          "type": "integer",
60784          "uniqueItems": true
60785        },
60786        {
60787          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60788          "in": "query",
60789          "name": "watch",
60790          "type": "boolean",
60791          "uniqueItems": true
60792        }
60793      ]
60794    },
60795    "/apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions/{name}": {
60796      "get": {
60797        "consumes": [
60798          "*/*"
60799        ],
60800        "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.",
60801        "operationId": "watchAppsV1beta2NamespacedControllerRevision",
60802        "produces": [
60803          "application/json",
60804          "application/yaml",
60805          "application/vnd.kubernetes.protobuf",
60806          "application/json;stream=watch",
60807          "application/vnd.kubernetes.protobuf;stream=watch"
60808        ],
60809        "responses": {
60810          "200": {
60811            "description": "OK",
60812            "schema": {
60813              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60814            }
60815          },
60816          "401": {
60817            "description": "Unauthorized"
60818          }
60819        },
60820        "schemes": [
60821          "https"
60822        ],
60823        "tags": [
60824          "apps_v1beta2"
60825        ],
60826        "x-kubernetes-action": "watch",
60827        "x-kubernetes-group-version-kind": {
60828          "group": "apps",
60829          "kind": "ControllerRevision",
60830          "version": "v1beta2"
60831        }
60832      },
60833      "parameters": [
60834        {
60835          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60836          "in": "query",
60837          "name": "allowWatchBookmarks",
60838          "type": "boolean",
60839          "uniqueItems": true
60840        },
60841        {
60842          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60843          "in": "query",
60844          "name": "continue",
60845          "type": "string",
60846          "uniqueItems": true
60847        },
60848        {
60849          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60850          "in": "query",
60851          "name": "fieldSelector",
60852          "type": "string",
60853          "uniqueItems": true
60854        },
60855        {
60856          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60857          "in": "query",
60858          "name": "labelSelector",
60859          "type": "string",
60860          "uniqueItems": true
60861        },
60862        {
60863          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60864          "in": "query",
60865          "name": "limit",
60866          "type": "integer",
60867          "uniqueItems": true
60868        },
60869        {
60870          "description": "name of the ControllerRevision",
60871          "in": "path",
60872          "name": "name",
60873          "required": true,
60874          "type": "string",
60875          "uniqueItems": true
60876        },
60877        {
60878          "description": "object name and auth scope, such as for teams and projects",
60879          "in": "path",
60880          "name": "namespace",
60881          "required": true,
60882          "type": "string",
60883          "uniqueItems": true
60884        },
60885        {
60886          "description": "If 'true', then the output is pretty printed.",
60887          "in": "query",
60888          "name": "pretty",
60889          "type": "string",
60890          "uniqueItems": true
60891        },
60892        {
60893          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
60894          "in": "query",
60895          "name": "resourceVersion",
60896          "type": "string",
60897          "uniqueItems": true
60898        },
60899        {
60900          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
60901          "in": "query",
60902          "name": "timeoutSeconds",
60903          "type": "integer",
60904          "uniqueItems": true
60905        },
60906        {
60907          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
60908          "in": "query",
60909          "name": "watch",
60910          "type": "boolean",
60911          "uniqueItems": true
60912        }
60913      ]
60914    },
60915    "/apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets": {
60916      "get": {
60917        "consumes": [
60918          "*/*"
60919        ],
60920        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
60921        "operationId": "watchAppsV1beta2NamespacedDaemonSetList",
60922        "produces": [
60923          "application/json",
60924          "application/yaml",
60925          "application/vnd.kubernetes.protobuf",
60926          "application/json;stream=watch",
60927          "application/vnd.kubernetes.protobuf;stream=watch"
60928        ],
60929        "responses": {
60930          "200": {
60931            "description": "OK",
60932            "schema": {
60933              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
60934            }
60935          },
60936          "401": {
60937            "description": "Unauthorized"
60938          }
60939        },
60940        "schemes": [
60941          "https"
60942        ],
60943        "tags": [
60944          "apps_v1beta2"
60945        ],
60946        "x-kubernetes-action": "watchlist",
60947        "x-kubernetes-group-version-kind": {
60948          "group": "apps",
60949          "kind": "DaemonSet",
60950          "version": "v1beta2"
60951        }
60952      },
60953      "parameters": [
60954        {
60955          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
60956          "in": "query",
60957          "name": "allowWatchBookmarks",
60958          "type": "boolean",
60959          "uniqueItems": true
60960        },
60961        {
60962          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
60963          "in": "query",
60964          "name": "continue",
60965          "type": "string",
60966          "uniqueItems": true
60967        },
60968        {
60969          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
60970          "in": "query",
60971          "name": "fieldSelector",
60972          "type": "string",
60973          "uniqueItems": true
60974        },
60975        {
60976          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
60977          "in": "query",
60978          "name": "labelSelector",
60979          "type": "string",
60980          "uniqueItems": true
60981        },
60982        {
60983          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
60984          "in": "query",
60985          "name": "limit",
60986          "type": "integer",
60987          "uniqueItems": true
60988        },
60989        {
60990          "description": "object name and auth scope, such as for teams and projects",
60991          "in": "path",
60992          "name": "namespace",
60993          "required": true,
60994          "type": "string",
60995          "uniqueItems": true
60996        },
60997        {
60998          "description": "If 'true', then the output is pretty printed.",
60999          "in": "query",
61000          "name": "pretty",
61001          "type": "string",
61002          "uniqueItems": true
61003        },
61004        {
61005          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61006          "in": "query",
61007          "name": "resourceVersion",
61008          "type": "string",
61009          "uniqueItems": true
61010        },
61011        {
61012          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61013          "in": "query",
61014          "name": "timeoutSeconds",
61015          "type": "integer",
61016          "uniqueItems": true
61017        },
61018        {
61019          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61020          "in": "query",
61021          "name": "watch",
61022          "type": "boolean",
61023          "uniqueItems": true
61024        }
61025      ]
61026    },
61027    "/apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets/{name}": {
61028      "get": {
61029        "consumes": [
61030          "*/*"
61031        ],
61032        "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.",
61033        "operationId": "watchAppsV1beta2NamespacedDaemonSet",
61034        "produces": [
61035          "application/json",
61036          "application/yaml",
61037          "application/vnd.kubernetes.protobuf",
61038          "application/json;stream=watch",
61039          "application/vnd.kubernetes.protobuf;stream=watch"
61040        ],
61041        "responses": {
61042          "200": {
61043            "description": "OK",
61044            "schema": {
61045              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61046            }
61047          },
61048          "401": {
61049            "description": "Unauthorized"
61050          }
61051        },
61052        "schemes": [
61053          "https"
61054        ],
61055        "tags": [
61056          "apps_v1beta2"
61057        ],
61058        "x-kubernetes-action": "watch",
61059        "x-kubernetes-group-version-kind": {
61060          "group": "apps",
61061          "kind": "DaemonSet",
61062          "version": "v1beta2"
61063        }
61064      },
61065      "parameters": [
61066        {
61067          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61068          "in": "query",
61069          "name": "allowWatchBookmarks",
61070          "type": "boolean",
61071          "uniqueItems": true
61072        },
61073        {
61074          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61075          "in": "query",
61076          "name": "continue",
61077          "type": "string",
61078          "uniqueItems": true
61079        },
61080        {
61081          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61082          "in": "query",
61083          "name": "fieldSelector",
61084          "type": "string",
61085          "uniqueItems": true
61086        },
61087        {
61088          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61089          "in": "query",
61090          "name": "labelSelector",
61091          "type": "string",
61092          "uniqueItems": true
61093        },
61094        {
61095          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61096          "in": "query",
61097          "name": "limit",
61098          "type": "integer",
61099          "uniqueItems": true
61100        },
61101        {
61102          "description": "name of the DaemonSet",
61103          "in": "path",
61104          "name": "name",
61105          "required": true,
61106          "type": "string",
61107          "uniqueItems": true
61108        },
61109        {
61110          "description": "object name and auth scope, such as for teams and projects",
61111          "in": "path",
61112          "name": "namespace",
61113          "required": true,
61114          "type": "string",
61115          "uniqueItems": true
61116        },
61117        {
61118          "description": "If 'true', then the output is pretty printed.",
61119          "in": "query",
61120          "name": "pretty",
61121          "type": "string",
61122          "uniqueItems": true
61123        },
61124        {
61125          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61126          "in": "query",
61127          "name": "resourceVersion",
61128          "type": "string",
61129          "uniqueItems": true
61130        },
61131        {
61132          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61133          "in": "query",
61134          "name": "timeoutSeconds",
61135          "type": "integer",
61136          "uniqueItems": true
61137        },
61138        {
61139          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61140          "in": "query",
61141          "name": "watch",
61142          "type": "boolean",
61143          "uniqueItems": true
61144        }
61145      ]
61146    },
61147    "/apis/apps/v1beta2/watch/namespaces/{namespace}/deployments": {
61148      "get": {
61149        "consumes": [
61150          "*/*"
61151        ],
61152        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
61153        "operationId": "watchAppsV1beta2NamespacedDeploymentList",
61154        "produces": [
61155          "application/json",
61156          "application/yaml",
61157          "application/vnd.kubernetes.protobuf",
61158          "application/json;stream=watch",
61159          "application/vnd.kubernetes.protobuf;stream=watch"
61160        ],
61161        "responses": {
61162          "200": {
61163            "description": "OK",
61164            "schema": {
61165              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61166            }
61167          },
61168          "401": {
61169            "description": "Unauthorized"
61170          }
61171        },
61172        "schemes": [
61173          "https"
61174        ],
61175        "tags": [
61176          "apps_v1beta2"
61177        ],
61178        "x-kubernetes-action": "watchlist",
61179        "x-kubernetes-group-version-kind": {
61180          "group": "apps",
61181          "kind": "Deployment",
61182          "version": "v1beta2"
61183        }
61184      },
61185      "parameters": [
61186        {
61187          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61188          "in": "query",
61189          "name": "allowWatchBookmarks",
61190          "type": "boolean",
61191          "uniqueItems": true
61192        },
61193        {
61194          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61195          "in": "query",
61196          "name": "continue",
61197          "type": "string",
61198          "uniqueItems": true
61199        },
61200        {
61201          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61202          "in": "query",
61203          "name": "fieldSelector",
61204          "type": "string",
61205          "uniqueItems": true
61206        },
61207        {
61208          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61209          "in": "query",
61210          "name": "labelSelector",
61211          "type": "string",
61212          "uniqueItems": true
61213        },
61214        {
61215          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61216          "in": "query",
61217          "name": "limit",
61218          "type": "integer",
61219          "uniqueItems": true
61220        },
61221        {
61222          "description": "object name and auth scope, such as for teams and projects",
61223          "in": "path",
61224          "name": "namespace",
61225          "required": true,
61226          "type": "string",
61227          "uniqueItems": true
61228        },
61229        {
61230          "description": "If 'true', then the output is pretty printed.",
61231          "in": "query",
61232          "name": "pretty",
61233          "type": "string",
61234          "uniqueItems": true
61235        },
61236        {
61237          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61238          "in": "query",
61239          "name": "resourceVersion",
61240          "type": "string",
61241          "uniqueItems": true
61242        },
61243        {
61244          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61245          "in": "query",
61246          "name": "timeoutSeconds",
61247          "type": "integer",
61248          "uniqueItems": true
61249        },
61250        {
61251          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61252          "in": "query",
61253          "name": "watch",
61254          "type": "boolean",
61255          "uniqueItems": true
61256        }
61257      ]
61258    },
61259    "/apis/apps/v1beta2/watch/namespaces/{namespace}/deployments/{name}": {
61260      "get": {
61261        "consumes": [
61262          "*/*"
61263        ],
61264        "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.",
61265        "operationId": "watchAppsV1beta2NamespacedDeployment",
61266        "produces": [
61267          "application/json",
61268          "application/yaml",
61269          "application/vnd.kubernetes.protobuf",
61270          "application/json;stream=watch",
61271          "application/vnd.kubernetes.protobuf;stream=watch"
61272        ],
61273        "responses": {
61274          "200": {
61275            "description": "OK",
61276            "schema": {
61277              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61278            }
61279          },
61280          "401": {
61281            "description": "Unauthorized"
61282          }
61283        },
61284        "schemes": [
61285          "https"
61286        ],
61287        "tags": [
61288          "apps_v1beta2"
61289        ],
61290        "x-kubernetes-action": "watch",
61291        "x-kubernetes-group-version-kind": {
61292          "group": "apps",
61293          "kind": "Deployment",
61294          "version": "v1beta2"
61295        }
61296      },
61297      "parameters": [
61298        {
61299          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61300          "in": "query",
61301          "name": "allowWatchBookmarks",
61302          "type": "boolean",
61303          "uniqueItems": true
61304        },
61305        {
61306          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61307          "in": "query",
61308          "name": "continue",
61309          "type": "string",
61310          "uniqueItems": true
61311        },
61312        {
61313          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61314          "in": "query",
61315          "name": "fieldSelector",
61316          "type": "string",
61317          "uniqueItems": true
61318        },
61319        {
61320          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61321          "in": "query",
61322          "name": "labelSelector",
61323          "type": "string",
61324          "uniqueItems": true
61325        },
61326        {
61327          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61328          "in": "query",
61329          "name": "limit",
61330          "type": "integer",
61331          "uniqueItems": true
61332        },
61333        {
61334          "description": "name of the Deployment",
61335          "in": "path",
61336          "name": "name",
61337          "required": true,
61338          "type": "string",
61339          "uniqueItems": true
61340        },
61341        {
61342          "description": "object name and auth scope, such as for teams and projects",
61343          "in": "path",
61344          "name": "namespace",
61345          "required": true,
61346          "type": "string",
61347          "uniqueItems": true
61348        },
61349        {
61350          "description": "If 'true', then the output is pretty printed.",
61351          "in": "query",
61352          "name": "pretty",
61353          "type": "string",
61354          "uniqueItems": true
61355        },
61356        {
61357          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61358          "in": "query",
61359          "name": "resourceVersion",
61360          "type": "string",
61361          "uniqueItems": true
61362        },
61363        {
61364          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61365          "in": "query",
61366          "name": "timeoutSeconds",
61367          "type": "integer",
61368          "uniqueItems": true
61369        },
61370        {
61371          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61372          "in": "query",
61373          "name": "watch",
61374          "type": "boolean",
61375          "uniqueItems": true
61376        }
61377      ]
61378    },
61379    "/apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets": {
61380      "get": {
61381        "consumes": [
61382          "*/*"
61383        ],
61384        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
61385        "operationId": "watchAppsV1beta2NamespacedReplicaSetList",
61386        "produces": [
61387          "application/json",
61388          "application/yaml",
61389          "application/vnd.kubernetes.protobuf",
61390          "application/json;stream=watch",
61391          "application/vnd.kubernetes.protobuf;stream=watch"
61392        ],
61393        "responses": {
61394          "200": {
61395            "description": "OK",
61396            "schema": {
61397              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61398            }
61399          },
61400          "401": {
61401            "description": "Unauthorized"
61402          }
61403        },
61404        "schemes": [
61405          "https"
61406        ],
61407        "tags": [
61408          "apps_v1beta2"
61409        ],
61410        "x-kubernetes-action": "watchlist",
61411        "x-kubernetes-group-version-kind": {
61412          "group": "apps",
61413          "kind": "ReplicaSet",
61414          "version": "v1beta2"
61415        }
61416      },
61417      "parameters": [
61418        {
61419          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61420          "in": "query",
61421          "name": "allowWatchBookmarks",
61422          "type": "boolean",
61423          "uniqueItems": true
61424        },
61425        {
61426          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61427          "in": "query",
61428          "name": "continue",
61429          "type": "string",
61430          "uniqueItems": true
61431        },
61432        {
61433          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61434          "in": "query",
61435          "name": "fieldSelector",
61436          "type": "string",
61437          "uniqueItems": true
61438        },
61439        {
61440          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61441          "in": "query",
61442          "name": "labelSelector",
61443          "type": "string",
61444          "uniqueItems": true
61445        },
61446        {
61447          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61448          "in": "query",
61449          "name": "limit",
61450          "type": "integer",
61451          "uniqueItems": true
61452        },
61453        {
61454          "description": "object name and auth scope, such as for teams and projects",
61455          "in": "path",
61456          "name": "namespace",
61457          "required": true,
61458          "type": "string",
61459          "uniqueItems": true
61460        },
61461        {
61462          "description": "If 'true', then the output is pretty printed.",
61463          "in": "query",
61464          "name": "pretty",
61465          "type": "string",
61466          "uniqueItems": true
61467        },
61468        {
61469          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61470          "in": "query",
61471          "name": "resourceVersion",
61472          "type": "string",
61473          "uniqueItems": true
61474        },
61475        {
61476          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61477          "in": "query",
61478          "name": "timeoutSeconds",
61479          "type": "integer",
61480          "uniqueItems": true
61481        },
61482        {
61483          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61484          "in": "query",
61485          "name": "watch",
61486          "type": "boolean",
61487          "uniqueItems": true
61488        }
61489      ]
61490    },
61491    "/apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets/{name}": {
61492      "get": {
61493        "consumes": [
61494          "*/*"
61495        ],
61496        "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.",
61497        "operationId": "watchAppsV1beta2NamespacedReplicaSet",
61498        "produces": [
61499          "application/json",
61500          "application/yaml",
61501          "application/vnd.kubernetes.protobuf",
61502          "application/json;stream=watch",
61503          "application/vnd.kubernetes.protobuf;stream=watch"
61504        ],
61505        "responses": {
61506          "200": {
61507            "description": "OK",
61508            "schema": {
61509              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61510            }
61511          },
61512          "401": {
61513            "description": "Unauthorized"
61514          }
61515        },
61516        "schemes": [
61517          "https"
61518        ],
61519        "tags": [
61520          "apps_v1beta2"
61521        ],
61522        "x-kubernetes-action": "watch",
61523        "x-kubernetes-group-version-kind": {
61524          "group": "apps",
61525          "kind": "ReplicaSet",
61526          "version": "v1beta2"
61527        }
61528      },
61529      "parameters": [
61530        {
61531          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61532          "in": "query",
61533          "name": "allowWatchBookmarks",
61534          "type": "boolean",
61535          "uniqueItems": true
61536        },
61537        {
61538          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61539          "in": "query",
61540          "name": "continue",
61541          "type": "string",
61542          "uniqueItems": true
61543        },
61544        {
61545          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61546          "in": "query",
61547          "name": "fieldSelector",
61548          "type": "string",
61549          "uniqueItems": true
61550        },
61551        {
61552          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61553          "in": "query",
61554          "name": "labelSelector",
61555          "type": "string",
61556          "uniqueItems": true
61557        },
61558        {
61559          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61560          "in": "query",
61561          "name": "limit",
61562          "type": "integer",
61563          "uniqueItems": true
61564        },
61565        {
61566          "description": "name of the ReplicaSet",
61567          "in": "path",
61568          "name": "name",
61569          "required": true,
61570          "type": "string",
61571          "uniqueItems": true
61572        },
61573        {
61574          "description": "object name and auth scope, such as for teams and projects",
61575          "in": "path",
61576          "name": "namespace",
61577          "required": true,
61578          "type": "string",
61579          "uniqueItems": true
61580        },
61581        {
61582          "description": "If 'true', then the output is pretty printed.",
61583          "in": "query",
61584          "name": "pretty",
61585          "type": "string",
61586          "uniqueItems": true
61587        },
61588        {
61589          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61590          "in": "query",
61591          "name": "resourceVersion",
61592          "type": "string",
61593          "uniqueItems": true
61594        },
61595        {
61596          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61597          "in": "query",
61598          "name": "timeoutSeconds",
61599          "type": "integer",
61600          "uniqueItems": true
61601        },
61602        {
61603          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61604          "in": "query",
61605          "name": "watch",
61606          "type": "boolean",
61607          "uniqueItems": true
61608        }
61609      ]
61610    },
61611    "/apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets": {
61612      "get": {
61613        "consumes": [
61614          "*/*"
61615        ],
61616        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
61617        "operationId": "watchAppsV1beta2NamespacedStatefulSetList",
61618        "produces": [
61619          "application/json",
61620          "application/yaml",
61621          "application/vnd.kubernetes.protobuf",
61622          "application/json;stream=watch",
61623          "application/vnd.kubernetes.protobuf;stream=watch"
61624        ],
61625        "responses": {
61626          "200": {
61627            "description": "OK",
61628            "schema": {
61629              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61630            }
61631          },
61632          "401": {
61633            "description": "Unauthorized"
61634          }
61635        },
61636        "schemes": [
61637          "https"
61638        ],
61639        "tags": [
61640          "apps_v1beta2"
61641        ],
61642        "x-kubernetes-action": "watchlist",
61643        "x-kubernetes-group-version-kind": {
61644          "group": "apps",
61645          "kind": "StatefulSet",
61646          "version": "v1beta2"
61647        }
61648      },
61649      "parameters": [
61650        {
61651          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61652          "in": "query",
61653          "name": "allowWatchBookmarks",
61654          "type": "boolean",
61655          "uniqueItems": true
61656        },
61657        {
61658          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61659          "in": "query",
61660          "name": "continue",
61661          "type": "string",
61662          "uniqueItems": true
61663        },
61664        {
61665          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61666          "in": "query",
61667          "name": "fieldSelector",
61668          "type": "string",
61669          "uniqueItems": true
61670        },
61671        {
61672          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61673          "in": "query",
61674          "name": "labelSelector",
61675          "type": "string",
61676          "uniqueItems": true
61677        },
61678        {
61679          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61680          "in": "query",
61681          "name": "limit",
61682          "type": "integer",
61683          "uniqueItems": true
61684        },
61685        {
61686          "description": "object name and auth scope, such as for teams and projects",
61687          "in": "path",
61688          "name": "namespace",
61689          "required": true,
61690          "type": "string",
61691          "uniqueItems": true
61692        },
61693        {
61694          "description": "If 'true', then the output is pretty printed.",
61695          "in": "query",
61696          "name": "pretty",
61697          "type": "string",
61698          "uniqueItems": true
61699        },
61700        {
61701          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61702          "in": "query",
61703          "name": "resourceVersion",
61704          "type": "string",
61705          "uniqueItems": true
61706        },
61707        {
61708          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61709          "in": "query",
61710          "name": "timeoutSeconds",
61711          "type": "integer",
61712          "uniqueItems": true
61713        },
61714        {
61715          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61716          "in": "query",
61717          "name": "watch",
61718          "type": "boolean",
61719          "uniqueItems": true
61720        }
61721      ]
61722    },
61723    "/apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets/{name}": {
61724      "get": {
61725        "consumes": [
61726          "*/*"
61727        ],
61728        "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.",
61729        "operationId": "watchAppsV1beta2NamespacedStatefulSet",
61730        "produces": [
61731          "application/json",
61732          "application/yaml",
61733          "application/vnd.kubernetes.protobuf",
61734          "application/json;stream=watch",
61735          "application/vnd.kubernetes.protobuf;stream=watch"
61736        ],
61737        "responses": {
61738          "200": {
61739            "description": "OK",
61740            "schema": {
61741              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61742            }
61743          },
61744          "401": {
61745            "description": "Unauthorized"
61746          }
61747        },
61748        "schemes": [
61749          "https"
61750        ],
61751        "tags": [
61752          "apps_v1beta2"
61753        ],
61754        "x-kubernetes-action": "watch",
61755        "x-kubernetes-group-version-kind": {
61756          "group": "apps",
61757          "kind": "StatefulSet",
61758          "version": "v1beta2"
61759        }
61760      },
61761      "parameters": [
61762        {
61763          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61764          "in": "query",
61765          "name": "allowWatchBookmarks",
61766          "type": "boolean",
61767          "uniqueItems": true
61768        },
61769        {
61770          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61771          "in": "query",
61772          "name": "continue",
61773          "type": "string",
61774          "uniqueItems": true
61775        },
61776        {
61777          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61778          "in": "query",
61779          "name": "fieldSelector",
61780          "type": "string",
61781          "uniqueItems": true
61782        },
61783        {
61784          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61785          "in": "query",
61786          "name": "labelSelector",
61787          "type": "string",
61788          "uniqueItems": true
61789        },
61790        {
61791          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61792          "in": "query",
61793          "name": "limit",
61794          "type": "integer",
61795          "uniqueItems": true
61796        },
61797        {
61798          "description": "name of the StatefulSet",
61799          "in": "path",
61800          "name": "name",
61801          "required": true,
61802          "type": "string",
61803          "uniqueItems": true
61804        },
61805        {
61806          "description": "object name and auth scope, such as for teams and projects",
61807          "in": "path",
61808          "name": "namespace",
61809          "required": true,
61810          "type": "string",
61811          "uniqueItems": true
61812        },
61813        {
61814          "description": "If 'true', then the output is pretty printed.",
61815          "in": "query",
61816          "name": "pretty",
61817          "type": "string",
61818          "uniqueItems": true
61819        },
61820        {
61821          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61822          "in": "query",
61823          "name": "resourceVersion",
61824          "type": "string",
61825          "uniqueItems": true
61826        },
61827        {
61828          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61829          "in": "query",
61830          "name": "timeoutSeconds",
61831          "type": "integer",
61832          "uniqueItems": true
61833        },
61834        {
61835          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61836          "in": "query",
61837          "name": "watch",
61838          "type": "boolean",
61839          "uniqueItems": true
61840        }
61841      ]
61842    },
61843    "/apis/apps/v1beta2/watch/replicasets": {
61844      "get": {
61845        "consumes": [
61846          "*/*"
61847        ],
61848        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
61849        "operationId": "watchAppsV1beta2ReplicaSetListForAllNamespaces",
61850        "produces": [
61851          "application/json",
61852          "application/yaml",
61853          "application/vnd.kubernetes.protobuf",
61854          "application/json;stream=watch",
61855          "application/vnd.kubernetes.protobuf;stream=watch"
61856        ],
61857        "responses": {
61858          "200": {
61859            "description": "OK",
61860            "schema": {
61861              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61862            }
61863          },
61864          "401": {
61865            "description": "Unauthorized"
61866          }
61867        },
61868        "schemes": [
61869          "https"
61870        ],
61871        "tags": [
61872          "apps_v1beta2"
61873        ],
61874        "x-kubernetes-action": "watchlist",
61875        "x-kubernetes-group-version-kind": {
61876          "group": "apps",
61877          "kind": "ReplicaSet",
61878          "version": "v1beta2"
61879        }
61880      },
61881      "parameters": [
61882        {
61883          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61884          "in": "query",
61885          "name": "allowWatchBookmarks",
61886          "type": "boolean",
61887          "uniqueItems": true
61888        },
61889        {
61890          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61891          "in": "query",
61892          "name": "continue",
61893          "type": "string",
61894          "uniqueItems": true
61895        },
61896        {
61897          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
61898          "in": "query",
61899          "name": "fieldSelector",
61900          "type": "string",
61901          "uniqueItems": true
61902        },
61903        {
61904          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
61905          "in": "query",
61906          "name": "labelSelector",
61907          "type": "string",
61908          "uniqueItems": true
61909        },
61910        {
61911          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
61912          "in": "query",
61913          "name": "limit",
61914          "type": "integer",
61915          "uniqueItems": true
61916        },
61917        {
61918          "description": "If 'true', then the output is pretty printed.",
61919          "in": "query",
61920          "name": "pretty",
61921          "type": "string",
61922          "uniqueItems": true
61923        },
61924        {
61925          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
61926          "in": "query",
61927          "name": "resourceVersion",
61928          "type": "string",
61929          "uniqueItems": true
61930        },
61931        {
61932          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
61933          "in": "query",
61934          "name": "timeoutSeconds",
61935          "type": "integer",
61936          "uniqueItems": true
61937        },
61938        {
61939          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
61940          "in": "query",
61941          "name": "watch",
61942          "type": "boolean",
61943          "uniqueItems": true
61944        }
61945      ]
61946    },
61947    "/apis/apps/v1beta2/watch/statefulsets": {
61948      "get": {
61949        "consumes": [
61950          "*/*"
61951        ],
61952        "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.",
61953        "operationId": "watchAppsV1beta2StatefulSetListForAllNamespaces",
61954        "produces": [
61955          "application/json",
61956          "application/yaml",
61957          "application/vnd.kubernetes.protobuf",
61958          "application/json;stream=watch",
61959          "application/vnd.kubernetes.protobuf;stream=watch"
61960        ],
61961        "responses": {
61962          "200": {
61963            "description": "OK",
61964            "schema": {
61965              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
61966            }
61967          },
61968          "401": {
61969            "description": "Unauthorized"
61970          }
61971        },
61972        "schemes": [
61973          "https"
61974        ],
61975        "tags": [
61976          "apps_v1beta2"
61977        ],
61978        "x-kubernetes-action": "watchlist",
61979        "x-kubernetes-group-version-kind": {
61980          "group": "apps",
61981          "kind": "StatefulSet",
61982          "version": "v1beta2"
61983        }
61984      },
61985      "parameters": [
61986        {
61987          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
61988          "in": "query",
61989          "name": "allowWatchBookmarks",
61990          "type": "boolean",
61991          "uniqueItems": true
61992        },
61993        {
61994          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
61995          "in": "query",
61996          "name": "continue",
61997          "type": "string",
61998          "uniqueItems": true
61999        },
62000        {
62001          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62002          "in": "query",
62003          "name": "fieldSelector",
62004          "type": "string",
62005          "uniqueItems": true
62006        },
62007        {
62008          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62009          "in": "query",
62010          "name": "labelSelector",
62011          "type": "string",
62012          "uniqueItems": true
62013        },
62014        {
62015          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62016          "in": "query",
62017          "name": "limit",
62018          "type": "integer",
62019          "uniqueItems": true
62020        },
62021        {
62022          "description": "If 'true', then the output is pretty printed.",
62023          "in": "query",
62024          "name": "pretty",
62025          "type": "string",
62026          "uniqueItems": true
62027        },
62028        {
62029          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
62030          "in": "query",
62031          "name": "resourceVersion",
62032          "type": "string",
62033          "uniqueItems": true
62034        },
62035        {
62036          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62037          "in": "query",
62038          "name": "timeoutSeconds",
62039          "type": "integer",
62040          "uniqueItems": true
62041        },
62042        {
62043          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62044          "in": "query",
62045          "name": "watch",
62046          "type": "boolean",
62047          "uniqueItems": true
62048        }
62049      ]
62050    },
62051    "/apis/auditregistration.k8s.io/": {
62052      "get": {
62053        "consumes": [
62054          "application/json",
62055          "application/yaml",
62056          "application/vnd.kubernetes.protobuf"
62057        ],
62058        "description": "get information of a group",
62059        "operationId": "getAuditregistrationAPIGroup",
62060        "produces": [
62061          "application/json",
62062          "application/yaml",
62063          "application/vnd.kubernetes.protobuf"
62064        ],
62065        "responses": {
62066          "200": {
62067            "description": "OK",
62068            "schema": {
62069              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
62070            }
62071          },
62072          "401": {
62073            "description": "Unauthorized"
62074          }
62075        },
62076        "schemes": [
62077          "https"
62078        ],
62079        "tags": [
62080          "auditregistration"
62081        ]
62082      }
62083    },
62084    "/apis/auditregistration.k8s.io/v1alpha1/": {
62085      "get": {
62086        "consumes": [
62087          "application/json",
62088          "application/yaml",
62089          "application/vnd.kubernetes.protobuf"
62090        ],
62091        "description": "get available resources",
62092        "operationId": "getAuditregistrationV1alpha1APIResources",
62093        "produces": [
62094          "application/json",
62095          "application/yaml",
62096          "application/vnd.kubernetes.protobuf"
62097        ],
62098        "responses": {
62099          "200": {
62100            "description": "OK",
62101            "schema": {
62102              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
62103            }
62104          },
62105          "401": {
62106            "description": "Unauthorized"
62107          }
62108        },
62109        "schemes": [
62110          "https"
62111        ],
62112        "tags": [
62113          "auditregistration_v1alpha1"
62114        ]
62115      }
62116    },
62117    "/apis/auditregistration.k8s.io/v1alpha1/auditsinks": {
62118      "delete": {
62119        "consumes": [
62120          "*/*"
62121        ],
62122        "description": "delete collection of AuditSink",
62123        "operationId": "deleteAuditregistrationV1alpha1CollectionAuditSink",
62124        "parameters": [
62125          {
62126            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
62127            "in": "query",
62128            "name": "allowWatchBookmarks",
62129            "type": "boolean",
62130            "uniqueItems": true
62131          },
62132          {
62133            "in": "body",
62134            "name": "body",
62135            "schema": {
62136              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62137            }
62138          },
62139          {
62140            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62141            "in": "query",
62142            "name": "continue",
62143            "type": "string",
62144            "uniqueItems": true
62145          },
62146          {
62147            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62148            "in": "query",
62149            "name": "dryRun",
62150            "type": "string",
62151            "uniqueItems": true
62152          },
62153          {
62154            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62155            "in": "query",
62156            "name": "fieldSelector",
62157            "type": "string",
62158            "uniqueItems": true
62159          },
62160          {
62161            "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.",
62162            "in": "query",
62163            "name": "gracePeriodSeconds",
62164            "type": "integer",
62165            "uniqueItems": true
62166          },
62167          {
62168            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62169            "in": "query",
62170            "name": "labelSelector",
62171            "type": "string",
62172            "uniqueItems": true
62173          },
62174          {
62175            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62176            "in": "query",
62177            "name": "limit",
62178            "type": "integer",
62179            "uniqueItems": true
62180          },
62181          {
62182            "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.",
62183            "in": "query",
62184            "name": "orphanDependents",
62185            "type": "boolean",
62186            "uniqueItems": true
62187          },
62188          {
62189            "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.",
62190            "in": "query",
62191            "name": "propagationPolicy",
62192            "type": "string",
62193            "uniqueItems": true
62194          },
62195          {
62196            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
62197            "in": "query",
62198            "name": "resourceVersion",
62199            "type": "string",
62200            "uniqueItems": true
62201          },
62202          {
62203            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62204            "in": "query",
62205            "name": "timeoutSeconds",
62206            "type": "integer",
62207            "uniqueItems": true
62208          },
62209          {
62210            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62211            "in": "query",
62212            "name": "watch",
62213            "type": "boolean",
62214            "uniqueItems": true
62215          }
62216        ],
62217        "produces": [
62218          "application/json",
62219          "application/yaml",
62220          "application/vnd.kubernetes.protobuf"
62221        ],
62222        "responses": {
62223          "200": {
62224            "description": "OK",
62225            "schema": {
62226              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62227            }
62228          },
62229          "401": {
62230            "description": "Unauthorized"
62231          }
62232        },
62233        "schemes": [
62234          "https"
62235        ],
62236        "tags": [
62237          "auditregistration_v1alpha1"
62238        ],
62239        "x-kubernetes-action": "deletecollection",
62240        "x-kubernetes-group-version-kind": {
62241          "group": "auditregistration.k8s.io",
62242          "kind": "AuditSink",
62243          "version": "v1alpha1"
62244        }
62245      },
62246      "get": {
62247        "consumes": [
62248          "*/*"
62249        ],
62250        "description": "list or watch objects of kind AuditSink",
62251        "operationId": "listAuditregistrationV1alpha1AuditSink",
62252        "parameters": [
62253          {
62254            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
62255            "in": "query",
62256            "name": "allowWatchBookmarks",
62257            "type": "boolean",
62258            "uniqueItems": true
62259          },
62260          {
62261            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62262            "in": "query",
62263            "name": "continue",
62264            "type": "string",
62265            "uniqueItems": true
62266          },
62267          {
62268            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62269            "in": "query",
62270            "name": "fieldSelector",
62271            "type": "string",
62272            "uniqueItems": true
62273          },
62274          {
62275            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62276            "in": "query",
62277            "name": "labelSelector",
62278            "type": "string",
62279            "uniqueItems": true
62280          },
62281          {
62282            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62283            "in": "query",
62284            "name": "limit",
62285            "type": "integer",
62286            "uniqueItems": true
62287          },
62288          {
62289            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
62290            "in": "query",
62291            "name": "resourceVersion",
62292            "type": "string",
62293            "uniqueItems": true
62294          },
62295          {
62296            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62297            "in": "query",
62298            "name": "timeoutSeconds",
62299            "type": "integer",
62300            "uniqueItems": true
62301          },
62302          {
62303            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62304            "in": "query",
62305            "name": "watch",
62306            "type": "boolean",
62307            "uniqueItems": true
62308          }
62309        ],
62310        "produces": [
62311          "application/json",
62312          "application/yaml",
62313          "application/vnd.kubernetes.protobuf",
62314          "application/json;stream=watch",
62315          "application/vnd.kubernetes.protobuf;stream=watch"
62316        ],
62317        "responses": {
62318          "200": {
62319            "description": "OK",
62320            "schema": {
62321              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSinkList"
62322            }
62323          },
62324          "401": {
62325            "description": "Unauthorized"
62326          }
62327        },
62328        "schemes": [
62329          "https"
62330        ],
62331        "tags": [
62332          "auditregistration_v1alpha1"
62333        ],
62334        "x-kubernetes-action": "list",
62335        "x-kubernetes-group-version-kind": {
62336          "group": "auditregistration.k8s.io",
62337          "kind": "AuditSink",
62338          "version": "v1alpha1"
62339        }
62340      },
62341      "parameters": [
62342        {
62343          "description": "If 'true', then the output is pretty printed.",
62344          "in": "query",
62345          "name": "pretty",
62346          "type": "string",
62347          "uniqueItems": true
62348        }
62349      ],
62350      "post": {
62351        "consumes": [
62352          "*/*"
62353        ],
62354        "description": "create an AuditSink",
62355        "operationId": "createAuditregistrationV1alpha1AuditSink",
62356        "parameters": [
62357          {
62358            "in": "body",
62359            "name": "body",
62360            "required": true,
62361            "schema": {
62362              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62363            }
62364          },
62365          {
62366            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62367            "in": "query",
62368            "name": "dryRun",
62369            "type": "string",
62370            "uniqueItems": true
62371          },
62372          {
62373            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62374            "in": "query",
62375            "name": "fieldManager",
62376            "type": "string",
62377            "uniqueItems": true
62378          }
62379        ],
62380        "produces": [
62381          "application/json",
62382          "application/yaml",
62383          "application/vnd.kubernetes.protobuf"
62384        ],
62385        "responses": {
62386          "200": {
62387            "description": "OK",
62388            "schema": {
62389              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62390            }
62391          },
62392          "201": {
62393            "description": "Created",
62394            "schema": {
62395              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62396            }
62397          },
62398          "202": {
62399            "description": "Accepted",
62400            "schema": {
62401              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62402            }
62403          },
62404          "401": {
62405            "description": "Unauthorized"
62406          }
62407        },
62408        "schemes": [
62409          "https"
62410        ],
62411        "tags": [
62412          "auditregistration_v1alpha1"
62413        ],
62414        "x-kubernetes-action": "post",
62415        "x-kubernetes-group-version-kind": {
62416          "group": "auditregistration.k8s.io",
62417          "kind": "AuditSink",
62418          "version": "v1alpha1"
62419        }
62420      }
62421    },
62422    "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}": {
62423      "delete": {
62424        "consumes": [
62425          "*/*"
62426        ],
62427        "description": "delete an AuditSink",
62428        "operationId": "deleteAuditregistrationV1alpha1AuditSink",
62429        "parameters": [
62430          {
62431            "in": "body",
62432            "name": "body",
62433            "schema": {
62434              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
62435            }
62436          },
62437          {
62438            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62439            "in": "query",
62440            "name": "dryRun",
62441            "type": "string",
62442            "uniqueItems": true
62443          },
62444          {
62445            "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.",
62446            "in": "query",
62447            "name": "gracePeriodSeconds",
62448            "type": "integer",
62449            "uniqueItems": true
62450          },
62451          {
62452            "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.",
62453            "in": "query",
62454            "name": "orphanDependents",
62455            "type": "boolean",
62456            "uniqueItems": true
62457          },
62458          {
62459            "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.",
62460            "in": "query",
62461            "name": "propagationPolicy",
62462            "type": "string",
62463            "uniqueItems": true
62464          }
62465        ],
62466        "produces": [
62467          "application/json",
62468          "application/yaml",
62469          "application/vnd.kubernetes.protobuf"
62470        ],
62471        "responses": {
62472          "200": {
62473            "description": "OK",
62474            "schema": {
62475              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62476            }
62477          },
62478          "202": {
62479            "description": "Accepted",
62480            "schema": {
62481              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
62482            }
62483          },
62484          "401": {
62485            "description": "Unauthorized"
62486          }
62487        },
62488        "schemes": [
62489          "https"
62490        ],
62491        "tags": [
62492          "auditregistration_v1alpha1"
62493        ],
62494        "x-kubernetes-action": "delete",
62495        "x-kubernetes-group-version-kind": {
62496          "group": "auditregistration.k8s.io",
62497          "kind": "AuditSink",
62498          "version": "v1alpha1"
62499        }
62500      },
62501      "get": {
62502        "consumes": [
62503          "*/*"
62504        ],
62505        "description": "read the specified AuditSink",
62506        "operationId": "readAuditregistrationV1alpha1AuditSink",
62507        "parameters": [
62508          {
62509            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
62510            "in": "query",
62511            "name": "exact",
62512            "type": "boolean",
62513            "uniqueItems": true
62514          },
62515          {
62516            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
62517            "in": "query",
62518            "name": "export",
62519            "type": "boolean",
62520            "uniqueItems": true
62521          }
62522        ],
62523        "produces": [
62524          "application/json",
62525          "application/yaml",
62526          "application/vnd.kubernetes.protobuf"
62527        ],
62528        "responses": {
62529          "200": {
62530            "description": "OK",
62531            "schema": {
62532              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62533            }
62534          },
62535          "401": {
62536            "description": "Unauthorized"
62537          }
62538        },
62539        "schemes": [
62540          "https"
62541        ],
62542        "tags": [
62543          "auditregistration_v1alpha1"
62544        ],
62545        "x-kubernetes-action": "get",
62546        "x-kubernetes-group-version-kind": {
62547          "group": "auditregistration.k8s.io",
62548          "kind": "AuditSink",
62549          "version": "v1alpha1"
62550        }
62551      },
62552      "parameters": [
62553        {
62554          "description": "name of the AuditSink",
62555          "in": "path",
62556          "name": "name",
62557          "required": true,
62558          "type": "string",
62559          "uniqueItems": true
62560        },
62561        {
62562          "description": "If 'true', then the output is pretty printed.",
62563          "in": "query",
62564          "name": "pretty",
62565          "type": "string",
62566          "uniqueItems": true
62567        }
62568      ],
62569      "patch": {
62570        "consumes": [
62571          "application/json-patch+json",
62572          "application/merge-patch+json",
62573          "application/strategic-merge-patch+json"
62574        ],
62575        "description": "partially update the specified AuditSink",
62576        "operationId": "patchAuditregistrationV1alpha1AuditSink",
62577        "parameters": [
62578          {
62579            "in": "body",
62580            "name": "body",
62581            "required": true,
62582            "schema": {
62583              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
62584            }
62585          },
62586          {
62587            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62588            "in": "query",
62589            "name": "dryRun",
62590            "type": "string",
62591            "uniqueItems": true
62592          },
62593          {
62594            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
62595            "in": "query",
62596            "name": "fieldManager",
62597            "type": "string",
62598            "uniqueItems": true
62599          },
62600          {
62601            "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.",
62602            "in": "query",
62603            "name": "force",
62604            "type": "boolean",
62605            "uniqueItems": true
62606          }
62607        ],
62608        "produces": [
62609          "application/json",
62610          "application/yaml",
62611          "application/vnd.kubernetes.protobuf"
62612        ],
62613        "responses": {
62614          "200": {
62615            "description": "OK",
62616            "schema": {
62617              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62618            }
62619          },
62620          "401": {
62621            "description": "Unauthorized"
62622          }
62623        },
62624        "schemes": [
62625          "https"
62626        ],
62627        "tags": [
62628          "auditregistration_v1alpha1"
62629        ],
62630        "x-kubernetes-action": "patch",
62631        "x-kubernetes-group-version-kind": {
62632          "group": "auditregistration.k8s.io",
62633          "kind": "AuditSink",
62634          "version": "v1alpha1"
62635        }
62636      },
62637      "put": {
62638        "consumes": [
62639          "*/*"
62640        ],
62641        "description": "replace the specified AuditSink",
62642        "operationId": "replaceAuditregistrationV1alpha1AuditSink",
62643        "parameters": [
62644          {
62645            "in": "body",
62646            "name": "body",
62647            "required": true,
62648            "schema": {
62649              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62650            }
62651          },
62652          {
62653            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62654            "in": "query",
62655            "name": "dryRun",
62656            "type": "string",
62657            "uniqueItems": true
62658          },
62659          {
62660            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62661            "in": "query",
62662            "name": "fieldManager",
62663            "type": "string",
62664            "uniqueItems": true
62665          }
62666        ],
62667        "produces": [
62668          "application/json",
62669          "application/yaml",
62670          "application/vnd.kubernetes.protobuf"
62671        ],
62672        "responses": {
62673          "200": {
62674            "description": "OK",
62675            "schema": {
62676              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62677            }
62678          },
62679          "201": {
62680            "description": "Created",
62681            "schema": {
62682              "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink"
62683            }
62684          },
62685          "401": {
62686            "description": "Unauthorized"
62687          }
62688        },
62689        "schemes": [
62690          "https"
62691        ],
62692        "tags": [
62693          "auditregistration_v1alpha1"
62694        ],
62695        "x-kubernetes-action": "put",
62696        "x-kubernetes-group-version-kind": {
62697          "group": "auditregistration.k8s.io",
62698          "kind": "AuditSink",
62699          "version": "v1alpha1"
62700        }
62701      }
62702    },
62703    "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks": {
62704      "get": {
62705        "consumes": [
62706          "*/*"
62707        ],
62708        "description": "watch individual changes to a list of AuditSink. deprecated: use the 'watch' parameter with a list operation instead.",
62709        "operationId": "watchAuditregistrationV1alpha1AuditSinkList",
62710        "produces": [
62711          "application/json",
62712          "application/yaml",
62713          "application/vnd.kubernetes.protobuf",
62714          "application/json;stream=watch",
62715          "application/vnd.kubernetes.protobuf;stream=watch"
62716        ],
62717        "responses": {
62718          "200": {
62719            "description": "OK",
62720            "schema": {
62721              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62722            }
62723          },
62724          "401": {
62725            "description": "Unauthorized"
62726          }
62727        },
62728        "schemes": [
62729          "https"
62730        ],
62731        "tags": [
62732          "auditregistration_v1alpha1"
62733        ],
62734        "x-kubernetes-action": "watchlist",
62735        "x-kubernetes-group-version-kind": {
62736          "group": "auditregistration.k8s.io",
62737          "kind": "AuditSink",
62738          "version": "v1alpha1"
62739        }
62740      },
62741      "parameters": [
62742        {
62743          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
62744          "in": "query",
62745          "name": "allowWatchBookmarks",
62746          "type": "boolean",
62747          "uniqueItems": true
62748        },
62749        {
62750          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62751          "in": "query",
62752          "name": "continue",
62753          "type": "string",
62754          "uniqueItems": true
62755        },
62756        {
62757          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62758          "in": "query",
62759          "name": "fieldSelector",
62760          "type": "string",
62761          "uniqueItems": true
62762        },
62763        {
62764          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62765          "in": "query",
62766          "name": "labelSelector",
62767          "type": "string",
62768          "uniqueItems": true
62769        },
62770        {
62771          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62772          "in": "query",
62773          "name": "limit",
62774          "type": "integer",
62775          "uniqueItems": true
62776        },
62777        {
62778          "description": "If 'true', then the output is pretty printed.",
62779          "in": "query",
62780          "name": "pretty",
62781          "type": "string",
62782          "uniqueItems": true
62783        },
62784        {
62785          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
62786          "in": "query",
62787          "name": "resourceVersion",
62788          "type": "string",
62789          "uniqueItems": true
62790        },
62791        {
62792          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62793          "in": "query",
62794          "name": "timeoutSeconds",
62795          "type": "integer",
62796          "uniqueItems": true
62797        },
62798        {
62799          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62800          "in": "query",
62801          "name": "watch",
62802          "type": "boolean",
62803          "uniqueItems": true
62804        }
62805      ]
62806    },
62807    "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/{name}": {
62808      "get": {
62809        "consumes": [
62810          "*/*"
62811        ],
62812        "description": "watch changes to an object of kind AuditSink. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
62813        "operationId": "watchAuditregistrationV1alpha1AuditSink",
62814        "produces": [
62815          "application/json",
62816          "application/yaml",
62817          "application/vnd.kubernetes.protobuf",
62818          "application/json;stream=watch",
62819          "application/vnd.kubernetes.protobuf;stream=watch"
62820        ],
62821        "responses": {
62822          "200": {
62823            "description": "OK",
62824            "schema": {
62825              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
62826            }
62827          },
62828          "401": {
62829            "description": "Unauthorized"
62830          }
62831        },
62832        "schemes": [
62833          "https"
62834        ],
62835        "tags": [
62836          "auditregistration_v1alpha1"
62837        ],
62838        "x-kubernetes-action": "watch",
62839        "x-kubernetes-group-version-kind": {
62840          "group": "auditregistration.k8s.io",
62841          "kind": "AuditSink",
62842          "version": "v1alpha1"
62843        }
62844      },
62845      "parameters": [
62846        {
62847          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
62848          "in": "query",
62849          "name": "allowWatchBookmarks",
62850          "type": "boolean",
62851          "uniqueItems": true
62852        },
62853        {
62854          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
62855          "in": "query",
62856          "name": "continue",
62857          "type": "string",
62858          "uniqueItems": true
62859        },
62860        {
62861          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
62862          "in": "query",
62863          "name": "fieldSelector",
62864          "type": "string",
62865          "uniqueItems": true
62866        },
62867        {
62868          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
62869          "in": "query",
62870          "name": "labelSelector",
62871          "type": "string",
62872          "uniqueItems": true
62873        },
62874        {
62875          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
62876          "in": "query",
62877          "name": "limit",
62878          "type": "integer",
62879          "uniqueItems": true
62880        },
62881        {
62882          "description": "name of the AuditSink",
62883          "in": "path",
62884          "name": "name",
62885          "required": true,
62886          "type": "string",
62887          "uniqueItems": true
62888        },
62889        {
62890          "description": "If 'true', then the output is pretty printed.",
62891          "in": "query",
62892          "name": "pretty",
62893          "type": "string",
62894          "uniqueItems": true
62895        },
62896        {
62897          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
62898          "in": "query",
62899          "name": "resourceVersion",
62900          "type": "string",
62901          "uniqueItems": true
62902        },
62903        {
62904          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
62905          "in": "query",
62906          "name": "timeoutSeconds",
62907          "type": "integer",
62908          "uniqueItems": true
62909        },
62910        {
62911          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
62912          "in": "query",
62913          "name": "watch",
62914          "type": "boolean",
62915          "uniqueItems": true
62916        }
62917      ]
62918    },
62919    "/apis/authentication.k8s.io/": {
62920      "get": {
62921        "consumes": [
62922          "application/json",
62923          "application/yaml",
62924          "application/vnd.kubernetes.protobuf"
62925        ],
62926        "description": "get information of a group",
62927        "operationId": "getAuthenticationAPIGroup",
62928        "produces": [
62929          "application/json",
62930          "application/yaml",
62931          "application/vnd.kubernetes.protobuf"
62932        ],
62933        "responses": {
62934          "200": {
62935            "description": "OK",
62936            "schema": {
62937              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
62938            }
62939          },
62940          "401": {
62941            "description": "Unauthorized"
62942          }
62943        },
62944        "schemes": [
62945          "https"
62946        ],
62947        "tags": [
62948          "authentication"
62949        ]
62950      }
62951    },
62952    "/apis/authentication.k8s.io/v1/": {
62953      "get": {
62954        "consumes": [
62955          "application/json",
62956          "application/yaml",
62957          "application/vnd.kubernetes.protobuf"
62958        ],
62959        "description": "get available resources",
62960        "operationId": "getAuthenticationV1APIResources",
62961        "produces": [
62962          "application/json",
62963          "application/yaml",
62964          "application/vnd.kubernetes.protobuf"
62965        ],
62966        "responses": {
62967          "200": {
62968            "description": "OK",
62969            "schema": {
62970              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
62971            }
62972          },
62973          "401": {
62974            "description": "Unauthorized"
62975          }
62976        },
62977        "schemes": [
62978          "https"
62979        ],
62980        "tags": [
62981          "authentication_v1"
62982        ]
62983      }
62984    },
62985    "/apis/authentication.k8s.io/v1/tokenreviews": {
62986      "parameters": [
62987        {
62988          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
62989          "in": "query",
62990          "name": "dryRun",
62991          "type": "string",
62992          "uniqueItems": true
62993        },
62994        {
62995          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
62996          "in": "query",
62997          "name": "fieldManager",
62998          "type": "string",
62999          "uniqueItems": true
63000        },
63001        {
63002          "description": "If 'true', then the output is pretty printed.",
63003          "in": "query",
63004          "name": "pretty",
63005          "type": "string",
63006          "uniqueItems": true
63007        }
63008      ],
63009      "post": {
63010        "consumes": [
63011          "*/*"
63012        ],
63013        "description": "create a TokenReview",
63014        "operationId": "createAuthenticationV1TokenReview",
63015        "parameters": [
63016          {
63017            "in": "body",
63018            "name": "body",
63019            "required": true,
63020            "schema": {
63021              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
63022            }
63023          }
63024        ],
63025        "produces": [
63026          "application/json",
63027          "application/yaml",
63028          "application/vnd.kubernetes.protobuf"
63029        ],
63030        "responses": {
63031          "200": {
63032            "description": "OK",
63033            "schema": {
63034              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
63035            }
63036          },
63037          "201": {
63038            "description": "Created",
63039            "schema": {
63040              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
63041            }
63042          },
63043          "202": {
63044            "description": "Accepted",
63045            "schema": {
63046              "$ref": "#/definitions/io.k8s.api.authentication.v1.TokenReview"
63047            }
63048          },
63049          "401": {
63050            "description": "Unauthorized"
63051          }
63052        },
63053        "schemes": [
63054          "https"
63055        ],
63056        "tags": [
63057          "authentication_v1"
63058        ],
63059        "x-kubernetes-action": "post",
63060        "x-kubernetes-group-version-kind": {
63061          "group": "authentication.k8s.io",
63062          "kind": "TokenReview",
63063          "version": "v1"
63064        }
63065      }
63066    },
63067    "/apis/authentication.k8s.io/v1beta1/": {
63068      "get": {
63069        "consumes": [
63070          "application/json",
63071          "application/yaml",
63072          "application/vnd.kubernetes.protobuf"
63073        ],
63074        "description": "get available resources",
63075        "operationId": "getAuthenticationV1beta1APIResources",
63076        "produces": [
63077          "application/json",
63078          "application/yaml",
63079          "application/vnd.kubernetes.protobuf"
63080        ],
63081        "responses": {
63082          "200": {
63083            "description": "OK",
63084            "schema": {
63085              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
63086            }
63087          },
63088          "401": {
63089            "description": "Unauthorized"
63090          }
63091        },
63092        "schemes": [
63093          "https"
63094        ],
63095        "tags": [
63096          "authentication_v1beta1"
63097        ]
63098      }
63099    },
63100    "/apis/authentication.k8s.io/v1beta1/tokenreviews": {
63101      "parameters": [
63102        {
63103          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63104          "in": "query",
63105          "name": "dryRun",
63106          "type": "string",
63107          "uniqueItems": true
63108        },
63109        {
63110          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63111          "in": "query",
63112          "name": "fieldManager",
63113          "type": "string",
63114          "uniqueItems": true
63115        },
63116        {
63117          "description": "If 'true', then the output is pretty printed.",
63118          "in": "query",
63119          "name": "pretty",
63120          "type": "string",
63121          "uniqueItems": true
63122        }
63123      ],
63124      "post": {
63125        "consumes": [
63126          "*/*"
63127        ],
63128        "description": "create a TokenReview",
63129        "operationId": "createAuthenticationV1beta1TokenReview",
63130        "parameters": [
63131          {
63132            "in": "body",
63133            "name": "body",
63134            "required": true,
63135            "schema": {
63136              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
63137            }
63138          }
63139        ],
63140        "produces": [
63141          "application/json",
63142          "application/yaml",
63143          "application/vnd.kubernetes.protobuf"
63144        ],
63145        "responses": {
63146          "200": {
63147            "description": "OK",
63148            "schema": {
63149              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
63150            }
63151          },
63152          "201": {
63153            "description": "Created",
63154            "schema": {
63155              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
63156            }
63157          },
63158          "202": {
63159            "description": "Accepted",
63160            "schema": {
63161              "$ref": "#/definitions/io.k8s.api.authentication.v1beta1.TokenReview"
63162            }
63163          },
63164          "401": {
63165            "description": "Unauthorized"
63166          }
63167        },
63168        "schemes": [
63169          "https"
63170        ],
63171        "tags": [
63172          "authentication_v1beta1"
63173        ],
63174        "x-kubernetes-action": "post",
63175        "x-kubernetes-group-version-kind": {
63176          "group": "authentication.k8s.io",
63177          "kind": "TokenReview",
63178          "version": "v1beta1"
63179        }
63180      }
63181    },
63182    "/apis/authorization.k8s.io/": {
63183      "get": {
63184        "consumes": [
63185          "application/json",
63186          "application/yaml",
63187          "application/vnd.kubernetes.protobuf"
63188        ],
63189        "description": "get information of a group",
63190        "operationId": "getAuthorizationAPIGroup",
63191        "produces": [
63192          "application/json",
63193          "application/yaml",
63194          "application/vnd.kubernetes.protobuf"
63195        ],
63196        "responses": {
63197          "200": {
63198            "description": "OK",
63199            "schema": {
63200              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
63201            }
63202          },
63203          "401": {
63204            "description": "Unauthorized"
63205          }
63206        },
63207        "schemes": [
63208          "https"
63209        ],
63210        "tags": [
63211          "authorization"
63212        ]
63213      }
63214    },
63215    "/apis/authorization.k8s.io/v1/": {
63216      "get": {
63217        "consumes": [
63218          "application/json",
63219          "application/yaml",
63220          "application/vnd.kubernetes.protobuf"
63221        ],
63222        "description": "get available resources",
63223        "operationId": "getAuthorizationV1APIResources",
63224        "produces": [
63225          "application/json",
63226          "application/yaml",
63227          "application/vnd.kubernetes.protobuf"
63228        ],
63229        "responses": {
63230          "200": {
63231            "description": "OK",
63232            "schema": {
63233              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
63234            }
63235          },
63236          "401": {
63237            "description": "Unauthorized"
63238          }
63239        },
63240        "schemes": [
63241          "https"
63242        ],
63243        "tags": [
63244          "authorization_v1"
63245        ]
63246      }
63247    },
63248    "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": {
63249      "parameters": [
63250        {
63251          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63252          "in": "query",
63253          "name": "dryRun",
63254          "type": "string",
63255          "uniqueItems": true
63256        },
63257        {
63258          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63259          "in": "query",
63260          "name": "fieldManager",
63261          "type": "string",
63262          "uniqueItems": true
63263        },
63264        {
63265          "description": "object name and auth scope, such as for teams and projects",
63266          "in": "path",
63267          "name": "namespace",
63268          "required": true,
63269          "type": "string",
63270          "uniqueItems": true
63271        },
63272        {
63273          "description": "If 'true', then the output is pretty printed.",
63274          "in": "query",
63275          "name": "pretty",
63276          "type": "string",
63277          "uniqueItems": true
63278        }
63279      ],
63280      "post": {
63281        "consumes": [
63282          "*/*"
63283        ],
63284        "description": "create a LocalSubjectAccessReview",
63285        "operationId": "createAuthorizationV1NamespacedLocalSubjectAccessReview",
63286        "parameters": [
63287          {
63288            "in": "body",
63289            "name": "body",
63290            "required": true,
63291            "schema": {
63292              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
63293            }
63294          }
63295        ],
63296        "produces": [
63297          "application/json",
63298          "application/yaml",
63299          "application/vnd.kubernetes.protobuf"
63300        ],
63301        "responses": {
63302          "200": {
63303            "description": "OK",
63304            "schema": {
63305              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
63306            }
63307          },
63308          "201": {
63309            "description": "Created",
63310            "schema": {
63311              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
63312            }
63313          },
63314          "202": {
63315            "description": "Accepted",
63316            "schema": {
63317              "$ref": "#/definitions/io.k8s.api.authorization.v1.LocalSubjectAccessReview"
63318            }
63319          },
63320          "401": {
63321            "description": "Unauthorized"
63322          }
63323        },
63324        "schemes": [
63325          "https"
63326        ],
63327        "tags": [
63328          "authorization_v1"
63329        ],
63330        "x-kubernetes-action": "post",
63331        "x-kubernetes-group-version-kind": {
63332          "group": "authorization.k8s.io",
63333          "kind": "LocalSubjectAccessReview",
63334          "version": "v1"
63335        }
63336      }
63337    },
63338    "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews": {
63339      "parameters": [
63340        {
63341          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63342          "in": "query",
63343          "name": "dryRun",
63344          "type": "string",
63345          "uniqueItems": true
63346        },
63347        {
63348          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63349          "in": "query",
63350          "name": "fieldManager",
63351          "type": "string",
63352          "uniqueItems": true
63353        },
63354        {
63355          "description": "If 'true', then the output is pretty printed.",
63356          "in": "query",
63357          "name": "pretty",
63358          "type": "string",
63359          "uniqueItems": true
63360        }
63361      ],
63362      "post": {
63363        "consumes": [
63364          "*/*"
63365        ],
63366        "description": "create a SelfSubjectAccessReview",
63367        "operationId": "createAuthorizationV1SelfSubjectAccessReview",
63368        "parameters": [
63369          {
63370            "in": "body",
63371            "name": "body",
63372            "required": true,
63373            "schema": {
63374              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
63375            }
63376          }
63377        ],
63378        "produces": [
63379          "application/json",
63380          "application/yaml",
63381          "application/vnd.kubernetes.protobuf"
63382        ],
63383        "responses": {
63384          "200": {
63385            "description": "OK",
63386            "schema": {
63387              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
63388            }
63389          },
63390          "201": {
63391            "description": "Created",
63392            "schema": {
63393              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
63394            }
63395          },
63396          "202": {
63397            "description": "Accepted",
63398            "schema": {
63399              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectAccessReview"
63400            }
63401          },
63402          "401": {
63403            "description": "Unauthorized"
63404          }
63405        },
63406        "schemes": [
63407          "https"
63408        ],
63409        "tags": [
63410          "authorization_v1"
63411        ],
63412        "x-kubernetes-action": "post",
63413        "x-kubernetes-group-version-kind": {
63414          "group": "authorization.k8s.io",
63415          "kind": "SelfSubjectAccessReview",
63416          "version": "v1"
63417        }
63418      }
63419    },
63420    "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews": {
63421      "parameters": [
63422        {
63423          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63424          "in": "query",
63425          "name": "dryRun",
63426          "type": "string",
63427          "uniqueItems": true
63428        },
63429        {
63430          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63431          "in": "query",
63432          "name": "fieldManager",
63433          "type": "string",
63434          "uniqueItems": true
63435        },
63436        {
63437          "description": "If 'true', then the output is pretty printed.",
63438          "in": "query",
63439          "name": "pretty",
63440          "type": "string",
63441          "uniqueItems": true
63442        }
63443      ],
63444      "post": {
63445        "consumes": [
63446          "*/*"
63447        ],
63448        "description": "create a SelfSubjectRulesReview",
63449        "operationId": "createAuthorizationV1SelfSubjectRulesReview",
63450        "parameters": [
63451          {
63452            "in": "body",
63453            "name": "body",
63454            "required": true,
63455            "schema": {
63456              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
63457            }
63458          }
63459        ],
63460        "produces": [
63461          "application/json",
63462          "application/yaml",
63463          "application/vnd.kubernetes.protobuf"
63464        ],
63465        "responses": {
63466          "200": {
63467            "description": "OK",
63468            "schema": {
63469              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
63470            }
63471          },
63472          "201": {
63473            "description": "Created",
63474            "schema": {
63475              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
63476            }
63477          },
63478          "202": {
63479            "description": "Accepted",
63480            "schema": {
63481              "$ref": "#/definitions/io.k8s.api.authorization.v1.SelfSubjectRulesReview"
63482            }
63483          },
63484          "401": {
63485            "description": "Unauthorized"
63486          }
63487        },
63488        "schemes": [
63489          "https"
63490        ],
63491        "tags": [
63492          "authorization_v1"
63493        ],
63494        "x-kubernetes-action": "post",
63495        "x-kubernetes-group-version-kind": {
63496          "group": "authorization.k8s.io",
63497          "kind": "SelfSubjectRulesReview",
63498          "version": "v1"
63499        }
63500      }
63501    },
63502    "/apis/authorization.k8s.io/v1/subjectaccessreviews": {
63503      "parameters": [
63504        {
63505          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63506          "in": "query",
63507          "name": "dryRun",
63508          "type": "string",
63509          "uniqueItems": true
63510        },
63511        {
63512          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63513          "in": "query",
63514          "name": "fieldManager",
63515          "type": "string",
63516          "uniqueItems": true
63517        },
63518        {
63519          "description": "If 'true', then the output is pretty printed.",
63520          "in": "query",
63521          "name": "pretty",
63522          "type": "string",
63523          "uniqueItems": true
63524        }
63525      ],
63526      "post": {
63527        "consumes": [
63528          "*/*"
63529        ],
63530        "description": "create a SubjectAccessReview",
63531        "operationId": "createAuthorizationV1SubjectAccessReview",
63532        "parameters": [
63533          {
63534            "in": "body",
63535            "name": "body",
63536            "required": true,
63537            "schema": {
63538              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
63539            }
63540          }
63541        ],
63542        "produces": [
63543          "application/json",
63544          "application/yaml",
63545          "application/vnd.kubernetes.protobuf"
63546        ],
63547        "responses": {
63548          "200": {
63549            "description": "OK",
63550            "schema": {
63551              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
63552            }
63553          },
63554          "201": {
63555            "description": "Created",
63556            "schema": {
63557              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
63558            }
63559          },
63560          "202": {
63561            "description": "Accepted",
63562            "schema": {
63563              "$ref": "#/definitions/io.k8s.api.authorization.v1.SubjectAccessReview"
63564            }
63565          },
63566          "401": {
63567            "description": "Unauthorized"
63568          }
63569        },
63570        "schemes": [
63571          "https"
63572        ],
63573        "tags": [
63574          "authorization_v1"
63575        ],
63576        "x-kubernetes-action": "post",
63577        "x-kubernetes-group-version-kind": {
63578          "group": "authorization.k8s.io",
63579          "kind": "SubjectAccessReview",
63580          "version": "v1"
63581        }
63582      }
63583    },
63584    "/apis/authorization.k8s.io/v1beta1/": {
63585      "get": {
63586        "consumes": [
63587          "application/json",
63588          "application/yaml",
63589          "application/vnd.kubernetes.protobuf"
63590        ],
63591        "description": "get available resources",
63592        "operationId": "getAuthorizationV1beta1APIResources",
63593        "produces": [
63594          "application/json",
63595          "application/yaml",
63596          "application/vnd.kubernetes.protobuf"
63597        ],
63598        "responses": {
63599          "200": {
63600            "description": "OK",
63601            "schema": {
63602              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
63603            }
63604          },
63605          "401": {
63606            "description": "Unauthorized"
63607          }
63608        },
63609        "schemes": [
63610          "https"
63611        ],
63612        "tags": [
63613          "authorization_v1beta1"
63614        ]
63615      }
63616    },
63617    "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews": {
63618      "parameters": [
63619        {
63620          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63621          "in": "query",
63622          "name": "dryRun",
63623          "type": "string",
63624          "uniqueItems": true
63625        },
63626        {
63627          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63628          "in": "query",
63629          "name": "fieldManager",
63630          "type": "string",
63631          "uniqueItems": true
63632        },
63633        {
63634          "description": "object name and auth scope, such as for teams and projects",
63635          "in": "path",
63636          "name": "namespace",
63637          "required": true,
63638          "type": "string",
63639          "uniqueItems": true
63640        },
63641        {
63642          "description": "If 'true', then the output is pretty printed.",
63643          "in": "query",
63644          "name": "pretty",
63645          "type": "string",
63646          "uniqueItems": true
63647        }
63648      ],
63649      "post": {
63650        "consumes": [
63651          "*/*"
63652        ],
63653        "description": "create a LocalSubjectAccessReview",
63654        "operationId": "createAuthorizationV1beta1NamespacedLocalSubjectAccessReview",
63655        "parameters": [
63656          {
63657            "in": "body",
63658            "name": "body",
63659            "required": true,
63660            "schema": {
63661              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
63662            }
63663          }
63664        ],
63665        "produces": [
63666          "application/json",
63667          "application/yaml",
63668          "application/vnd.kubernetes.protobuf"
63669        ],
63670        "responses": {
63671          "200": {
63672            "description": "OK",
63673            "schema": {
63674              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
63675            }
63676          },
63677          "201": {
63678            "description": "Created",
63679            "schema": {
63680              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
63681            }
63682          },
63683          "202": {
63684            "description": "Accepted",
63685            "schema": {
63686              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview"
63687            }
63688          },
63689          "401": {
63690            "description": "Unauthorized"
63691          }
63692        },
63693        "schemes": [
63694          "https"
63695        ],
63696        "tags": [
63697          "authorization_v1beta1"
63698        ],
63699        "x-kubernetes-action": "post",
63700        "x-kubernetes-group-version-kind": {
63701          "group": "authorization.k8s.io",
63702          "kind": "LocalSubjectAccessReview",
63703          "version": "v1beta1"
63704        }
63705      }
63706    },
63707    "/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews": {
63708      "parameters": [
63709        {
63710          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63711          "in": "query",
63712          "name": "dryRun",
63713          "type": "string",
63714          "uniqueItems": true
63715        },
63716        {
63717          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63718          "in": "query",
63719          "name": "fieldManager",
63720          "type": "string",
63721          "uniqueItems": true
63722        },
63723        {
63724          "description": "If 'true', then the output is pretty printed.",
63725          "in": "query",
63726          "name": "pretty",
63727          "type": "string",
63728          "uniqueItems": true
63729        }
63730      ],
63731      "post": {
63732        "consumes": [
63733          "*/*"
63734        ],
63735        "description": "create a SelfSubjectAccessReview",
63736        "operationId": "createAuthorizationV1beta1SelfSubjectAccessReview",
63737        "parameters": [
63738          {
63739            "in": "body",
63740            "name": "body",
63741            "required": true,
63742            "schema": {
63743              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
63744            }
63745          }
63746        ],
63747        "produces": [
63748          "application/json",
63749          "application/yaml",
63750          "application/vnd.kubernetes.protobuf"
63751        ],
63752        "responses": {
63753          "200": {
63754            "description": "OK",
63755            "schema": {
63756              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
63757            }
63758          },
63759          "201": {
63760            "description": "Created",
63761            "schema": {
63762              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
63763            }
63764          },
63765          "202": {
63766            "description": "Accepted",
63767            "schema": {
63768              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview"
63769            }
63770          },
63771          "401": {
63772            "description": "Unauthorized"
63773          }
63774        },
63775        "schemes": [
63776          "https"
63777        ],
63778        "tags": [
63779          "authorization_v1beta1"
63780        ],
63781        "x-kubernetes-action": "post",
63782        "x-kubernetes-group-version-kind": {
63783          "group": "authorization.k8s.io",
63784          "kind": "SelfSubjectAccessReview",
63785          "version": "v1beta1"
63786        }
63787      }
63788    },
63789    "/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews": {
63790      "parameters": [
63791        {
63792          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63793          "in": "query",
63794          "name": "dryRun",
63795          "type": "string",
63796          "uniqueItems": true
63797        },
63798        {
63799          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63800          "in": "query",
63801          "name": "fieldManager",
63802          "type": "string",
63803          "uniqueItems": true
63804        },
63805        {
63806          "description": "If 'true', then the output is pretty printed.",
63807          "in": "query",
63808          "name": "pretty",
63809          "type": "string",
63810          "uniqueItems": true
63811        }
63812      ],
63813      "post": {
63814        "consumes": [
63815          "*/*"
63816        ],
63817        "description": "create a SelfSubjectRulesReview",
63818        "operationId": "createAuthorizationV1beta1SelfSubjectRulesReview",
63819        "parameters": [
63820          {
63821            "in": "body",
63822            "name": "body",
63823            "required": true,
63824            "schema": {
63825              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
63826            }
63827          }
63828        ],
63829        "produces": [
63830          "application/json",
63831          "application/yaml",
63832          "application/vnd.kubernetes.protobuf"
63833        ],
63834        "responses": {
63835          "200": {
63836            "description": "OK",
63837            "schema": {
63838              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
63839            }
63840          },
63841          "201": {
63842            "description": "Created",
63843            "schema": {
63844              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
63845            }
63846          },
63847          "202": {
63848            "description": "Accepted",
63849            "schema": {
63850              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview"
63851            }
63852          },
63853          "401": {
63854            "description": "Unauthorized"
63855          }
63856        },
63857        "schemes": [
63858          "https"
63859        ],
63860        "tags": [
63861          "authorization_v1beta1"
63862        ],
63863        "x-kubernetes-action": "post",
63864        "x-kubernetes-group-version-kind": {
63865          "group": "authorization.k8s.io",
63866          "kind": "SelfSubjectRulesReview",
63867          "version": "v1beta1"
63868        }
63869      }
63870    },
63871    "/apis/authorization.k8s.io/v1beta1/subjectaccessreviews": {
63872      "parameters": [
63873        {
63874          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
63875          "in": "query",
63876          "name": "dryRun",
63877          "type": "string",
63878          "uniqueItems": true
63879        },
63880        {
63881          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
63882          "in": "query",
63883          "name": "fieldManager",
63884          "type": "string",
63885          "uniqueItems": true
63886        },
63887        {
63888          "description": "If 'true', then the output is pretty printed.",
63889          "in": "query",
63890          "name": "pretty",
63891          "type": "string",
63892          "uniqueItems": true
63893        }
63894      ],
63895      "post": {
63896        "consumes": [
63897          "*/*"
63898        ],
63899        "description": "create a SubjectAccessReview",
63900        "operationId": "createAuthorizationV1beta1SubjectAccessReview",
63901        "parameters": [
63902          {
63903            "in": "body",
63904            "name": "body",
63905            "required": true,
63906            "schema": {
63907              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
63908            }
63909          }
63910        ],
63911        "produces": [
63912          "application/json",
63913          "application/yaml",
63914          "application/vnd.kubernetes.protobuf"
63915        ],
63916        "responses": {
63917          "200": {
63918            "description": "OK",
63919            "schema": {
63920              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
63921            }
63922          },
63923          "201": {
63924            "description": "Created",
63925            "schema": {
63926              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
63927            }
63928          },
63929          "202": {
63930            "description": "Accepted",
63931            "schema": {
63932              "$ref": "#/definitions/io.k8s.api.authorization.v1beta1.SubjectAccessReview"
63933            }
63934          },
63935          "401": {
63936            "description": "Unauthorized"
63937          }
63938        },
63939        "schemes": [
63940          "https"
63941        ],
63942        "tags": [
63943          "authorization_v1beta1"
63944        ],
63945        "x-kubernetes-action": "post",
63946        "x-kubernetes-group-version-kind": {
63947          "group": "authorization.k8s.io",
63948          "kind": "SubjectAccessReview",
63949          "version": "v1beta1"
63950        }
63951      }
63952    },
63953    "/apis/autoscaling/": {
63954      "get": {
63955        "consumes": [
63956          "application/json",
63957          "application/yaml",
63958          "application/vnd.kubernetes.protobuf"
63959        ],
63960        "description": "get information of a group",
63961        "operationId": "getAutoscalingAPIGroup",
63962        "produces": [
63963          "application/json",
63964          "application/yaml",
63965          "application/vnd.kubernetes.protobuf"
63966        ],
63967        "responses": {
63968          "200": {
63969            "description": "OK",
63970            "schema": {
63971              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
63972            }
63973          },
63974          "401": {
63975            "description": "Unauthorized"
63976          }
63977        },
63978        "schemes": [
63979          "https"
63980        ],
63981        "tags": [
63982          "autoscaling"
63983        ]
63984      }
63985    },
63986    "/apis/autoscaling/v1/": {
63987      "get": {
63988        "consumes": [
63989          "application/json",
63990          "application/yaml",
63991          "application/vnd.kubernetes.protobuf"
63992        ],
63993        "description": "get available resources",
63994        "operationId": "getAutoscalingV1APIResources",
63995        "produces": [
63996          "application/json",
63997          "application/yaml",
63998          "application/vnd.kubernetes.protobuf"
63999        ],
64000        "responses": {
64001          "200": {
64002            "description": "OK",
64003            "schema": {
64004              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
64005            }
64006          },
64007          "401": {
64008            "description": "Unauthorized"
64009          }
64010        },
64011        "schemes": [
64012          "https"
64013        ],
64014        "tags": [
64015          "autoscaling_v1"
64016        ]
64017      }
64018    },
64019    "/apis/autoscaling/v1/horizontalpodautoscalers": {
64020      "get": {
64021        "consumes": [
64022          "*/*"
64023        ],
64024        "description": "list or watch objects of kind HorizontalPodAutoscaler",
64025        "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
64026        "produces": [
64027          "application/json",
64028          "application/yaml",
64029          "application/vnd.kubernetes.protobuf",
64030          "application/json;stream=watch",
64031          "application/vnd.kubernetes.protobuf;stream=watch"
64032        ],
64033        "responses": {
64034          "200": {
64035            "description": "OK",
64036            "schema": {
64037              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
64038            }
64039          },
64040          "401": {
64041            "description": "Unauthorized"
64042          }
64043        },
64044        "schemes": [
64045          "https"
64046        ],
64047        "tags": [
64048          "autoscaling_v1"
64049        ],
64050        "x-kubernetes-action": "list",
64051        "x-kubernetes-group-version-kind": {
64052          "group": "autoscaling",
64053          "kind": "HorizontalPodAutoscaler",
64054          "version": "v1"
64055        }
64056      },
64057      "parameters": [
64058        {
64059          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
64060          "in": "query",
64061          "name": "allowWatchBookmarks",
64062          "type": "boolean",
64063          "uniqueItems": true
64064        },
64065        {
64066          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64067          "in": "query",
64068          "name": "continue",
64069          "type": "string",
64070          "uniqueItems": true
64071        },
64072        {
64073          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64074          "in": "query",
64075          "name": "fieldSelector",
64076          "type": "string",
64077          "uniqueItems": true
64078        },
64079        {
64080          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64081          "in": "query",
64082          "name": "labelSelector",
64083          "type": "string",
64084          "uniqueItems": true
64085        },
64086        {
64087          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64088          "in": "query",
64089          "name": "limit",
64090          "type": "integer",
64091          "uniqueItems": true
64092        },
64093        {
64094          "description": "If 'true', then the output is pretty printed.",
64095          "in": "query",
64096          "name": "pretty",
64097          "type": "string",
64098          "uniqueItems": true
64099        },
64100        {
64101          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
64102          "in": "query",
64103          "name": "resourceVersion",
64104          "type": "string",
64105          "uniqueItems": true
64106        },
64107        {
64108          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64109          "in": "query",
64110          "name": "timeoutSeconds",
64111          "type": "integer",
64112          "uniqueItems": true
64113        },
64114        {
64115          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64116          "in": "query",
64117          "name": "watch",
64118          "type": "boolean",
64119          "uniqueItems": true
64120        }
64121      ]
64122    },
64123    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": {
64124      "delete": {
64125        "consumes": [
64126          "*/*"
64127        ],
64128        "description": "delete collection of HorizontalPodAutoscaler",
64129        "operationId": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler",
64130        "parameters": [
64131          {
64132            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
64133            "in": "query",
64134            "name": "allowWatchBookmarks",
64135            "type": "boolean",
64136            "uniqueItems": true
64137          },
64138          {
64139            "in": "body",
64140            "name": "body",
64141            "schema": {
64142              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
64143            }
64144          },
64145          {
64146            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64147            "in": "query",
64148            "name": "continue",
64149            "type": "string",
64150            "uniqueItems": true
64151          },
64152          {
64153            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64154            "in": "query",
64155            "name": "dryRun",
64156            "type": "string",
64157            "uniqueItems": true
64158          },
64159          {
64160            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64161            "in": "query",
64162            "name": "fieldSelector",
64163            "type": "string",
64164            "uniqueItems": true
64165          },
64166          {
64167            "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.",
64168            "in": "query",
64169            "name": "gracePeriodSeconds",
64170            "type": "integer",
64171            "uniqueItems": true
64172          },
64173          {
64174            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64175            "in": "query",
64176            "name": "labelSelector",
64177            "type": "string",
64178            "uniqueItems": true
64179          },
64180          {
64181            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64182            "in": "query",
64183            "name": "limit",
64184            "type": "integer",
64185            "uniqueItems": true
64186          },
64187          {
64188            "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.",
64189            "in": "query",
64190            "name": "orphanDependents",
64191            "type": "boolean",
64192            "uniqueItems": true
64193          },
64194          {
64195            "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.",
64196            "in": "query",
64197            "name": "propagationPolicy",
64198            "type": "string",
64199            "uniqueItems": true
64200          },
64201          {
64202            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
64203            "in": "query",
64204            "name": "resourceVersion",
64205            "type": "string",
64206            "uniqueItems": true
64207          },
64208          {
64209            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64210            "in": "query",
64211            "name": "timeoutSeconds",
64212            "type": "integer",
64213            "uniqueItems": true
64214          },
64215          {
64216            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64217            "in": "query",
64218            "name": "watch",
64219            "type": "boolean",
64220            "uniqueItems": true
64221          }
64222        ],
64223        "produces": [
64224          "application/json",
64225          "application/yaml",
64226          "application/vnd.kubernetes.protobuf"
64227        ],
64228        "responses": {
64229          "200": {
64230            "description": "OK",
64231            "schema": {
64232              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64233            }
64234          },
64235          "401": {
64236            "description": "Unauthorized"
64237          }
64238        },
64239        "schemes": [
64240          "https"
64241        ],
64242        "tags": [
64243          "autoscaling_v1"
64244        ],
64245        "x-kubernetes-action": "deletecollection",
64246        "x-kubernetes-group-version-kind": {
64247          "group": "autoscaling",
64248          "kind": "HorizontalPodAutoscaler",
64249          "version": "v1"
64250        }
64251      },
64252      "get": {
64253        "consumes": [
64254          "*/*"
64255        ],
64256        "description": "list or watch objects of kind HorizontalPodAutoscaler",
64257        "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
64258        "parameters": [
64259          {
64260            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
64261            "in": "query",
64262            "name": "allowWatchBookmarks",
64263            "type": "boolean",
64264            "uniqueItems": true
64265          },
64266          {
64267            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64268            "in": "query",
64269            "name": "continue",
64270            "type": "string",
64271            "uniqueItems": true
64272          },
64273          {
64274            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64275            "in": "query",
64276            "name": "fieldSelector",
64277            "type": "string",
64278            "uniqueItems": true
64279          },
64280          {
64281            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64282            "in": "query",
64283            "name": "labelSelector",
64284            "type": "string",
64285            "uniqueItems": true
64286          },
64287          {
64288            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64289            "in": "query",
64290            "name": "limit",
64291            "type": "integer",
64292            "uniqueItems": true
64293          },
64294          {
64295            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
64296            "in": "query",
64297            "name": "resourceVersion",
64298            "type": "string",
64299            "uniqueItems": true
64300          },
64301          {
64302            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
64303            "in": "query",
64304            "name": "timeoutSeconds",
64305            "type": "integer",
64306            "uniqueItems": true
64307          },
64308          {
64309            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
64310            "in": "query",
64311            "name": "watch",
64312            "type": "boolean",
64313            "uniqueItems": true
64314          }
64315        ],
64316        "produces": [
64317          "application/json",
64318          "application/yaml",
64319          "application/vnd.kubernetes.protobuf",
64320          "application/json;stream=watch",
64321          "application/vnd.kubernetes.protobuf;stream=watch"
64322        ],
64323        "responses": {
64324          "200": {
64325            "description": "OK",
64326            "schema": {
64327              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList"
64328            }
64329          },
64330          "401": {
64331            "description": "Unauthorized"
64332          }
64333        },
64334        "schemes": [
64335          "https"
64336        ],
64337        "tags": [
64338          "autoscaling_v1"
64339        ],
64340        "x-kubernetes-action": "list",
64341        "x-kubernetes-group-version-kind": {
64342          "group": "autoscaling",
64343          "kind": "HorizontalPodAutoscaler",
64344          "version": "v1"
64345        }
64346      },
64347      "parameters": [
64348        {
64349          "description": "object name and auth scope, such as for teams and projects",
64350          "in": "path",
64351          "name": "namespace",
64352          "required": true,
64353          "type": "string",
64354          "uniqueItems": true
64355        },
64356        {
64357          "description": "If 'true', then the output is pretty printed.",
64358          "in": "query",
64359          "name": "pretty",
64360          "type": "string",
64361          "uniqueItems": true
64362        }
64363      ],
64364      "post": {
64365        "consumes": [
64366          "*/*"
64367        ],
64368        "description": "create a HorizontalPodAutoscaler",
64369        "operationId": "createAutoscalingV1NamespacedHorizontalPodAutoscaler",
64370        "parameters": [
64371          {
64372            "in": "body",
64373            "name": "body",
64374            "required": true,
64375            "schema": {
64376              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64377            }
64378          },
64379          {
64380            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64381            "in": "query",
64382            "name": "dryRun",
64383            "type": "string",
64384            "uniqueItems": true
64385          },
64386          {
64387            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64388            "in": "query",
64389            "name": "fieldManager",
64390            "type": "string",
64391            "uniqueItems": true
64392          }
64393        ],
64394        "produces": [
64395          "application/json",
64396          "application/yaml",
64397          "application/vnd.kubernetes.protobuf"
64398        ],
64399        "responses": {
64400          "200": {
64401            "description": "OK",
64402            "schema": {
64403              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64404            }
64405          },
64406          "201": {
64407            "description": "Created",
64408            "schema": {
64409              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64410            }
64411          },
64412          "202": {
64413            "description": "Accepted",
64414            "schema": {
64415              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64416            }
64417          },
64418          "401": {
64419            "description": "Unauthorized"
64420          }
64421        },
64422        "schemes": [
64423          "https"
64424        ],
64425        "tags": [
64426          "autoscaling_v1"
64427        ],
64428        "x-kubernetes-action": "post",
64429        "x-kubernetes-group-version-kind": {
64430          "group": "autoscaling",
64431          "kind": "HorizontalPodAutoscaler",
64432          "version": "v1"
64433        }
64434      }
64435    },
64436    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
64437      "delete": {
64438        "consumes": [
64439          "*/*"
64440        ],
64441        "description": "delete a HorizontalPodAutoscaler",
64442        "operationId": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler",
64443        "parameters": [
64444          {
64445            "in": "body",
64446            "name": "body",
64447            "schema": {
64448              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
64449            }
64450          },
64451          {
64452            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64453            "in": "query",
64454            "name": "dryRun",
64455            "type": "string",
64456            "uniqueItems": true
64457          },
64458          {
64459            "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.",
64460            "in": "query",
64461            "name": "gracePeriodSeconds",
64462            "type": "integer",
64463            "uniqueItems": true
64464          },
64465          {
64466            "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.",
64467            "in": "query",
64468            "name": "orphanDependents",
64469            "type": "boolean",
64470            "uniqueItems": true
64471          },
64472          {
64473            "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.",
64474            "in": "query",
64475            "name": "propagationPolicy",
64476            "type": "string",
64477            "uniqueItems": true
64478          }
64479        ],
64480        "produces": [
64481          "application/json",
64482          "application/yaml",
64483          "application/vnd.kubernetes.protobuf"
64484        ],
64485        "responses": {
64486          "200": {
64487            "description": "OK",
64488            "schema": {
64489              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64490            }
64491          },
64492          "202": {
64493            "description": "Accepted",
64494            "schema": {
64495              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
64496            }
64497          },
64498          "401": {
64499            "description": "Unauthorized"
64500          }
64501        },
64502        "schemes": [
64503          "https"
64504        ],
64505        "tags": [
64506          "autoscaling_v1"
64507        ],
64508        "x-kubernetes-action": "delete",
64509        "x-kubernetes-group-version-kind": {
64510          "group": "autoscaling",
64511          "kind": "HorizontalPodAutoscaler",
64512          "version": "v1"
64513        }
64514      },
64515      "get": {
64516        "consumes": [
64517          "*/*"
64518        ],
64519        "description": "read the specified HorizontalPodAutoscaler",
64520        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscaler",
64521        "parameters": [
64522          {
64523            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
64524            "in": "query",
64525            "name": "exact",
64526            "type": "boolean",
64527            "uniqueItems": true
64528          },
64529          {
64530            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
64531            "in": "query",
64532            "name": "export",
64533            "type": "boolean",
64534            "uniqueItems": true
64535          }
64536        ],
64537        "produces": [
64538          "application/json",
64539          "application/yaml",
64540          "application/vnd.kubernetes.protobuf"
64541        ],
64542        "responses": {
64543          "200": {
64544            "description": "OK",
64545            "schema": {
64546              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64547            }
64548          },
64549          "401": {
64550            "description": "Unauthorized"
64551          }
64552        },
64553        "schemes": [
64554          "https"
64555        ],
64556        "tags": [
64557          "autoscaling_v1"
64558        ],
64559        "x-kubernetes-action": "get",
64560        "x-kubernetes-group-version-kind": {
64561          "group": "autoscaling",
64562          "kind": "HorizontalPodAutoscaler",
64563          "version": "v1"
64564        }
64565      },
64566      "parameters": [
64567        {
64568          "description": "name of the HorizontalPodAutoscaler",
64569          "in": "path",
64570          "name": "name",
64571          "required": true,
64572          "type": "string",
64573          "uniqueItems": true
64574        },
64575        {
64576          "description": "object name and auth scope, such as for teams and projects",
64577          "in": "path",
64578          "name": "namespace",
64579          "required": true,
64580          "type": "string",
64581          "uniqueItems": true
64582        },
64583        {
64584          "description": "If 'true', then the output is pretty printed.",
64585          "in": "query",
64586          "name": "pretty",
64587          "type": "string",
64588          "uniqueItems": true
64589        }
64590      ],
64591      "patch": {
64592        "consumes": [
64593          "application/json-patch+json",
64594          "application/merge-patch+json",
64595          "application/strategic-merge-patch+json"
64596        ],
64597        "description": "partially update the specified HorizontalPodAutoscaler",
64598        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler",
64599        "parameters": [
64600          {
64601            "in": "body",
64602            "name": "body",
64603            "required": true,
64604            "schema": {
64605              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64606            }
64607          },
64608          {
64609            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64610            "in": "query",
64611            "name": "dryRun",
64612            "type": "string",
64613            "uniqueItems": true
64614          },
64615          {
64616            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
64617            "in": "query",
64618            "name": "fieldManager",
64619            "type": "string",
64620            "uniqueItems": true
64621          },
64622          {
64623            "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.",
64624            "in": "query",
64625            "name": "force",
64626            "type": "boolean",
64627            "uniqueItems": true
64628          }
64629        ],
64630        "produces": [
64631          "application/json",
64632          "application/yaml",
64633          "application/vnd.kubernetes.protobuf"
64634        ],
64635        "responses": {
64636          "200": {
64637            "description": "OK",
64638            "schema": {
64639              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64640            }
64641          },
64642          "401": {
64643            "description": "Unauthorized"
64644          }
64645        },
64646        "schemes": [
64647          "https"
64648        ],
64649        "tags": [
64650          "autoscaling_v1"
64651        ],
64652        "x-kubernetes-action": "patch",
64653        "x-kubernetes-group-version-kind": {
64654          "group": "autoscaling",
64655          "kind": "HorizontalPodAutoscaler",
64656          "version": "v1"
64657        }
64658      },
64659      "put": {
64660        "consumes": [
64661          "*/*"
64662        ],
64663        "description": "replace the specified HorizontalPodAutoscaler",
64664        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler",
64665        "parameters": [
64666          {
64667            "in": "body",
64668            "name": "body",
64669            "required": true,
64670            "schema": {
64671              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64672            }
64673          },
64674          {
64675            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64676            "in": "query",
64677            "name": "dryRun",
64678            "type": "string",
64679            "uniqueItems": true
64680          },
64681          {
64682            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64683            "in": "query",
64684            "name": "fieldManager",
64685            "type": "string",
64686            "uniqueItems": true
64687          }
64688        ],
64689        "produces": [
64690          "application/json",
64691          "application/yaml",
64692          "application/vnd.kubernetes.protobuf"
64693        ],
64694        "responses": {
64695          "200": {
64696            "description": "OK",
64697            "schema": {
64698              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64699            }
64700          },
64701          "201": {
64702            "description": "Created",
64703            "schema": {
64704              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64705            }
64706          },
64707          "401": {
64708            "description": "Unauthorized"
64709          }
64710        },
64711        "schemes": [
64712          "https"
64713        ],
64714        "tags": [
64715          "autoscaling_v1"
64716        ],
64717        "x-kubernetes-action": "put",
64718        "x-kubernetes-group-version-kind": {
64719          "group": "autoscaling",
64720          "kind": "HorizontalPodAutoscaler",
64721          "version": "v1"
64722        }
64723      }
64724    },
64725    "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
64726      "get": {
64727        "consumes": [
64728          "*/*"
64729        ],
64730        "description": "read status of the specified HorizontalPodAutoscaler",
64731        "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
64732        "produces": [
64733          "application/json",
64734          "application/yaml",
64735          "application/vnd.kubernetes.protobuf"
64736        ],
64737        "responses": {
64738          "200": {
64739            "description": "OK",
64740            "schema": {
64741              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64742            }
64743          },
64744          "401": {
64745            "description": "Unauthorized"
64746          }
64747        },
64748        "schemes": [
64749          "https"
64750        ],
64751        "tags": [
64752          "autoscaling_v1"
64753        ],
64754        "x-kubernetes-action": "get",
64755        "x-kubernetes-group-version-kind": {
64756          "group": "autoscaling",
64757          "kind": "HorizontalPodAutoscaler",
64758          "version": "v1"
64759        }
64760      },
64761      "parameters": [
64762        {
64763          "description": "name of the HorizontalPodAutoscaler",
64764          "in": "path",
64765          "name": "name",
64766          "required": true,
64767          "type": "string",
64768          "uniqueItems": true
64769        },
64770        {
64771          "description": "object name and auth scope, such as for teams and projects",
64772          "in": "path",
64773          "name": "namespace",
64774          "required": true,
64775          "type": "string",
64776          "uniqueItems": true
64777        },
64778        {
64779          "description": "If 'true', then the output is pretty printed.",
64780          "in": "query",
64781          "name": "pretty",
64782          "type": "string",
64783          "uniqueItems": true
64784        }
64785      ],
64786      "patch": {
64787        "consumes": [
64788          "application/json-patch+json",
64789          "application/merge-patch+json",
64790          "application/strategic-merge-patch+json"
64791        ],
64792        "description": "partially update status of the specified HorizontalPodAutoscaler",
64793        "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
64794        "parameters": [
64795          {
64796            "in": "body",
64797            "name": "body",
64798            "required": true,
64799            "schema": {
64800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
64801            }
64802          },
64803          {
64804            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64805            "in": "query",
64806            "name": "dryRun",
64807            "type": "string",
64808            "uniqueItems": true
64809          },
64810          {
64811            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
64812            "in": "query",
64813            "name": "fieldManager",
64814            "type": "string",
64815            "uniqueItems": true
64816          },
64817          {
64818            "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.",
64819            "in": "query",
64820            "name": "force",
64821            "type": "boolean",
64822            "uniqueItems": true
64823          }
64824        ],
64825        "produces": [
64826          "application/json",
64827          "application/yaml",
64828          "application/vnd.kubernetes.protobuf"
64829        ],
64830        "responses": {
64831          "200": {
64832            "description": "OK",
64833            "schema": {
64834              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64835            }
64836          },
64837          "401": {
64838            "description": "Unauthorized"
64839          }
64840        },
64841        "schemes": [
64842          "https"
64843        ],
64844        "tags": [
64845          "autoscaling_v1"
64846        ],
64847        "x-kubernetes-action": "patch",
64848        "x-kubernetes-group-version-kind": {
64849          "group": "autoscaling",
64850          "kind": "HorizontalPodAutoscaler",
64851          "version": "v1"
64852        }
64853      },
64854      "put": {
64855        "consumes": [
64856          "*/*"
64857        ],
64858        "description": "replace status of the specified HorizontalPodAutoscaler",
64859        "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
64860        "parameters": [
64861          {
64862            "in": "body",
64863            "name": "body",
64864            "required": true,
64865            "schema": {
64866              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64867            }
64868          },
64869          {
64870            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
64871            "in": "query",
64872            "name": "dryRun",
64873            "type": "string",
64874            "uniqueItems": true
64875          },
64876          {
64877            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
64878            "in": "query",
64879            "name": "fieldManager",
64880            "type": "string",
64881            "uniqueItems": true
64882          }
64883        ],
64884        "produces": [
64885          "application/json",
64886          "application/yaml",
64887          "application/vnd.kubernetes.protobuf"
64888        ],
64889        "responses": {
64890          "200": {
64891            "description": "OK",
64892            "schema": {
64893              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64894            }
64895          },
64896          "201": {
64897            "description": "Created",
64898            "schema": {
64899              "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler"
64900            }
64901          },
64902          "401": {
64903            "description": "Unauthorized"
64904          }
64905        },
64906        "schemes": [
64907          "https"
64908        ],
64909        "tags": [
64910          "autoscaling_v1"
64911        ],
64912        "x-kubernetes-action": "put",
64913        "x-kubernetes-group-version-kind": {
64914          "group": "autoscaling",
64915          "kind": "HorizontalPodAutoscaler",
64916          "version": "v1"
64917        }
64918      }
64919    },
64920    "/apis/autoscaling/v1/watch/horizontalpodautoscalers": {
64921      "get": {
64922        "consumes": [
64923          "*/*"
64924        ],
64925        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
64926        "operationId": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces",
64927        "produces": [
64928          "application/json",
64929          "application/yaml",
64930          "application/vnd.kubernetes.protobuf",
64931          "application/json;stream=watch",
64932          "application/vnd.kubernetes.protobuf;stream=watch"
64933        ],
64934        "responses": {
64935          "200": {
64936            "description": "OK",
64937            "schema": {
64938              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
64939            }
64940          },
64941          "401": {
64942            "description": "Unauthorized"
64943          }
64944        },
64945        "schemes": [
64946          "https"
64947        ],
64948        "tags": [
64949          "autoscaling_v1"
64950        ],
64951        "x-kubernetes-action": "watchlist",
64952        "x-kubernetes-group-version-kind": {
64953          "group": "autoscaling",
64954          "kind": "HorizontalPodAutoscaler",
64955          "version": "v1"
64956        }
64957      },
64958      "parameters": [
64959        {
64960          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
64961          "in": "query",
64962          "name": "allowWatchBookmarks",
64963          "type": "boolean",
64964          "uniqueItems": true
64965        },
64966        {
64967          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
64968          "in": "query",
64969          "name": "continue",
64970          "type": "string",
64971          "uniqueItems": true
64972        },
64973        {
64974          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
64975          "in": "query",
64976          "name": "fieldSelector",
64977          "type": "string",
64978          "uniqueItems": true
64979        },
64980        {
64981          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
64982          "in": "query",
64983          "name": "labelSelector",
64984          "type": "string",
64985          "uniqueItems": true
64986        },
64987        {
64988          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
64989          "in": "query",
64990          "name": "limit",
64991          "type": "integer",
64992          "uniqueItems": true
64993        },
64994        {
64995          "description": "If 'true', then the output is pretty printed.",
64996          "in": "query",
64997          "name": "pretty",
64998          "type": "string",
64999          "uniqueItems": true
65000        },
65001        {
65002          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
65003          "in": "query",
65004          "name": "resourceVersion",
65005          "type": "string",
65006          "uniqueItems": true
65007        },
65008        {
65009          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65010          "in": "query",
65011          "name": "timeoutSeconds",
65012          "type": "integer",
65013          "uniqueItems": true
65014        },
65015        {
65016          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65017          "in": "query",
65018          "name": "watch",
65019          "type": "boolean",
65020          "uniqueItems": true
65021        }
65022      ]
65023    },
65024    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
65025      "get": {
65026        "consumes": [
65027          "*/*"
65028        ],
65029        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
65030        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList",
65031        "produces": [
65032          "application/json",
65033          "application/yaml",
65034          "application/vnd.kubernetes.protobuf",
65035          "application/json;stream=watch",
65036          "application/vnd.kubernetes.protobuf;stream=watch"
65037        ],
65038        "responses": {
65039          "200": {
65040            "description": "OK",
65041            "schema": {
65042              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65043            }
65044          },
65045          "401": {
65046            "description": "Unauthorized"
65047          }
65048        },
65049        "schemes": [
65050          "https"
65051        ],
65052        "tags": [
65053          "autoscaling_v1"
65054        ],
65055        "x-kubernetes-action": "watchlist",
65056        "x-kubernetes-group-version-kind": {
65057          "group": "autoscaling",
65058          "kind": "HorizontalPodAutoscaler",
65059          "version": "v1"
65060        }
65061      },
65062      "parameters": [
65063        {
65064          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
65065          "in": "query",
65066          "name": "allowWatchBookmarks",
65067          "type": "boolean",
65068          "uniqueItems": true
65069        },
65070        {
65071          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65072          "in": "query",
65073          "name": "continue",
65074          "type": "string",
65075          "uniqueItems": true
65076        },
65077        {
65078          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65079          "in": "query",
65080          "name": "fieldSelector",
65081          "type": "string",
65082          "uniqueItems": true
65083        },
65084        {
65085          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65086          "in": "query",
65087          "name": "labelSelector",
65088          "type": "string",
65089          "uniqueItems": true
65090        },
65091        {
65092          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65093          "in": "query",
65094          "name": "limit",
65095          "type": "integer",
65096          "uniqueItems": true
65097        },
65098        {
65099          "description": "object name and auth scope, such as for teams and projects",
65100          "in": "path",
65101          "name": "namespace",
65102          "required": true,
65103          "type": "string",
65104          "uniqueItems": true
65105        },
65106        {
65107          "description": "If 'true', then the output is pretty printed.",
65108          "in": "query",
65109          "name": "pretty",
65110          "type": "string",
65111          "uniqueItems": true
65112        },
65113        {
65114          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
65115          "in": "query",
65116          "name": "resourceVersion",
65117          "type": "string",
65118          "uniqueItems": true
65119        },
65120        {
65121          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65122          "in": "query",
65123          "name": "timeoutSeconds",
65124          "type": "integer",
65125          "uniqueItems": true
65126        },
65127        {
65128          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65129          "in": "query",
65130          "name": "watch",
65131          "type": "boolean",
65132          "uniqueItems": true
65133        }
65134      ]
65135    },
65136    "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
65137      "get": {
65138        "consumes": [
65139          "*/*"
65140        ],
65141        "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.",
65142        "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler",
65143        "produces": [
65144          "application/json",
65145          "application/yaml",
65146          "application/vnd.kubernetes.protobuf",
65147          "application/json;stream=watch",
65148          "application/vnd.kubernetes.protobuf;stream=watch"
65149        ],
65150        "responses": {
65151          "200": {
65152            "description": "OK",
65153            "schema": {
65154              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
65155            }
65156          },
65157          "401": {
65158            "description": "Unauthorized"
65159          }
65160        },
65161        "schemes": [
65162          "https"
65163        ],
65164        "tags": [
65165          "autoscaling_v1"
65166        ],
65167        "x-kubernetes-action": "watch",
65168        "x-kubernetes-group-version-kind": {
65169          "group": "autoscaling",
65170          "kind": "HorizontalPodAutoscaler",
65171          "version": "v1"
65172        }
65173      },
65174      "parameters": [
65175        {
65176          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
65177          "in": "query",
65178          "name": "allowWatchBookmarks",
65179          "type": "boolean",
65180          "uniqueItems": true
65181        },
65182        {
65183          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65184          "in": "query",
65185          "name": "continue",
65186          "type": "string",
65187          "uniqueItems": true
65188        },
65189        {
65190          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65191          "in": "query",
65192          "name": "fieldSelector",
65193          "type": "string",
65194          "uniqueItems": true
65195        },
65196        {
65197          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65198          "in": "query",
65199          "name": "labelSelector",
65200          "type": "string",
65201          "uniqueItems": true
65202        },
65203        {
65204          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65205          "in": "query",
65206          "name": "limit",
65207          "type": "integer",
65208          "uniqueItems": true
65209        },
65210        {
65211          "description": "name of the HorizontalPodAutoscaler",
65212          "in": "path",
65213          "name": "name",
65214          "required": true,
65215          "type": "string",
65216          "uniqueItems": true
65217        },
65218        {
65219          "description": "object name and auth scope, such as for teams and projects",
65220          "in": "path",
65221          "name": "namespace",
65222          "required": true,
65223          "type": "string",
65224          "uniqueItems": true
65225        },
65226        {
65227          "description": "If 'true', then the output is pretty printed.",
65228          "in": "query",
65229          "name": "pretty",
65230          "type": "string",
65231          "uniqueItems": true
65232        },
65233        {
65234          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
65235          "in": "query",
65236          "name": "resourceVersion",
65237          "type": "string",
65238          "uniqueItems": true
65239        },
65240        {
65241          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65242          "in": "query",
65243          "name": "timeoutSeconds",
65244          "type": "integer",
65245          "uniqueItems": true
65246        },
65247        {
65248          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65249          "in": "query",
65250          "name": "watch",
65251          "type": "boolean",
65252          "uniqueItems": true
65253        }
65254      ]
65255    },
65256    "/apis/autoscaling/v2beta1/": {
65257      "get": {
65258        "consumes": [
65259          "application/json",
65260          "application/yaml",
65261          "application/vnd.kubernetes.protobuf"
65262        ],
65263        "description": "get available resources",
65264        "operationId": "getAutoscalingV2beta1APIResources",
65265        "produces": [
65266          "application/json",
65267          "application/yaml",
65268          "application/vnd.kubernetes.protobuf"
65269        ],
65270        "responses": {
65271          "200": {
65272            "description": "OK",
65273            "schema": {
65274              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
65275            }
65276          },
65277          "401": {
65278            "description": "Unauthorized"
65279          }
65280        },
65281        "schemes": [
65282          "https"
65283        ],
65284        "tags": [
65285          "autoscaling_v2beta1"
65286        ]
65287      }
65288    },
65289    "/apis/autoscaling/v2beta1/horizontalpodautoscalers": {
65290      "get": {
65291        "consumes": [
65292          "*/*"
65293        ],
65294        "description": "list or watch objects of kind HorizontalPodAutoscaler",
65295        "operationId": "listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces",
65296        "produces": [
65297          "application/json",
65298          "application/yaml",
65299          "application/vnd.kubernetes.protobuf",
65300          "application/json;stream=watch",
65301          "application/vnd.kubernetes.protobuf;stream=watch"
65302        ],
65303        "responses": {
65304          "200": {
65305            "description": "OK",
65306            "schema": {
65307              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
65308            }
65309          },
65310          "401": {
65311            "description": "Unauthorized"
65312          }
65313        },
65314        "schemes": [
65315          "https"
65316        ],
65317        "tags": [
65318          "autoscaling_v2beta1"
65319        ],
65320        "x-kubernetes-action": "list",
65321        "x-kubernetes-group-version-kind": {
65322          "group": "autoscaling",
65323          "kind": "HorizontalPodAutoscaler",
65324          "version": "v2beta1"
65325        }
65326      },
65327      "parameters": [
65328        {
65329          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
65330          "in": "query",
65331          "name": "allowWatchBookmarks",
65332          "type": "boolean",
65333          "uniqueItems": true
65334        },
65335        {
65336          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65337          "in": "query",
65338          "name": "continue",
65339          "type": "string",
65340          "uniqueItems": true
65341        },
65342        {
65343          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65344          "in": "query",
65345          "name": "fieldSelector",
65346          "type": "string",
65347          "uniqueItems": true
65348        },
65349        {
65350          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65351          "in": "query",
65352          "name": "labelSelector",
65353          "type": "string",
65354          "uniqueItems": true
65355        },
65356        {
65357          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65358          "in": "query",
65359          "name": "limit",
65360          "type": "integer",
65361          "uniqueItems": true
65362        },
65363        {
65364          "description": "If 'true', then the output is pretty printed.",
65365          "in": "query",
65366          "name": "pretty",
65367          "type": "string",
65368          "uniqueItems": true
65369        },
65370        {
65371          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
65372          "in": "query",
65373          "name": "resourceVersion",
65374          "type": "string",
65375          "uniqueItems": true
65376        },
65377        {
65378          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65379          "in": "query",
65380          "name": "timeoutSeconds",
65381          "type": "integer",
65382          "uniqueItems": true
65383        },
65384        {
65385          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65386          "in": "query",
65387          "name": "watch",
65388          "type": "boolean",
65389          "uniqueItems": true
65390        }
65391      ]
65392    },
65393    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers": {
65394      "delete": {
65395        "consumes": [
65396          "*/*"
65397        ],
65398        "description": "delete collection of HorizontalPodAutoscaler",
65399        "operationId": "deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler",
65400        "parameters": [
65401          {
65402            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
65403            "in": "query",
65404            "name": "allowWatchBookmarks",
65405            "type": "boolean",
65406            "uniqueItems": true
65407          },
65408          {
65409            "in": "body",
65410            "name": "body",
65411            "schema": {
65412              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65413            }
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": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65424            "in": "query",
65425            "name": "dryRun",
65426            "type": "string",
65427            "uniqueItems": true
65428          },
65429          {
65430            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65431            "in": "query",
65432            "name": "fieldSelector",
65433            "type": "string",
65434            "uniqueItems": true
65435          },
65436          {
65437            "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.",
65438            "in": "query",
65439            "name": "gracePeriodSeconds",
65440            "type": "integer",
65441            "uniqueItems": true
65442          },
65443          {
65444            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65445            "in": "query",
65446            "name": "labelSelector",
65447            "type": "string",
65448            "uniqueItems": true
65449          },
65450          {
65451            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65452            "in": "query",
65453            "name": "limit",
65454            "type": "integer",
65455            "uniqueItems": true
65456          },
65457          {
65458            "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.",
65459            "in": "query",
65460            "name": "orphanDependents",
65461            "type": "boolean",
65462            "uniqueItems": true
65463          },
65464          {
65465            "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.",
65466            "in": "query",
65467            "name": "propagationPolicy",
65468            "type": "string",
65469            "uniqueItems": true
65470          },
65471          {
65472            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
65473            "in": "query",
65474            "name": "resourceVersion",
65475            "type": "string",
65476            "uniqueItems": true
65477          },
65478          {
65479            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65480            "in": "query",
65481            "name": "timeoutSeconds",
65482            "type": "integer",
65483            "uniqueItems": true
65484          },
65485          {
65486            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65487            "in": "query",
65488            "name": "watch",
65489            "type": "boolean",
65490            "uniqueItems": true
65491          }
65492        ],
65493        "produces": [
65494          "application/json",
65495          "application/yaml",
65496          "application/vnd.kubernetes.protobuf"
65497        ],
65498        "responses": {
65499          "200": {
65500            "description": "OK",
65501            "schema": {
65502              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65503            }
65504          },
65505          "401": {
65506            "description": "Unauthorized"
65507          }
65508        },
65509        "schemes": [
65510          "https"
65511        ],
65512        "tags": [
65513          "autoscaling_v2beta1"
65514        ],
65515        "x-kubernetes-action": "deletecollection",
65516        "x-kubernetes-group-version-kind": {
65517          "group": "autoscaling",
65518          "kind": "HorizontalPodAutoscaler",
65519          "version": "v2beta1"
65520        }
65521      },
65522      "get": {
65523        "consumes": [
65524          "*/*"
65525        ],
65526        "description": "list or watch objects of kind HorizontalPodAutoscaler",
65527        "operationId": "listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
65528        "parameters": [
65529          {
65530            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
65531            "in": "query",
65532            "name": "allowWatchBookmarks",
65533            "type": "boolean",
65534            "uniqueItems": true
65535          },
65536          {
65537            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
65538            "in": "query",
65539            "name": "continue",
65540            "type": "string",
65541            "uniqueItems": true
65542          },
65543          {
65544            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
65545            "in": "query",
65546            "name": "fieldSelector",
65547            "type": "string",
65548            "uniqueItems": true
65549          },
65550          {
65551            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
65552            "in": "query",
65553            "name": "labelSelector",
65554            "type": "string",
65555            "uniqueItems": true
65556          },
65557          {
65558            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
65559            "in": "query",
65560            "name": "limit",
65561            "type": "integer",
65562            "uniqueItems": true
65563          },
65564          {
65565            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
65566            "in": "query",
65567            "name": "resourceVersion",
65568            "type": "string",
65569            "uniqueItems": true
65570          },
65571          {
65572            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
65573            "in": "query",
65574            "name": "timeoutSeconds",
65575            "type": "integer",
65576            "uniqueItems": true
65577          },
65578          {
65579            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
65580            "in": "query",
65581            "name": "watch",
65582            "type": "boolean",
65583            "uniqueItems": true
65584          }
65585        ],
65586        "produces": [
65587          "application/json",
65588          "application/yaml",
65589          "application/vnd.kubernetes.protobuf",
65590          "application/json;stream=watch",
65591          "application/vnd.kubernetes.protobuf;stream=watch"
65592        ],
65593        "responses": {
65594          "200": {
65595            "description": "OK",
65596            "schema": {
65597              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscalerList"
65598            }
65599          },
65600          "401": {
65601            "description": "Unauthorized"
65602          }
65603        },
65604        "schemes": [
65605          "https"
65606        ],
65607        "tags": [
65608          "autoscaling_v2beta1"
65609        ],
65610        "x-kubernetes-action": "list",
65611        "x-kubernetes-group-version-kind": {
65612          "group": "autoscaling",
65613          "kind": "HorizontalPodAutoscaler",
65614          "version": "v2beta1"
65615        }
65616      },
65617      "parameters": [
65618        {
65619          "description": "object name and auth scope, such as for teams and projects",
65620          "in": "path",
65621          "name": "namespace",
65622          "required": true,
65623          "type": "string",
65624          "uniqueItems": true
65625        },
65626        {
65627          "description": "If 'true', then the output is pretty printed.",
65628          "in": "query",
65629          "name": "pretty",
65630          "type": "string",
65631          "uniqueItems": true
65632        }
65633      ],
65634      "post": {
65635        "consumes": [
65636          "*/*"
65637        ],
65638        "description": "create a HorizontalPodAutoscaler",
65639        "operationId": "createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
65640        "parameters": [
65641          {
65642            "in": "body",
65643            "name": "body",
65644            "required": true,
65645            "schema": {
65646              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65647            }
65648          },
65649          {
65650            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65651            "in": "query",
65652            "name": "dryRun",
65653            "type": "string",
65654            "uniqueItems": true
65655          },
65656          {
65657            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65658            "in": "query",
65659            "name": "fieldManager",
65660            "type": "string",
65661            "uniqueItems": true
65662          }
65663        ],
65664        "produces": [
65665          "application/json",
65666          "application/yaml",
65667          "application/vnd.kubernetes.protobuf"
65668        ],
65669        "responses": {
65670          "200": {
65671            "description": "OK",
65672            "schema": {
65673              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65674            }
65675          },
65676          "201": {
65677            "description": "Created",
65678            "schema": {
65679              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65680            }
65681          },
65682          "202": {
65683            "description": "Accepted",
65684            "schema": {
65685              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65686            }
65687          },
65688          "401": {
65689            "description": "Unauthorized"
65690          }
65691        },
65692        "schemes": [
65693          "https"
65694        ],
65695        "tags": [
65696          "autoscaling_v2beta1"
65697        ],
65698        "x-kubernetes-action": "post",
65699        "x-kubernetes-group-version-kind": {
65700          "group": "autoscaling",
65701          "kind": "HorizontalPodAutoscaler",
65702          "version": "v2beta1"
65703        }
65704      }
65705    },
65706    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
65707      "delete": {
65708        "consumes": [
65709          "*/*"
65710        ],
65711        "description": "delete a HorizontalPodAutoscaler",
65712        "operationId": "deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
65713        "parameters": [
65714          {
65715            "in": "body",
65716            "name": "body",
65717            "schema": {
65718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
65719            }
65720          },
65721          {
65722            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65723            "in": "query",
65724            "name": "dryRun",
65725            "type": "string",
65726            "uniqueItems": true
65727          },
65728          {
65729            "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.",
65730            "in": "query",
65731            "name": "gracePeriodSeconds",
65732            "type": "integer",
65733            "uniqueItems": true
65734          },
65735          {
65736            "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.",
65737            "in": "query",
65738            "name": "orphanDependents",
65739            "type": "boolean",
65740            "uniqueItems": true
65741          },
65742          {
65743            "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.",
65744            "in": "query",
65745            "name": "propagationPolicy",
65746            "type": "string",
65747            "uniqueItems": true
65748          }
65749        ],
65750        "produces": [
65751          "application/json",
65752          "application/yaml",
65753          "application/vnd.kubernetes.protobuf"
65754        ],
65755        "responses": {
65756          "200": {
65757            "description": "OK",
65758            "schema": {
65759              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65760            }
65761          },
65762          "202": {
65763            "description": "Accepted",
65764            "schema": {
65765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
65766            }
65767          },
65768          "401": {
65769            "description": "Unauthorized"
65770          }
65771        },
65772        "schemes": [
65773          "https"
65774        ],
65775        "tags": [
65776          "autoscaling_v2beta1"
65777        ],
65778        "x-kubernetes-action": "delete",
65779        "x-kubernetes-group-version-kind": {
65780          "group": "autoscaling",
65781          "kind": "HorizontalPodAutoscaler",
65782          "version": "v2beta1"
65783        }
65784      },
65785      "get": {
65786        "consumes": [
65787          "*/*"
65788        ],
65789        "description": "read the specified HorizontalPodAutoscaler",
65790        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
65791        "parameters": [
65792          {
65793            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
65794            "in": "query",
65795            "name": "exact",
65796            "type": "boolean",
65797            "uniqueItems": true
65798          },
65799          {
65800            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
65801            "in": "query",
65802            "name": "export",
65803            "type": "boolean",
65804            "uniqueItems": true
65805          }
65806        ],
65807        "produces": [
65808          "application/json",
65809          "application/yaml",
65810          "application/vnd.kubernetes.protobuf"
65811        ],
65812        "responses": {
65813          "200": {
65814            "description": "OK",
65815            "schema": {
65816              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65817            }
65818          },
65819          "401": {
65820            "description": "Unauthorized"
65821          }
65822        },
65823        "schemes": [
65824          "https"
65825        ],
65826        "tags": [
65827          "autoscaling_v2beta1"
65828        ],
65829        "x-kubernetes-action": "get",
65830        "x-kubernetes-group-version-kind": {
65831          "group": "autoscaling",
65832          "kind": "HorizontalPodAutoscaler",
65833          "version": "v2beta1"
65834        }
65835      },
65836      "parameters": [
65837        {
65838          "description": "name of the HorizontalPodAutoscaler",
65839          "in": "path",
65840          "name": "name",
65841          "required": true,
65842          "type": "string",
65843          "uniqueItems": true
65844        },
65845        {
65846          "description": "object name and auth scope, such as for teams and projects",
65847          "in": "path",
65848          "name": "namespace",
65849          "required": true,
65850          "type": "string",
65851          "uniqueItems": true
65852        },
65853        {
65854          "description": "If 'true', then the output is pretty printed.",
65855          "in": "query",
65856          "name": "pretty",
65857          "type": "string",
65858          "uniqueItems": true
65859        }
65860      ],
65861      "patch": {
65862        "consumes": [
65863          "application/json-patch+json",
65864          "application/merge-patch+json",
65865          "application/strategic-merge-patch+json"
65866        ],
65867        "description": "partially update the specified HorizontalPodAutoscaler",
65868        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
65869        "parameters": [
65870          {
65871            "in": "body",
65872            "name": "body",
65873            "required": true,
65874            "schema": {
65875              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
65876            }
65877          },
65878          {
65879            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65880            "in": "query",
65881            "name": "dryRun",
65882            "type": "string",
65883            "uniqueItems": true
65884          },
65885          {
65886            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
65887            "in": "query",
65888            "name": "fieldManager",
65889            "type": "string",
65890            "uniqueItems": true
65891          },
65892          {
65893            "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.",
65894            "in": "query",
65895            "name": "force",
65896            "type": "boolean",
65897            "uniqueItems": true
65898          }
65899        ],
65900        "produces": [
65901          "application/json",
65902          "application/yaml",
65903          "application/vnd.kubernetes.protobuf"
65904        ],
65905        "responses": {
65906          "200": {
65907            "description": "OK",
65908            "schema": {
65909              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65910            }
65911          },
65912          "401": {
65913            "description": "Unauthorized"
65914          }
65915        },
65916        "schemes": [
65917          "https"
65918        ],
65919        "tags": [
65920          "autoscaling_v2beta1"
65921        ],
65922        "x-kubernetes-action": "patch",
65923        "x-kubernetes-group-version-kind": {
65924          "group": "autoscaling",
65925          "kind": "HorizontalPodAutoscaler",
65926          "version": "v2beta1"
65927        }
65928      },
65929      "put": {
65930        "consumes": [
65931          "*/*"
65932        ],
65933        "description": "replace the specified HorizontalPodAutoscaler",
65934        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
65935        "parameters": [
65936          {
65937            "in": "body",
65938            "name": "body",
65939            "required": true,
65940            "schema": {
65941              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65942            }
65943          },
65944          {
65945            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
65946            "in": "query",
65947            "name": "dryRun",
65948            "type": "string",
65949            "uniqueItems": true
65950          },
65951          {
65952            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
65953            "in": "query",
65954            "name": "fieldManager",
65955            "type": "string",
65956            "uniqueItems": true
65957          }
65958        ],
65959        "produces": [
65960          "application/json",
65961          "application/yaml",
65962          "application/vnd.kubernetes.protobuf"
65963        ],
65964        "responses": {
65965          "200": {
65966            "description": "OK",
65967            "schema": {
65968              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65969            }
65970          },
65971          "201": {
65972            "description": "Created",
65973            "schema": {
65974              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
65975            }
65976          },
65977          "401": {
65978            "description": "Unauthorized"
65979          }
65980        },
65981        "schemes": [
65982          "https"
65983        ],
65984        "tags": [
65985          "autoscaling_v2beta1"
65986        ],
65987        "x-kubernetes-action": "put",
65988        "x-kubernetes-group-version-kind": {
65989          "group": "autoscaling",
65990          "kind": "HorizontalPodAutoscaler",
65991          "version": "v2beta1"
65992        }
65993      }
65994    },
65995    "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
65996      "get": {
65997        "consumes": [
65998          "*/*"
65999        ],
66000        "description": "read status of the specified HorizontalPodAutoscaler",
66001        "operationId": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
66002        "produces": [
66003          "application/json",
66004          "application/yaml",
66005          "application/vnd.kubernetes.protobuf"
66006        ],
66007        "responses": {
66008          "200": {
66009            "description": "OK",
66010            "schema": {
66011              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
66012            }
66013          },
66014          "401": {
66015            "description": "Unauthorized"
66016          }
66017        },
66018        "schemes": [
66019          "https"
66020        ],
66021        "tags": [
66022          "autoscaling_v2beta1"
66023        ],
66024        "x-kubernetes-action": "get",
66025        "x-kubernetes-group-version-kind": {
66026          "group": "autoscaling",
66027          "kind": "HorizontalPodAutoscaler",
66028          "version": "v2beta1"
66029        }
66030      },
66031      "parameters": [
66032        {
66033          "description": "name of the HorizontalPodAutoscaler",
66034          "in": "path",
66035          "name": "name",
66036          "required": true,
66037          "type": "string",
66038          "uniqueItems": true
66039        },
66040        {
66041          "description": "object name and auth scope, such as for teams and projects",
66042          "in": "path",
66043          "name": "namespace",
66044          "required": true,
66045          "type": "string",
66046          "uniqueItems": true
66047        },
66048        {
66049          "description": "If 'true', then the output is pretty printed.",
66050          "in": "query",
66051          "name": "pretty",
66052          "type": "string",
66053          "uniqueItems": true
66054        }
66055      ],
66056      "patch": {
66057        "consumes": [
66058          "application/json-patch+json",
66059          "application/merge-patch+json",
66060          "application/strategic-merge-patch+json"
66061        ],
66062        "description": "partially update status of the specified HorizontalPodAutoscaler",
66063        "operationId": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
66064        "parameters": [
66065          {
66066            "in": "body",
66067            "name": "body",
66068            "required": true,
66069            "schema": {
66070              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
66071            }
66072          },
66073          {
66074            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66075            "in": "query",
66076            "name": "dryRun",
66077            "type": "string",
66078            "uniqueItems": true
66079          },
66080          {
66081            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
66082            "in": "query",
66083            "name": "fieldManager",
66084            "type": "string",
66085            "uniqueItems": true
66086          },
66087          {
66088            "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.",
66089            "in": "query",
66090            "name": "force",
66091            "type": "boolean",
66092            "uniqueItems": true
66093          }
66094        ],
66095        "produces": [
66096          "application/json",
66097          "application/yaml",
66098          "application/vnd.kubernetes.protobuf"
66099        ],
66100        "responses": {
66101          "200": {
66102            "description": "OK",
66103            "schema": {
66104              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
66105            }
66106          },
66107          "401": {
66108            "description": "Unauthorized"
66109          }
66110        },
66111        "schemes": [
66112          "https"
66113        ],
66114        "tags": [
66115          "autoscaling_v2beta1"
66116        ],
66117        "x-kubernetes-action": "patch",
66118        "x-kubernetes-group-version-kind": {
66119          "group": "autoscaling",
66120          "kind": "HorizontalPodAutoscaler",
66121          "version": "v2beta1"
66122        }
66123      },
66124      "put": {
66125        "consumes": [
66126          "*/*"
66127        ],
66128        "description": "replace status of the specified HorizontalPodAutoscaler",
66129        "operationId": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
66130        "parameters": [
66131          {
66132            "in": "body",
66133            "name": "body",
66134            "required": true,
66135            "schema": {
66136              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
66137            }
66138          },
66139          {
66140            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66141            "in": "query",
66142            "name": "dryRun",
66143            "type": "string",
66144            "uniqueItems": true
66145          },
66146          {
66147            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66148            "in": "query",
66149            "name": "fieldManager",
66150            "type": "string",
66151            "uniqueItems": true
66152          }
66153        ],
66154        "produces": [
66155          "application/json",
66156          "application/yaml",
66157          "application/vnd.kubernetes.protobuf"
66158        ],
66159        "responses": {
66160          "200": {
66161            "description": "OK",
66162            "schema": {
66163              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
66164            }
66165          },
66166          "201": {
66167            "description": "Created",
66168            "schema": {
66169              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler"
66170            }
66171          },
66172          "401": {
66173            "description": "Unauthorized"
66174          }
66175        },
66176        "schemes": [
66177          "https"
66178        ],
66179        "tags": [
66180          "autoscaling_v2beta1"
66181        ],
66182        "x-kubernetes-action": "put",
66183        "x-kubernetes-group-version-kind": {
66184          "group": "autoscaling",
66185          "kind": "HorizontalPodAutoscaler",
66186          "version": "v2beta1"
66187        }
66188      }
66189    },
66190    "/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers": {
66191      "get": {
66192        "consumes": [
66193          "*/*"
66194        ],
66195        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
66196        "operationId": "watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces",
66197        "produces": [
66198          "application/json",
66199          "application/yaml",
66200          "application/vnd.kubernetes.protobuf",
66201          "application/json;stream=watch",
66202          "application/vnd.kubernetes.protobuf;stream=watch"
66203        ],
66204        "responses": {
66205          "200": {
66206            "description": "OK",
66207            "schema": {
66208              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66209            }
66210          },
66211          "401": {
66212            "description": "Unauthorized"
66213          }
66214        },
66215        "schemes": [
66216          "https"
66217        ],
66218        "tags": [
66219          "autoscaling_v2beta1"
66220        ],
66221        "x-kubernetes-action": "watchlist",
66222        "x-kubernetes-group-version-kind": {
66223          "group": "autoscaling",
66224          "kind": "HorizontalPodAutoscaler",
66225          "version": "v2beta1"
66226        }
66227      },
66228      "parameters": [
66229        {
66230          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
66231          "in": "query",
66232          "name": "allowWatchBookmarks",
66233          "type": "boolean",
66234          "uniqueItems": true
66235        },
66236        {
66237          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66238          "in": "query",
66239          "name": "continue",
66240          "type": "string",
66241          "uniqueItems": true
66242        },
66243        {
66244          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66245          "in": "query",
66246          "name": "fieldSelector",
66247          "type": "string",
66248          "uniqueItems": true
66249        },
66250        {
66251          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66252          "in": "query",
66253          "name": "labelSelector",
66254          "type": "string",
66255          "uniqueItems": true
66256        },
66257        {
66258          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66259          "in": "query",
66260          "name": "limit",
66261          "type": "integer",
66262          "uniqueItems": true
66263        },
66264        {
66265          "description": "If 'true', then the output is pretty printed.",
66266          "in": "query",
66267          "name": "pretty",
66268          "type": "string",
66269          "uniqueItems": true
66270        },
66271        {
66272          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
66273          "in": "query",
66274          "name": "resourceVersion",
66275          "type": "string",
66276          "uniqueItems": true
66277        },
66278        {
66279          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66280          "in": "query",
66281          "name": "timeoutSeconds",
66282          "type": "integer",
66283          "uniqueItems": true
66284        },
66285        {
66286          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66287          "in": "query",
66288          "name": "watch",
66289          "type": "boolean",
66290          "uniqueItems": true
66291        }
66292      ]
66293    },
66294    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
66295      "get": {
66296        "consumes": [
66297          "*/*"
66298        ],
66299        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
66300        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList",
66301        "produces": [
66302          "application/json",
66303          "application/yaml",
66304          "application/vnd.kubernetes.protobuf",
66305          "application/json;stream=watch",
66306          "application/vnd.kubernetes.protobuf;stream=watch"
66307        ],
66308        "responses": {
66309          "200": {
66310            "description": "OK",
66311            "schema": {
66312              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66313            }
66314          },
66315          "401": {
66316            "description": "Unauthorized"
66317          }
66318        },
66319        "schemes": [
66320          "https"
66321        ],
66322        "tags": [
66323          "autoscaling_v2beta1"
66324        ],
66325        "x-kubernetes-action": "watchlist",
66326        "x-kubernetes-group-version-kind": {
66327          "group": "autoscaling",
66328          "kind": "HorizontalPodAutoscaler",
66329          "version": "v2beta1"
66330        }
66331      },
66332      "parameters": [
66333        {
66334          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
66335          "in": "query",
66336          "name": "allowWatchBookmarks",
66337          "type": "boolean",
66338          "uniqueItems": true
66339        },
66340        {
66341          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66342          "in": "query",
66343          "name": "continue",
66344          "type": "string",
66345          "uniqueItems": true
66346        },
66347        {
66348          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66349          "in": "query",
66350          "name": "fieldSelector",
66351          "type": "string",
66352          "uniqueItems": true
66353        },
66354        {
66355          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66356          "in": "query",
66357          "name": "labelSelector",
66358          "type": "string",
66359          "uniqueItems": true
66360        },
66361        {
66362          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66363          "in": "query",
66364          "name": "limit",
66365          "type": "integer",
66366          "uniqueItems": true
66367        },
66368        {
66369          "description": "object name and auth scope, such as for teams and projects",
66370          "in": "path",
66371          "name": "namespace",
66372          "required": true,
66373          "type": "string",
66374          "uniqueItems": true
66375        },
66376        {
66377          "description": "If 'true', then the output is pretty printed.",
66378          "in": "query",
66379          "name": "pretty",
66380          "type": "string",
66381          "uniqueItems": true
66382        },
66383        {
66384          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
66385          "in": "query",
66386          "name": "resourceVersion",
66387          "type": "string",
66388          "uniqueItems": true
66389        },
66390        {
66391          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66392          "in": "query",
66393          "name": "timeoutSeconds",
66394          "type": "integer",
66395          "uniqueItems": true
66396        },
66397        {
66398          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66399          "in": "query",
66400          "name": "watch",
66401          "type": "boolean",
66402          "uniqueItems": true
66403        }
66404      ]
66405    },
66406    "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
66407      "get": {
66408        "consumes": [
66409          "*/*"
66410        ],
66411        "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.",
66412        "operationId": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
66413        "produces": [
66414          "application/json",
66415          "application/yaml",
66416          "application/vnd.kubernetes.protobuf",
66417          "application/json;stream=watch",
66418          "application/vnd.kubernetes.protobuf;stream=watch"
66419        ],
66420        "responses": {
66421          "200": {
66422            "description": "OK",
66423            "schema": {
66424              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
66425            }
66426          },
66427          "401": {
66428            "description": "Unauthorized"
66429          }
66430        },
66431        "schemes": [
66432          "https"
66433        ],
66434        "tags": [
66435          "autoscaling_v2beta1"
66436        ],
66437        "x-kubernetes-action": "watch",
66438        "x-kubernetes-group-version-kind": {
66439          "group": "autoscaling",
66440          "kind": "HorizontalPodAutoscaler",
66441          "version": "v2beta1"
66442        }
66443      },
66444      "parameters": [
66445        {
66446          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
66447          "in": "query",
66448          "name": "allowWatchBookmarks",
66449          "type": "boolean",
66450          "uniqueItems": true
66451        },
66452        {
66453          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66454          "in": "query",
66455          "name": "continue",
66456          "type": "string",
66457          "uniqueItems": true
66458        },
66459        {
66460          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66461          "in": "query",
66462          "name": "fieldSelector",
66463          "type": "string",
66464          "uniqueItems": true
66465        },
66466        {
66467          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66468          "in": "query",
66469          "name": "labelSelector",
66470          "type": "string",
66471          "uniqueItems": true
66472        },
66473        {
66474          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66475          "in": "query",
66476          "name": "limit",
66477          "type": "integer",
66478          "uniqueItems": true
66479        },
66480        {
66481          "description": "name of the HorizontalPodAutoscaler",
66482          "in": "path",
66483          "name": "name",
66484          "required": true,
66485          "type": "string",
66486          "uniqueItems": true
66487        },
66488        {
66489          "description": "object name and auth scope, such as for teams and projects",
66490          "in": "path",
66491          "name": "namespace",
66492          "required": true,
66493          "type": "string",
66494          "uniqueItems": true
66495        },
66496        {
66497          "description": "If 'true', then the output is pretty printed.",
66498          "in": "query",
66499          "name": "pretty",
66500          "type": "string",
66501          "uniqueItems": true
66502        },
66503        {
66504          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
66505          "in": "query",
66506          "name": "resourceVersion",
66507          "type": "string",
66508          "uniqueItems": true
66509        },
66510        {
66511          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66512          "in": "query",
66513          "name": "timeoutSeconds",
66514          "type": "integer",
66515          "uniqueItems": true
66516        },
66517        {
66518          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66519          "in": "query",
66520          "name": "watch",
66521          "type": "boolean",
66522          "uniqueItems": true
66523        }
66524      ]
66525    },
66526    "/apis/autoscaling/v2beta2/": {
66527      "get": {
66528        "consumes": [
66529          "application/json",
66530          "application/yaml",
66531          "application/vnd.kubernetes.protobuf"
66532        ],
66533        "description": "get available resources",
66534        "operationId": "getAutoscalingV2beta2APIResources",
66535        "produces": [
66536          "application/json",
66537          "application/yaml",
66538          "application/vnd.kubernetes.protobuf"
66539        ],
66540        "responses": {
66541          "200": {
66542            "description": "OK",
66543            "schema": {
66544              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
66545            }
66546          },
66547          "401": {
66548            "description": "Unauthorized"
66549          }
66550        },
66551        "schemes": [
66552          "https"
66553        ],
66554        "tags": [
66555          "autoscaling_v2beta2"
66556        ]
66557      }
66558    },
66559    "/apis/autoscaling/v2beta2/horizontalpodautoscalers": {
66560      "get": {
66561        "consumes": [
66562          "*/*"
66563        ],
66564        "description": "list or watch objects of kind HorizontalPodAutoscaler",
66565        "operationId": "listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces",
66566        "produces": [
66567          "application/json",
66568          "application/yaml",
66569          "application/vnd.kubernetes.protobuf",
66570          "application/json;stream=watch",
66571          "application/vnd.kubernetes.protobuf;stream=watch"
66572        ],
66573        "responses": {
66574          "200": {
66575            "description": "OK",
66576            "schema": {
66577              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
66578            }
66579          },
66580          "401": {
66581            "description": "Unauthorized"
66582          }
66583        },
66584        "schemes": [
66585          "https"
66586        ],
66587        "tags": [
66588          "autoscaling_v2beta2"
66589        ],
66590        "x-kubernetes-action": "list",
66591        "x-kubernetes-group-version-kind": {
66592          "group": "autoscaling",
66593          "kind": "HorizontalPodAutoscaler",
66594          "version": "v2beta2"
66595        }
66596      },
66597      "parameters": [
66598        {
66599          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
66600          "in": "query",
66601          "name": "allowWatchBookmarks",
66602          "type": "boolean",
66603          "uniqueItems": true
66604        },
66605        {
66606          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66607          "in": "query",
66608          "name": "continue",
66609          "type": "string",
66610          "uniqueItems": true
66611        },
66612        {
66613          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66614          "in": "query",
66615          "name": "fieldSelector",
66616          "type": "string",
66617          "uniqueItems": true
66618        },
66619        {
66620          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66621          "in": "query",
66622          "name": "labelSelector",
66623          "type": "string",
66624          "uniqueItems": true
66625        },
66626        {
66627          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66628          "in": "query",
66629          "name": "limit",
66630          "type": "integer",
66631          "uniqueItems": true
66632        },
66633        {
66634          "description": "If 'true', then the output is pretty printed.",
66635          "in": "query",
66636          "name": "pretty",
66637          "type": "string",
66638          "uniqueItems": true
66639        },
66640        {
66641          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
66642          "in": "query",
66643          "name": "resourceVersion",
66644          "type": "string",
66645          "uniqueItems": true
66646        },
66647        {
66648          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66649          "in": "query",
66650          "name": "timeoutSeconds",
66651          "type": "integer",
66652          "uniqueItems": true
66653        },
66654        {
66655          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66656          "in": "query",
66657          "name": "watch",
66658          "type": "boolean",
66659          "uniqueItems": true
66660        }
66661      ]
66662    },
66663    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers": {
66664      "delete": {
66665        "consumes": [
66666          "*/*"
66667        ],
66668        "description": "delete collection of HorizontalPodAutoscaler",
66669        "operationId": "deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler",
66670        "parameters": [
66671          {
66672            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
66673            "in": "query",
66674            "name": "allowWatchBookmarks",
66675            "type": "boolean",
66676            "uniqueItems": true
66677          },
66678          {
66679            "in": "body",
66680            "name": "body",
66681            "schema": {
66682              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66683            }
66684          },
66685          {
66686            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66687            "in": "query",
66688            "name": "continue",
66689            "type": "string",
66690            "uniqueItems": true
66691          },
66692          {
66693            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66694            "in": "query",
66695            "name": "dryRun",
66696            "type": "string",
66697            "uniqueItems": true
66698          },
66699          {
66700            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66701            "in": "query",
66702            "name": "fieldSelector",
66703            "type": "string",
66704            "uniqueItems": true
66705          },
66706          {
66707            "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.",
66708            "in": "query",
66709            "name": "gracePeriodSeconds",
66710            "type": "integer",
66711            "uniqueItems": true
66712          },
66713          {
66714            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66715            "in": "query",
66716            "name": "labelSelector",
66717            "type": "string",
66718            "uniqueItems": true
66719          },
66720          {
66721            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66722            "in": "query",
66723            "name": "limit",
66724            "type": "integer",
66725            "uniqueItems": true
66726          },
66727          {
66728            "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.",
66729            "in": "query",
66730            "name": "orphanDependents",
66731            "type": "boolean",
66732            "uniqueItems": true
66733          },
66734          {
66735            "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.",
66736            "in": "query",
66737            "name": "propagationPolicy",
66738            "type": "string",
66739            "uniqueItems": true
66740          },
66741          {
66742            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
66743            "in": "query",
66744            "name": "resourceVersion",
66745            "type": "string",
66746            "uniqueItems": true
66747          },
66748          {
66749            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66750            "in": "query",
66751            "name": "timeoutSeconds",
66752            "type": "integer",
66753            "uniqueItems": true
66754          },
66755          {
66756            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66757            "in": "query",
66758            "name": "watch",
66759            "type": "boolean",
66760            "uniqueItems": true
66761          }
66762        ],
66763        "produces": [
66764          "application/json",
66765          "application/yaml",
66766          "application/vnd.kubernetes.protobuf"
66767        ],
66768        "responses": {
66769          "200": {
66770            "description": "OK",
66771            "schema": {
66772              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
66773            }
66774          },
66775          "401": {
66776            "description": "Unauthorized"
66777          }
66778        },
66779        "schemes": [
66780          "https"
66781        ],
66782        "tags": [
66783          "autoscaling_v2beta2"
66784        ],
66785        "x-kubernetes-action": "deletecollection",
66786        "x-kubernetes-group-version-kind": {
66787          "group": "autoscaling",
66788          "kind": "HorizontalPodAutoscaler",
66789          "version": "v2beta2"
66790        }
66791      },
66792      "get": {
66793        "consumes": [
66794          "*/*"
66795        ],
66796        "description": "list or watch objects of kind HorizontalPodAutoscaler",
66797        "operationId": "listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
66798        "parameters": [
66799          {
66800            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
66801            "in": "query",
66802            "name": "allowWatchBookmarks",
66803            "type": "boolean",
66804            "uniqueItems": true
66805          },
66806          {
66807            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
66808            "in": "query",
66809            "name": "continue",
66810            "type": "string",
66811            "uniqueItems": true
66812          },
66813          {
66814            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
66815            "in": "query",
66816            "name": "fieldSelector",
66817            "type": "string",
66818            "uniqueItems": true
66819          },
66820          {
66821            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
66822            "in": "query",
66823            "name": "labelSelector",
66824            "type": "string",
66825            "uniqueItems": true
66826          },
66827          {
66828            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
66829            "in": "query",
66830            "name": "limit",
66831            "type": "integer",
66832            "uniqueItems": true
66833          },
66834          {
66835            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
66836            "in": "query",
66837            "name": "resourceVersion",
66838            "type": "string",
66839            "uniqueItems": true
66840          },
66841          {
66842            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
66843            "in": "query",
66844            "name": "timeoutSeconds",
66845            "type": "integer",
66846            "uniqueItems": true
66847          },
66848          {
66849            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
66850            "in": "query",
66851            "name": "watch",
66852            "type": "boolean",
66853            "uniqueItems": true
66854          }
66855        ],
66856        "produces": [
66857          "application/json",
66858          "application/yaml",
66859          "application/vnd.kubernetes.protobuf",
66860          "application/json;stream=watch",
66861          "application/vnd.kubernetes.protobuf;stream=watch"
66862        ],
66863        "responses": {
66864          "200": {
66865            "description": "OK",
66866            "schema": {
66867              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerList"
66868            }
66869          },
66870          "401": {
66871            "description": "Unauthorized"
66872          }
66873        },
66874        "schemes": [
66875          "https"
66876        ],
66877        "tags": [
66878          "autoscaling_v2beta2"
66879        ],
66880        "x-kubernetes-action": "list",
66881        "x-kubernetes-group-version-kind": {
66882          "group": "autoscaling",
66883          "kind": "HorizontalPodAutoscaler",
66884          "version": "v2beta2"
66885        }
66886      },
66887      "parameters": [
66888        {
66889          "description": "object name and auth scope, such as for teams and projects",
66890          "in": "path",
66891          "name": "namespace",
66892          "required": true,
66893          "type": "string",
66894          "uniqueItems": true
66895        },
66896        {
66897          "description": "If 'true', then the output is pretty printed.",
66898          "in": "query",
66899          "name": "pretty",
66900          "type": "string",
66901          "uniqueItems": true
66902        }
66903      ],
66904      "post": {
66905        "consumes": [
66906          "*/*"
66907        ],
66908        "description": "create a HorizontalPodAutoscaler",
66909        "operationId": "createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
66910        "parameters": [
66911          {
66912            "in": "body",
66913            "name": "body",
66914            "required": true,
66915            "schema": {
66916              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
66917            }
66918          },
66919          {
66920            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66921            "in": "query",
66922            "name": "dryRun",
66923            "type": "string",
66924            "uniqueItems": true
66925          },
66926          {
66927            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
66928            "in": "query",
66929            "name": "fieldManager",
66930            "type": "string",
66931            "uniqueItems": true
66932          }
66933        ],
66934        "produces": [
66935          "application/json",
66936          "application/yaml",
66937          "application/vnd.kubernetes.protobuf"
66938        ],
66939        "responses": {
66940          "200": {
66941            "description": "OK",
66942            "schema": {
66943              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
66944            }
66945          },
66946          "201": {
66947            "description": "Created",
66948            "schema": {
66949              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
66950            }
66951          },
66952          "202": {
66953            "description": "Accepted",
66954            "schema": {
66955              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
66956            }
66957          },
66958          "401": {
66959            "description": "Unauthorized"
66960          }
66961        },
66962        "schemes": [
66963          "https"
66964        ],
66965        "tags": [
66966          "autoscaling_v2beta2"
66967        ],
66968        "x-kubernetes-action": "post",
66969        "x-kubernetes-group-version-kind": {
66970          "group": "autoscaling",
66971          "kind": "HorizontalPodAutoscaler",
66972          "version": "v2beta2"
66973        }
66974      }
66975    },
66976    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
66977      "delete": {
66978        "consumes": [
66979          "*/*"
66980        ],
66981        "description": "delete a HorizontalPodAutoscaler",
66982        "operationId": "deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
66983        "parameters": [
66984          {
66985            "in": "body",
66986            "name": "body",
66987            "schema": {
66988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
66989            }
66990          },
66991          {
66992            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
66993            "in": "query",
66994            "name": "dryRun",
66995            "type": "string",
66996            "uniqueItems": true
66997          },
66998          {
66999            "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.",
67000            "in": "query",
67001            "name": "gracePeriodSeconds",
67002            "type": "integer",
67003            "uniqueItems": true
67004          },
67005          {
67006            "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.",
67007            "in": "query",
67008            "name": "orphanDependents",
67009            "type": "boolean",
67010            "uniqueItems": true
67011          },
67012          {
67013            "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.",
67014            "in": "query",
67015            "name": "propagationPolicy",
67016            "type": "string",
67017            "uniqueItems": true
67018          }
67019        ],
67020        "produces": [
67021          "application/json",
67022          "application/yaml",
67023          "application/vnd.kubernetes.protobuf"
67024        ],
67025        "responses": {
67026          "200": {
67027            "description": "OK",
67028            "schema": {
67029              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67030            }
67031          },
67032          "202": {
67033            "description": "Accepted",
67034            "schema": {
67035              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
67036            }
67037          },
67038          "401": {
67039            "description": "Unauthorized"
67040          }
67041        },
67042        "schemes": [
67043          "https"
67044        ],
67045        "tags": [
67046          "autoscaling_v2beta2"
67047        ],
67048        "x-kubernetes-action": "delete",
67049        "x-kubernetes-group-version-kind": {
67050          "group": "autoscaling",
67051          "kind": "HorizontalPodAutoscaler",
67052          "version": "v2beta2"
67053        }
67054      },
67055      "get": {
67056        "consumes": [
67057          "*/*"
67058        ],
67059        "description": "read the specified HorizontalPodAutoscaler",
67060        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
67061        "parameters": [
67062          {
67063            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
67064            "in": "query",
67065            "name": "exact",
67066            "type": "boolean",
67067            "uniqueItems": true
67068          },
67069          {
67070            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
67071            "in": "query",
67072            "name": "export",
67073            "type": "boolean",
67074            "uniqueItems": true
67075          }
67076        ],
67077        "produces": [
67078          "application/json",
67079          "application/yaml",
67080          "application/vnd.kubernetes.protobuf"
67081        ],
67082        "responses": {
67083          "200": {
67084            "description": "OK",
67085            "schema": {
67086              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67087            }
67088          },
67089          "401": {
67090            "description": "Unauthorized"
67091          }
67092        },
67093        "schemes": [
67094          "https"
67095        ],
67096        "tags": [
67097          "autoscaling_v2beta2"
67098        ],
67099        "x-kubernetes-action": "get",
67100        "x-kubernetes-group-version-kind": {
67101          "group": "autoscaling",
67102          "kind": "HorizontalPodAutoscaler",
67103          "version": "v2beta2"
67104        }
67105      },
67106      "parameters": [
67107        {
67108          "description": "name of the HorizontalPodAutoscaler",
67109          "in": "path",
67110          "name": "name",
67111          "required": true,
67112          "type": "string",
67113          "uniqueItems": true
67114        },
67115        {
67116          "description": "object name and auth scope, such as for teams and projects",
67117          "in": "path",
67118          "name": "namespace",
67119          "required": true,
67120          "type": "string",
67121          "uniqueItems": true
67122        },
67123        {
67124          "description": "If 'true', then the output is pretty printed.",
67125          "in": "query",
67126          "name": "pretty",
67127          "type": "string",
67128          "uniqueItems": true
67129        }
67130      ],
67131      "patch": {
67132        "consumes": [
67133          "application/json-patch+json",
67134          "application/merge-patch+json",
67135          "application/strategic-merge-patch+json"
67136        ],
67137        "description": "partially update the specified HorizontalPodAutoscaler",
67138        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
67139        "parameters": [
67140          {
67141            "in": "body",
67142            "name": "body",
67143            "required": true,
67144            "schema": {
67145              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
67146            }
67147          },
67148          {
67149            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67150            "in": "query",
67151            "name": "dryRun",
67152            "type": "string",
67153            "uniqueItems": true
67154          },
67155          {
67156            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
67157            "in": "query",
67158            "name": "fieldManager",
67159            "type": "string",
67160            "uniqueItems": true
67161          },
67162          {
67163            "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.",
67164            "in": "query",
67165            "name": "force",
67166            "type": "boolean",
67167            "uniqueItems": true
67168          }
67169        ],
67170        "produces": [
67171          "application/json",
67172          "application/yaml",
67173          "application/vnd.kubernetes.protobuf"
67174        ],
67175        "responses": {
67176          "200": {
67177            "description": "OK",
67178            "schema": {
67179              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67180            }
67181          },
67182          "401": {
67183            "description": "Unauthorized"
67184          }
67185        },
67186        "schemes": [
67187          "https"
67188        ],
67189        "tags": [
67190          "autoscaling_v2beta2"
67191        ],
67192        "x-kubernetes-action": "patch",
67193        "x-kubernetes-group-version-kind": {
67194          "group": "autoscaling",
67195          "kind": "HorizontalPodAutoscaler",
67196          "version": "v2beta2"
67197        }
67198      },
67199      "put": {
67200        "consumes": [
67201          "*/*"
67202        ],
67203        "description": "replace the specified HorizontalPodAutoscaler",
67204        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
67205        "parameters": [
67206          {
67207            "in": "body",
67208            "name": "body",
67209            "required": true,
67210            "schema": {
67211              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67212            }
67213          },
67214          {
67215            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67216            "in": "query",
67217            "name": "dryRun",
67218            "type": "string",
67219            "uniqueItems": true
67220          },
67221          {
67222            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67223            "in": "query",
67224            "name": "fieldManager",
67225            "type": "string",
67226            "uniqueItems": true
67227          }
67228        ],
67229        "produces": [
67230          "application/json",
67231          "application/yaml",
67232          "application/vnd.kubernetes.protobuf"
67233        ],
67234        "responses": {
67235          "200": {
67236            "description": "OK",
67237            "schema": {
67238              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67239            }
67240          },
67241          "201": {
67242            "description": "Created",
67243            "schema": {
67244              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67245            }
67246          },
67247          "401": {
67248            "description": "Unauthorized"
67249          }
67250        },
67251        "schemes": [
67252          "https"
67253        ],
67254        "tags": [
67255          "autoscaling_v2beta2"
67256        ],
67257        "x-kubernetes-action": "put",
67258        "x-kubernetes-group-version-kind": {
67259          "group": "autoscaling",
67260          "kind": "HorizontalPodAutoscaler",
67261          "version": "v2beta2"
67262        }
67263      }
67264    },
67265    "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
67266      "get": {
67267        "consumes": [
67268          "*/*"
67269        ],
67270        "description": "read status of the specified HorizontalPodAutoscaler",
67271        "operationId": "readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
67272        "produces": [
67273          "application/json",
67274          "application/yaml",
67275          "application/vnd.kubernetes.protobuf"
67276        ],
67277        "responses": {
67278          "200": {
67279            "description": "OK",
67280            "schema": {
67281              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67282            }
67283          },
67284          "401": {
67285            "description": "Unauthorized"
67286          }
67287        },
67288        "schemes": [
67289          "https"
67290        ],
67291        "tags": [
67292          "autoscaling_v2beta2"
67293        ],
67294        "x-kubernetes-action": "get",
67295        "x-kubernetes-group-version-kind": {
67296          "group": "autoscaling",
67297          "kind": "HorizontalPodAutoscaler",
67298          "version": "v2beta2"
67299        }
67300      },
67301      "parameters": [
67302        {
67303          "description": "name of the HorizontalPodAutoscaler",
67304          "in": "path",
67305          "name": "name",
67306          "required": true,
67307          "type": "string",
67308          "uniqueItems": true
67309        },
67310        {
67311          "description": "object name and auth scope, such as for teams and projects",
67312          "in": "path",
67313          "name": "namespace",
67314          "required": true,
67315          "type": "string",
67316          "uniqueItems": true
67317        },
67318        {
67319          "description": "If 'true', then the output is pretty printed.",
67320          "in": "query",
67321          "name": "pretty",
67322          "type": "string",
67323          "uniqueItems": true
67324        }
67325      ],
67326      "patch": {
67327        "consumes": [
67328          "application/json-patch+json",
67329          "application/merge-patch+json",
67330          "application/strategic-merge-patch+json"
67331        ],
67332        "description": "partially update status of the specified HorizontalPodAutoscaler",
67333        "operationId": "patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
67334        "parameters": [
67335          {
67336            "in": "body",
67337            "name": "body",
67338            "required": true,
67339            "schema": {
67340              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
67341            }
67342          },
67343          {
67344            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67345            "in": "query",
67346            "name": "dryRun",
67347            "type": "string",
67348            "uniqueItems": true
67349          },
67350          {
67351            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
67352            "in": "query",
67353            "name": "fieldManager",
67354            "type": "string",
67355            "uniqueItems": true
67356          },
67357          {
67358            "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.",
67359            "in": "query",
67360            "name": "force",
67361            "type": "boolean",
67362            "uniqueItems": true
67363          }
67364        ],
67365        "produces": [
67366          "application/json",
67367          "application/yaml",
67368          "application/vnd.kubernetes.protobuf"
67369        ],
67370        "responses": {
67371          "200": {
67372            "description": "OK",
67373            "schema": {
67374              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67375            }
67376          },
67377          "401": {
67378            "description": "Unauthorized"
67379          }
67380        },
67381        "schemes": [
67382          "https"
67383        ],
67384        "tags": [
67385          "autoscaling_v2beta2"
67386        ],
67387        "x-kubernetes-action": "patch",
67388        "x-kubernetes-group-version-kind": {
67389          "group": "autoscaling",
67390          "kind": "HorizontalPodAutoscaler",
67391          "version": "v2beta2"
67392        }
67393      },
67394      "put": {
67395        "consumes": [
67396          "*/*"
67397        ],
67398        "description": "replace status of the specified HorizontalPodAutoscaler",
67399        "operationId": "replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus",
67400        "parameters": [
67401          {
67402            "in": "body",
67403            "name": "body",
67404            "required": true,
67405            "schema": {
67406              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67407            }
67408          },
67409          {
67410            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67411            "in": "query",
67412            "name": "dryRun",
67413            "type": "string",
67414            "uniqueItems": true
67415          },
67416          {
67417            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
67418            "in": "query",
67419            "name": "fieldManager",
67420            "type": "string",
67421            "uniqueItems": true
67422          }
67423        ],
67424        "produces": [
67425          "application/json",
67426          "application/yaml",
67427          "application/vnd.kubernetes.protobuf"
67428        ],
67429        "responses": {
67430          "200": {
67431            "description": "OK",
67432            "schema": {
67433              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67434            }
67435          },
67436          "201": {
67437            "description": "Created",
67438            "schema": {
67439              "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler"
67440            }
67441          },
67442          "401": {
67443            "description": "Unauthorized"
67444          }
67445        },
67446        "schemes": [
67447          "https"
67448        ],
67449        "tags": [
67450          "autoscaling_v2beta2"
67451        ],
67452        "x-kubernetes-action": "put",
67453        "x-kubernetes-group-version-kind": {
67454          "group": "autoscaling",
67455          "kind": "HorizontalPodAutoscaler",
67456          "version": "v2beta2"
67457        }
67458      }
67459    },
67460    "/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers": {
67461      "get": {
67462        "consumes": [
67463          "*/*"
67464        ],
67465        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
67466        "operationId": "watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces",
67467        "produces": [
67468          "application/json",
67469          "application/yaml",
67470          "application/vnd.kubernetes.protobuf",
67471          "application/json;stream=watch",
67472          "application/vnd.kubernetes.protobuf;stream=watch"
67473        ],
67474        "responses": {
67475          "200": {
67476            "description": "OK",
67477            "schema": {
67478              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67479            }
67480          },
67481          "401": {
67482            "description": "Unauthorized"
67483          }
67484        },
67485        "schemes": [
67486          "https"
67487        ],
67488        "tags": [
67489          "autoscaling_v2beta2"
67490        ],
67491        "x-kubernetes-action": "watchlist",
67492        "x-kubernetes-group-version-kind": {
67493          "group": "autoscaling",
67494          "kind": "HorizontalPodAutoscaler",
67495          "version": "v2beta2"
67496        }
67497      },
67498      "parameters": [
67499        {
67500          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
67501          "in": "query",
67502          "name": "allowWatchBookmarks",
67503          "type": "boolean",
67504          "uniqueItems": true
67505        },
67506        {
67507          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67508          "in": "query",
67509          "name": "continue",
67510          "type": "string",
67511          "uniqueItems": true
67512        },
67513        {
67514          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67515          "in": "query",
67516          "name": "fieldSelector",
67517          "type": "string",
67518          "uniqueItems": true
67519        },
67520        {
67521          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67522          "in": "query",
67523          "name": "labelSelector",
67524          "type": "string",
67525          "uniqueItems": true
67526        },
67527        {
67528          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67529          "in": "query",
67530          "name": "limit",
67531          "type": "integer",
67532          "uniqueItems": true
67533        },
67534        {
67535          "description": "If 'true', then the output is pretty printed.",
67536          "in": "query",
67537          "name": "pretty",
67538          "type": "string",
67539          "uniqueItems": true
67540        },
67541        {
67542          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
67543          "in": "query",
67544          "name": "resourceVersion",
67545          "type": "string",
67546          "uniqueItems": true
67547        },
67548        {
67549          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67550          "in": "query",
67551          "name": "timeoutSeconds",
67552          "type": "integer",
67553          "uniqueItems": true
67554        },
67555        {
67556          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67557          "in": "query",
67558          "name": "watch",
67559          "type": "boolean",
67560          "uniqueItems": true
67561        }
67562      ]
67563    },
67564    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers": {
67565      "get": {
67566        "consumes": [
67567          "*/*"
67568        ],
67569        "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.",
67570        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList",
67571        "produces": [
67572          "application/json",
67573          "application/yaml",
67574          "application/vnd.kubernetes.protobuf",
67575          "application/json;stream=watch",
67576          "application/vnd.kubernetes.protobuf;stream=watch"
67577        ],
67578        "responses": {
67579          "200": {
67580            "description": "OK",
67581            "schema": {
67582              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67583            }
67584          },
67585          "401": {
67586            "description": "Unauthorized"
67587          }
67588        },
67589        "schemes": [
67590          "https"
67591        ],
67592        "tags": [
67593          "autoscaling_v2beta2"
67594        ],
67595        "x-kubernetes-action": "watchlist",
67596        "x-kubernetes-group-version-kind": {
67597          "group": "autoscaling",
67598          "kind": "HorizontalPodAutoscaler",
67599          "version": "v2beta2"
67600        }
67601      },
67602      "parameters": [
67603        {
67604          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
67605          "in": "query",
67606          "name": "allowWatchBookmarks",
67607          "type": "boolean",
67608          "uniqueItems": true
67609        },
67610        {
67611          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67612          "in": "query",
67613          "name": "continue",
67614          "type": "string",
67615          "uniqueItems": true
67616        },
67617        {
67618          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67619          "in": "query",
67620          "name": "fieldSelector",
67621          "type": "string",
67622          "uniqueItems": true
67623        },
67624        {
67625          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67626          "in": "query",
67627          "name": "labelSelector",
67628          "type": "string",
67629          "uniqueItems": true
67630        },
67631        {
67632          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67633          "in": "query",
67634          "name": "limit",
67635          "type": "integer",
67636          "uniqueItems": true
67637        },
67638        {
67639          "description": "object name and auth scope, such as for teams and projects",
67640          "in": "path",
67641          "name": "namespace",
67642          "required": true,
67643          "type": "string",
67644          "uniqueItems": true
67645        },
67646        {
67647          "description": "If 'true', then the output is pretty printed.",
67648          "in": "query",
67649          "name": "pretty",
67650          "type": "string",
67651          "uniqueItems": true
67652        },
67653        {
67654          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
67655          "in": "query",
67656          "name": "resourceVersion",
67657          "type": "string",
67658          "uniqueItems": true
67659        },
67660        {
67661          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67662          "in": "query",
67663          "name": "timeoutSeconds",
67664          "type": "integer",
67665          "uniqueItems": true
67666        },
67667        {
67668          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67669          "in": "query",
67670          "name": "watch",
67671          "type": "boolean",
67672          "uniqueItems": true
67673        }
67674      ]
67675    },
67676    "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
67677      "get": {
67678        "consumes": [
67679          "*/*"
67680        ],
67681        "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.",
67682        "operationId": "watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler",
67683        "produces": [
67684          "application/json",
67685          "application/yaml",
67686          "application/vnd.kubernetes.protobuf",
67687          "application/json;stream=watch",
67688          "application/vnd.kubernetes.protobuf;stream=watch"
67689        ],
67690        "responses": {
67691          "200": {
67692            "description": "OK",
67693            "schema": {
67694              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
67695            }
67696          },
67697          "401": {
67698            "description": "Unauthorized"
67699          }
67700        },
67701        "schemes": [
67702          "https"
67703        ],
67704        "tags": [
67705          "autoscaling_v2beta2"
67706        ],
67707        "x-kubernetes-action": "watch",
67708        "x-kubernetes-group-version-kind": {
67709          "group": "autoscaling",
67710          "kind": "HorizontalPodAutoscaler",
67711          "version": "v2beta2"
67712        }
67713      },
67714      "parameters": [
67715        {
67716          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
67717          "in": "query",
67718          "name": "allowWatchBookmarks",
67719          "type": "boolean",
67720          "uniqueItems": true
67721        },
67722        {
67723          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67724          "in": "query",
67725          "name": "continue",
67726          "type": "string",
67727          "uniqueItems": true
67728        },
67729        {
67730          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67731          "in": "query",
67732          "name": "fieldSelector",
67733          "type": "string",
67734          "uniqueItems": true
67735        },
67736        {
67737          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67738          "in": "query",
67739          "name": "labelSelector",
67740          "type": "string",
67741          "uniqueItems": true
67742        },
67743        {
67744          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67745          "in": "query",
67746          "name": "limit",
67747          "type": "integer",
67748          "uniqueItems": true
67749        },
67750        {
67751          "description": "name of the HorizontalPodAutoscaler",
67752          "in": "path",
67753          "name": "name",
67754          "required": true,
67755          "type": "string",
67756          "uniqueItems": true
67757        },
67758        {
67759          "description": "object name and auth scope, such as for teams and projects",
67760          "in": "path",
67761          "name": "namespace",
67762          "required": true,
67763          "type": "string",
67764          "uniqueItems": true
67765        },
67766        {
67767          "description": "If 'true', then the output is pretty printed.",
67768          "in": "query",
67769          "name": "pretty",
67770          "type": "string",
67771          "uniqueItems": true
67772        },
67773        {
67774          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
67775          "in": "query",
67776          "name": "resourceVersion",
67777          "type": "string",
67778          "uniqueItems": true
67779        },
67780        {
67781          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67782          "in": "query",
67783          "name": "timeoutSeconds",
67784          "type": "integer",
67785          "uniqueItems": true
67786        },
67787        {
67788          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67789          "in": "query",
67790          "name": "watch",
67791          "type": "boolean",
67792          "uniqueItems": true
67793        }
67794      ]
67795    },
67796    "/apis/batch/": {
67797      "get": {
67798        "consumes": [
67799          "application/json",
67800          "application/yaml",
67801          "application/vnd.kubernetes.protobuf"
67802        ],
67803        "description": "get information of a group",
67804        "operationId": "getBatchAPIGroup",
67805        "produces": [
67806          "application/json",
67807          "application/yaml",
67808          "application/vnd.kubernetes.protobuf"
67809        ],
67810        "responses": {
67811          "200": {
67812            "description": "OK",
67813            "schema": {
67814              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
67815            }
67816          },
67817          "401": {
67818            "description": "Unauthorized"
67819          }
67820        },
67821        "schemes": [
67822          "https"
67823        ],
67824        "tags": [
67825          "batch"
67826        ]
67827      }
67828    },
67829    "/apis/batch/v1/": {
67830      "get": {
67831        "consumes": [
67832          "application/json",
67833          "application/yaml",
67834          "application/vnd.kubernetes.protobuf"
67835        ],
67836        "description": "get available resources",
67837        "operationId": "getBatchV1APIResources",
67838        "produces": [
67839          "application/json",
67840          "application/yaml",
67841          "application/vnd.kubernetes.protobuf"
67842        ],
67843        "responses": {
67844          "200": {
67845            "description": "OK",
67846            "schema": {
67847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
67848            }
67849          },
67850          "401": {
67851            "description": "Unauthorized"
67852          }
67853        },
67854        "schemes": [
67855          "https"
67856        ],
67857        "tags": [
67858          "batch_v1"
67859        ]
67860      }
67861    },
67862    "/apis/batch/v1/jobs": {
67863      "get": {
67864        "consumes": [
67865          "*/*"
67866        ],
67867        "description": "list or watch objects of kind Job",
67868        "operationId": "listBatchV1JobForAllNamespaces",
67869        "produces": [
67870          "application/json",
67871          "application/yaml",
67872          "application/vnd.kubernetes.protobuf",
67873          "application/json;stream=watch",
67874          "application/vnd.kubernetes.protobuf;stream=watch"
67875        ],
67876        "responses": {
67877          "200": {
67878            "description": "OK",
67879            "schema": {
67880              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
67881            }
67882          },
67883          "401": {
67884            "description": "Unauthorized"
67885          }
67886        },
67887        "schemes": [
67888          "https"
67889        ],
67890        "tags": [
67891          "batch_v1"
67892        ],
67893        "x-kubernetes-action": "list",
67894        "x-kubernetes-group-version-kind": {
67895          "group": "batch",
67896          "kind": "Job",
67897          "version": "v1"
67898        }
67899      },
67900      "parameters": [
67901        {
67902          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
67903          "in": "query",
67904          "name": "allowWatchBookmarks",
67905          "type": "boolean",
67906          "uniqueItems": true
67907        },
67908        {
67909          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67910          "in": "query",
67911          "name": "continue",
67912          "type": "string",
67913          "uniqueItems": true
67914        },
67915        {
67916          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
67917          "in": "query",
67918          "name": "fieldSelector",
67919          "type": "string",
67920          "uniqueItems": true
67921        },
67922        {
67923          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
67924          "in": "query",
67925          "name": "labelSelector",
67926          "type": "string",
67927          "uniqueItems": true
67928        },
67929        {
67930          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
67931          "in": "query",
67932          "name": "limit",
67933          "type": "integer",
67934          "uniqueItems": true
67935        },
67936        {
67937          "description": "If 'true', then the output is pretty printed.",
67938          "in": "query",
67939          "name": "pretty",
67940          "type": "string",
67941          "uniqueItems": true
67942        },
67943        {
67944          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
67945          "in": "query",
67946          "name": "resourceVersion",
67947          "type": "string",
67948          "uniqueItems": true
67949        },
67950        {
67951          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
67952          "in": "query",
67953          "name": "timeoutSeconds",
67954          "type": "integer",
67955          "uniqueItems": true
67956        },
67957        {
67958          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
67959          "in": "query",
67960          "name": "watch",
67961          "type": "boolean",
67962          "uniqueItems": true
67963        }
67964      ]
67965    },
67966    "/apis/batch/v1/namespaces/{namespace}/jobs": {
67967      "delete": {
67968        "consumes": [
67969          "*/*"
67970        ],
67971        "description": "delete collection of Job",
67972        "operationId": "deleteBatchV1CollectionNamespacedJob",
67973        "parameters": [
67974          {
67975            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
67976            "in": "query",
67977            "name": "allowWatchBookmarks",
67978            "type": "boolean",
67979            "uniqueItems": true
67980          },
67981          {
67982            "in": "body",
67983            "name": "body",
67984            "schema": {
67985              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
67986            }
67987          },
67988          {
67989            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
67990            "in": "query",
67991            "name": "continue",
67992            "type": "string",
67993            "uniqueItems": true
67994          },
67995          {
67996            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
67997            "in": "query",
67998            "name": "dryRun",
67999            "type": "string",
68000            "uniqueItems": true
68001          },
68002          {
68003            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68004            "in": "query",
68005            "name": "fieldSelector",
68006            "type": "string",
68007            "uniqueItems": true
68008          },
68009          {
68010            "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.",
68011            "in": "query",
68012            "name": "gracePeriodSeconds",
68013            "type": "integer",
68014            "uniqueItems": true
68015          },
68016          {
68017            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68018            "in": "query",
68019            "name": "labelSelector",
68020            "type": "string",
68021            "uniqueItems": true
68022          },
68023          {
68024            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68025            "in": "query",
68026            "name": "limit",
68027            "type": "integer",
68028            "uniqueItems": true
68029          },
68030          {
68031            "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.",
68032            "in": "query",
68033            "name": "orphanDependents",
68034            "type": "boolean",
68035            "uniqueItems": true
68036          },
68037          {
68038            "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.",
68039            "in": "query",
68040            "name": "propagationPolicy",
68041            "type": "string",
68042            "uniqueItems": true
68043          },
68044          {
68045            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
68046            "in": "query",
68047            "name": "resourceVersion",
68048            "type": "string",
68049            "uniqueItems": true
68050          },
68051          {
68052            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68053            "in": "query",
68054            "name": "timeoutSeconds",
68055            "type": "integer",
68056            "uniqueItems": true
68057          },
68058          {
68059            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68060            "in": "query",
68061            "name": "watch",
68062            "type": "boolean",
68063            "uniqueItems": true
68064          }
68065        ],
68066        "produces": [
68067          "application/json",
68068          "application/yaml",
68069          "application/vnd.kubernetes.protobuf"
68070        ],
68071        "responses": {
68072          "200": {
68073            "description": "OK",
68074            "schema": {
68075              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68076            }
68077          },
68078          "401": {
68079            "description": "Unauthorized"
68080          }
68081        },
68082        "schemes": [
68083          "https"
68084        ],
68085        "tags": [
68086          "batch_v1"
68087        ],
68088        "x-kubernetes-action": "deletecollection",
68089        "x-kubernetes-group-version-kind": {
68090          "group": "batch",
68091          "kind": "Job",
68092          "version": "v1"
68093        }
68094      },
68095      "get": {
68096        "consumes": [
68097          "*/*"
68098        ],
68099        "description": "list or watch objects of kind Job",
68100        "operationId": "listBatchV1NamespacedJob",
68101        "parameters": [
68102          {
68103            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
68104            "in": "query",
68105            "name": "allowWatchBookmarks",
68106            "type": "boolean",
68107            "uniqueItems": true
68108          },
68109          {
68110            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68111            "in": "query",
68112            "name": "continue",
68113            "type": "string",
68114            "uniqueItems": true
68115          },
68116          {
68117            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68118            "in": "query",
68119            "name": "fieldSelector",
68120            "type": "string",
68121            "uniqueItems": true
68122          },
68123          {
68124            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68125            "in": "query",
68126            "name": "labelSelector",
68127            "type": "string",
68128            "uniqueItems": true
68129          },
68130          {
68131            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68132            "in": "query",
68133            "name": "limit",
68134            "type": "integer",
68135            "uniqueItems": true
68136          },
68137          {
68138            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
68139            "in": "query",
68140            "name": "resourceVersion",
68141            "type": "string",
68142            "uniqueItems": true
68143          },
68144          {
68145            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68146            "in": "query",
68147            "name": "timeoutSeconds",
68148            "type": "integer",
68149            "uniqueItems": true
68150          },
68151          {
68152            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68153            "in": "query",
68154            "name": "watch",
68155            "type": "boolean",
68156            "uniqueItems": true
68157          }
68158        ],
68159        "produces": [
68160          "application/json",
68161          "application/yaml",
68162          "application/vnd.kubernetes.protobuf",
68163          "application/json;stream=watch",
68164          "application/vnd.kubernetes.protobuf;stream=watch"
68165        ],
68166        "responses": {
68167          "200": {
68168            "description": "OK",
68169            "schema": {
68170              "$ref": "#/definitions/io.k8s.api.batch.v1.JobList"
68171            }
68172          },
68173          "401": {
68174            "description": "Unauthorized"
68175          }
68176        },
68177        "schemes": [
68178          "https"
68179        ],
68180        "tags": [
68181          "batch_v1"
68182        ],
68183        "x-kubernetes-action": "list",
68184        "x-kubernetes-group-version-kind": {
68185          "group": "batch",
68186          "kind": "Job",
68187          "version": "v1"
68188        }
68189      },
68190      "parameters": [
68191        {
68192          "description": "object name and auth scope, such as for teams and projects",
68193          "in": "path",
68194          "name": "namespace",
68195          "required": true,
68196          "type": "string",
68197          "uniqueItems": true
68198        },
68199        {
68200          "description": "If 'true', then the output is pretty printed.",
68201          "in": "query",
68202          "name": "pretty",
68203          "type": "string",
68204          "uniqueItems": true
68205        }
68206      ],
68207      "post": {
68208        "consumes": [
68209          "*/*"
68210        ],
68211        "description": "create a Job",
68212        "operationId": "createBatchV1NamespacedJob",
68213        "parameters": [
68214          {
68215            "in": "body",
68216            "name": "body",
68217            "required": true,
68218            "schema": {
68219              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68220            }
68221          },
68222          {
68223            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68224            "in": "query",
68225            "name": "dryRun",
68226            "type": "string",
68227            "uniqueItems": true
68228          },
68229          {
68230            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68231            "in": "query",
68232            "name": "fieldManager",
68233            "type": "string",
68234            "uniqueItems": true
68235          }
68236        ],
68237        "produces": [
68238          "application/json",
68239          "application/yaml",
68240          "application/vnd.kubernetes.protobuf"
68241        ],
68242        "responses": {
68243          "200": {
68244            "description": "OK",
68245            "schema": {
68246              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68247            }
68248          },
68249          "201": {
68250            "description": "Created",
68251            "schema": {
68252              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68253            }
68254          },
68255          "202": {
68256            "description": "Accepted",
68257            "schema": {
68258              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68259            }
68260          },
68261          "401": {
68262            "description": "Unauthorized"
68263          }
68264        },
68265        "schemes": [
68266          "https"
68267        ],
68268        "tags": [
68269          "batch_v1"
68270        ],
68271        "x-kubernetes-action": "post",
68272        "x-kubernetes-group-version-kind": {
68273          "group": "batch",
68274          "kind": "Job",
68275          "version": "v1"
68276        }
68277      }
68278    },
68279    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": {
68280      "delete": {
68281        "consumes": [
68282          "*/*"
68283        ],
68284        "description": "delete a Job",
68285        "operationId": "deleteBatchV1NamespacedJob",
68286        "parameters": [
68287          {
68288            "in": "body",
68289            "name": "body",
68290            "schema": {
68291              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
68292            }
68293          },
68294          {
68295            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68296            "in": "query",
68297            "name": "dryRun",
68298            "type": "string",
68299            "uniqueItems": true
68300          },
68301          {
68302            "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.",
68303            "in": "query",
68304            "name": "gracePeriodSeconds",
68305            "type": "integer",
68306            "uniqueItems": true
68307          },
68308          {
68309            "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.",
68310            "in": "query",
68311            "name": "orphanDependents",
68312            "type": "boolean",
68313            "uniqueItems": true
68314          },
68315          {
68316            "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.",
68317            "in": "query",
68318            "name": "propagationPolicy",
68319            "type": "string",
68320            "uniqueItems": true
68321          }
68322        ],
68323        "produces": [
68324          "application/json",
68325          "application/yaml",
68326          "application/vnd.kubernetes.protobuf"
68327        ],
68328        "responses": {
68329          "200": {
68330            "description": "OK",
68331            "schema": {
68332              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68333            }
68334          },
68335          "202": {
68336            "description": "Accepted",
68337            "schema": {
68338              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
68339            }
68340          },
68341          "401": {
68342            "description": "Unauthorized"
68343          }
68344        },
68345        "schemes": [
68346          "https"
68347        ],
68348        "tags": [
68349          "batch_v1"
68350        ],
68351        "x-kubernetes-action": "delete",
68352        "x-kubernetes-group-version-kind": {
68353          "group": "batch",
68354          "kind": "Job",
68355          "version": "v1"
68356        }
68357      },
68358      "get": {
68359        "consumes": [
68360          "*/*"
68361        ],
68362        "description": "read the specified Job",
68363        "operationId": "readBatchV1NamespacedJob",
68364        "parameters": [
68365          {
68366            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
68367            "in": "query",
68368            "name": "exact",
68369            "type": "boolean",
68370            "uniqueItems": true
68371          },
68372          {
68373            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
68374            "in": "query",
68375            "name": "export",
68376            "type": "boolean",
68377            "uniqueItems": true
68378          }
68379        ],
68380        "produces": [
68381          "application/json",
68382          "application/yaml",
68383          "application/vnd.kubernetes.protobuf"
68384        ],
68385        "responses": {
68386          "200": {
68387            "description": "OK",
68388            "schema": {
68389              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68390            }
68391          },
68392          "401": {
68393            "description": "Unauthorized"
68394          }
68395        },
68396        "schemes": [
68397          "https"
68398        ],
68399        "tags": [
68400          "batch_v1"
68401        ],
68402        "x-kubernetes-action": "get",
68403        "x-kubernetes-group-version-kind": {
68404          "group": "batch",
68405          "kind": "Job",
68406          "version": "v1"
68407        }
68408      },
68409      "parameters": [
68410        {
68411          "description": "name of the Job",
68412          "in": "path",
68413          "name": "name",
68414          "required": true,
68415          "type": "string",
68416          "uniqueItems": true
68417        },
68418        {
68419          "description": "object name and auth scope, such as for teams and projects",
68420          "in": "path",
68421          "name": "namespace",
68422          "required": true,
68423          "type": "string",
68424          "uniqueItems": true
68425        },
68426        {
68427          "description": "If 'true', then the output is pretty printed.",
68428          "in": "query",
68429          "name": "pretty",
68430          "type": "string",
68431          "uniqueItems": true
68432        }
68433      ],
68434      "patch": {
68435        "consumes": [
68436          "application/json-patch+json",
68437          "application/merge-patch+json",
68438          "application/strategic-merge-patch+json"
68439        ],
68440        "description": "partially update the specified Job",
68441        "operationId": "patchBatchV1NamespacedJob",
68442        "parameters": [
68443          {
68444            "in": "body",
68445            "name": "body",
68446            "required": true,
68447            "schema": {
68448              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
68449            }
68450          },
68451          {
68452            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68453            "in": "query",
68454            "name": "dryRun",
68455            "type": "string",
68456            "uniqueItems": true
68457          },
68458          {
68459            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
68460            "in": "query",
68461            "name": "fieldManager",
68462            "type": "string",
68463            "uniqueItems": true
68464          },
68465          {
68466            "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.",
68467            "in": "query",
68468            "name": "force",
68469            "type": "boolean",
68470            "uniqueItems": true
68471          }
68472        ],
68473        "produces": [
68474          "application/json",
68475          "application/yaml",
68476          "application/vnd.kubernetes.protobuf"
68477        ],
68478        "responses": {
68479          "200": {
68480            "description": "OK",
68481            "schema": {
68482              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68483            }
68484          },
68485          "401": {
68486            "description": "Unauthorized"
68487          }
68488        },
68489        "schemes": [
68490          "https"
68491        ],
68492        "tags": [
68493          "batch_v1"
68494        ],
68495        "x-kubernetes-action": "patch",
68496        "x-kubernetes-group-version-kind": {
68497          "group": "batch",
68498          "kind": "Job",
68499          "version": "v1"
68500        }
68501      },
68502      "put": {
68503        "consumes": [
68504          "*/*"
68505        ],
68506        "description": "replace the specified Job",
68507        "operationId": "replaceBatchV1NamespacedJob",
68508        "parameters": [
68509          {
68510            "in": "body",
68511            "name": "body",
68512            "required": true,
68513            "schema": {
68514              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68515            }
68516          },
68517          {
68518            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68519            "in": "query",
68520            "name": "dryRun",
68521            "type": "string",
68522            "uniqueItems": true
68523          },
68524          {
68525            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68526            "in": "query",
68527            "name": "fieldManager",
68528            "type": "string",
68529            "uniqueItems": true
68530          }
68531        ],
68532        "produces": [
68533          "application/json",
68534          "application/yaml",
68535          "application/vnd.kubernetes.protobuf"
68536        ],
68537        "responses": {
68538          "200": {
68539            "description": "OK",
68540            "schema": {
68541              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68542            }
68543          },
68544          "201": {
68545            "description": "Created",
68546            "schema": {
68547              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68548            }
68549          },
68550          "401": {
68551            "description": "Unauthorized"
68552          }
68553        },
68554        "schemes": [
68555          "https"
68556        ],
68557        "tags": [
68558          "batch_v1"
68559        ],
68560        "x-kubernetes-action": "put",
68561        "x-kubernetes-group-version-kind": {
68562          "group": "batch",
68563          "kind": "Job",
68564          "version": "v1"
68565        }
68566      }
68567    },
68568    "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": {
68569      "get": {
68570        "consumes": [
68571          "*/*"
68572        ],
68573        "description": "read status of the specified Job",
68574        "operationId": "readBatchV1NamespacedJobStatus",
68575        "produces": [
68576          "application/json",
68577          "application/yaml",
68578          "application/vnd.kubernetes.protobuf"
68579        ],
68580        "responses": {
68581          "200": {
68582            "description": "OK",
68583            "schema": {
68584              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68585            }
68586          },
68587          "401": {
68588            "description": "Unauthorized"
68589          }
68590        },
68591        "schemes": [
68592          "https"
68593        ],
68594        "tags": [
68595          "batch_v1"
68596        ],
68597        "x-kubernetes-action": "get",
68598        "x-kubernetes-group-version-kind": {
68599          "group": "batch",
68600          "kind": "Job",
68601          "version": "v1"
68602        }
68603      },
68604      "parameters": [
68605        {
68606          "description": "name of the Job",
68607          "in": "path",
68608          "name": "name",
68609          "required": true,
68610          "type": "string",
68611          "uniqueItems": true
68612        },
68613        {
68614          "description": "object name and auth scope, such as for teams and projects",
68615          "in": "path",
68616          "name": "namespace",
68617          "required": true,
68618          "type": "string",
68619          "uniqueItems": true
68620        },
68621        {
68622          "description": "If 'true', then the output is pretty printed.",
68623          "in": "query",
68624          "name": "pretty",
68625          "type": "string",
68626          "uniqueItems": true
68627        }
68628      ],
68629      "patch": {
68630        "consumes": [
68631          "application/json-patch+json",
68632          "application/merge-patch+json",
68633          "application/strategic-merge-patch+json"
68634        ],
68635        "description": "partially update status of the specified Job",
68636        "operationId": "patchBatchV1NamespacedJobStatus",
68637        "parameters": [
68638          {
68639            "in": "body",
68640            "name": "body",
68641            "required": true,
68642            "schema": {
68643              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
68644            }
68645          },
68646          {
68647            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68648            "in": "query",
68649            "name": "dryRun",
68650            "type": "string",
68651            "uniqueItems": true
68652          },
68653          {
68654            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
68655            "in": "query",
68656            "name": "fieldManager",
68657            "type": "string",
68658            "uniqueItems": true
68659          },
68660          {
68661            "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.",
68662            "in": "query",
68663            "name": "force",
68664            "type": "boolean",
68665            "uniqueItems": true
68666          }
68667        ],
68668        "produces": [
68669          "application/json",
68670          "application/yaml",
68671          "application/vnd.kubernetes.protobuf"
68672        ],
68673        "responses": {
68674          "200": {
68675            "description": "OK",
68676            "schema": {
68677              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68678            }
68679          },
68680          "401": {
68681            "description": "Unauthorized"
68682          }
68683        },
68684        "schemes": [
68685          "https"
68686        ],
68687        "tags": [
68688          "batch_v1"
68689        ],
68690        "x-kubernetes-action": "patch",
68691        "x-kubernetes-group-version-kind": {
68692          "group": "batch",
68693          "kind": "Job",
68694          "version": "v1"
68695        }
68696      },
68697      "put": {
68698        "consumes": [
68699          "*/*"
68700        ],
68701        "description": "replace status of the specified Job",
68702        "operationId": "replaceBatchV1NamespacedJobStatus",
68703        "parameters": [
68704          {
68705            "in": "body",
68706            "name": "body",
68707            "required": true,
68708            "schema": {
68709              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68710            }
68711          },
68712          {
68713            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
68714            "in": "query",
68715            "name": "dryRun",
68716            "type": "string",
68717            "uniqueItems": true
68718          },
68719          {
68720            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
68721            "in": "query",
68722            "name": "fieldManager",
68723            "type": "string",
68724            "uniqueItems": true
68725          }
68726        ],
68727        "produces": [
68728          "application/json",
68729          "application/yaml",
68730          "application/vnd.kubernetes.protobuf"
68731        ],
68732        "responses": {
68733          "200": {
68734            "description": "OK",
68735            "schema": {
68736              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68737            }
68738          },
68739          "201": {
68740            "description": "Created",
68741            "schema": {
68742              "$ref": "#/definitions/io.k8s.api.batch.v1.Job"
68743            }
68744          },
68745          "401": {
68746            "description": "Unauthorized"
68747          }
68748        },
68749        "schemes": [
68750          "https"
68751        ],
68752        "tags": [
68753          "batch_v1"
68754        ],
68755        "x-kubernetes-action": "put",
68756        "x-kubernetes-group-version-kind": {
68757          "group": "batch",
68758          "kind": "Job",
68759          "version": "v1"
68760        }
68761      }
68762    },
68763    "/apis/batch/v1/watch/jobs": {
68764      "get": {
68765        "consumes": [
68766          "*/*"
68767        ],
68768        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
68769        "operationId": "watchBatchV1JobListForAllNamespaces",
68770        "produces": [
68771          "application/json",
68772          "application/yaml",
68773          "application/vnd.kubernetes.protobuf",
68774          "application/json;stream=watch",
68775          "application/vnd.kubernetes.protobuf;stream=watch"
68776        ],
68777        "responses": {
68778          "200": {
68779            "description": "OK",
68780            "schema": {
68781              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68782            }
68783          },
68784          "401": {
68785            "description": "Unauthorized"
68786          }
68787        },
68788        "schemes": [
68789          "https"
68790        ],
68791        "tags": [
68792          "batch_v1"
68793        ],
68794        "x-kubernetes-action": "watchlist",
68795        "x-kubernetes-group-version-kind": {
68796          "group": "batch",
68797          "kind": "Job",
68798          "version": "v1"
68799        }
68800      },
68801      "parameters": [
68802        {
68803          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
68804          "in": "query",
68805          "name": "allowWatchBookmarks",
68806          "type": "boolean",
68807          "uniqueItems": true
68808        },
68809        {
68810          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68811          "in": "query",
68812          "name": "continue",
68813          "type": "string",
68814          "uniqueItems": true
68815        },
68816        {
68817          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68818          "in": "query",
68819          "name": "fieldSelector",
68820          "type": "string",
68821          "uniqueItems": true
68822        },
68823        {
68824          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68825          "in": "query",
68826          "name": "labelSelector",
68827          "type": "string",
68828          "uniqueItems": true
68829        },
68830        {
68831          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68832          "in": "query",
68833          "name": "limit",
68834          "type": "integer",
68835          "uniqueItems": true
68836        },
68837        {
68838          "description": "If 'true', then the output is pretty printed.",
68839          "in": "query",
68840          "name": "pretty",
68841          "type": "string",
68842          "uniqueItems": true
68843        },
68844        {
68845          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
68846          "in": "query",
68847          "name": "resourceVersion",
68848          "type": "string",
68849          "uniqueItems": true
68850        },
68851        {
68852          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68853          "in": "query",
68854          "name": "timeoutSeconds",
68855          "type": "integer",
68856          "uniqueItems": true
68857        },
68858        {
68859          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68860          "in": "query",
68861          "name": "watch",
68862          "type": "boolean",
68863          "uniqueItems": true
68864        }
68865      ]
68866    },
68867    "/apis/batch/v1/watch/namespaces/{namespace}/jobs": {
68868      "get": {
68869        "consumes": [
68870          "*/*"
68871        ],
68872        "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
68873        "operationId": "watchBatchV1NamespacedJobList",
68874        "produces": [
68875          "application/json",
68876          "application/yaml",
68877          "application/vnd.kubernetes.protobuf",
68878          "application/json;stream=watch",
68879          "application/vnd.kubernetes.protobuf;stream=watch"
68880        ],
68881        "responses": {
68882          "200": {
68883            "description": "OK",
68884            "schema": {
68885              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68886            }
68887          },
68888          "401": {
68889            "description": "Unauthorized"
68890          }
68891        },
68892        "schemes": [
68893          "https"
68894        ],
68895        "tags": [
68896          "batch_v1"
68897        ],
68898        "x-kubernetes-action": "watchlist",
68899        "x-kubernetes-group-version-kind": {
68900          "group": "batch",
68901          "kind": "Job",
68902          "version": "v1"
68903        }
68904      },
68905      "parameters": [
68906        {
68907          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
68908          "in": "query",
68909          "name": "allowWatchBookmarks",
68910          "type": "boolean",
68911          "uniqueItems": true
68912        },
68913        {
68914          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
68915          "in": "query",
68916          "name": "continue",
68917          "type": "string",
68918          "uniqueItems": true
68919        },
68920        {
68921          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
68922          "in": "query",
68923          "name": "fieldSelector",
68924          "type": "string",
68925          "uniqueItems": true
68926        },
68927        {
68928          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
68929          "in": "query",
68930          "name": "labelSelector",
68931          "type": "string",
68932          "uniqueItems": true
68933        },
68934        {
68935          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
68936          "in": "query",
68937          "name": "limit",
68938          "type": "integer",
68939          "uniqueItems": true
68940        },
68941        {
68942          "description": "object name and auth scope, such as for teams and projects",
68943          "in": "path",
68944          "name": "namespace",
68945          "required": true,
68946          "type": "string",
68947          "uniqueItems": true
68948        },
68949        {
68950          "description": "If 'true', then the output is pretty printed.",
68951          "in": "query",
68952          "name": "pretty",
68953          "type": "string",
68954          "uniqueItems": true
68955        },
68956        {
68957          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
68958          "in": "query",
68959          "name": "resourceVersion",
68960          "type": "string",
68961          "uniqueItems": true
68962        },
68963        {
68964          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
68965          "in": "query",
68966          "name": "timeoutSeconds",
68967          "type": "integer",
68968          "uniqueItems": true
68969        },
68970        {
68971          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
68972          "in": "query",
68973          "name": "watch",
68974          "type": "boolean",
68975          "uniqueItems": true
68976        }
68977      ]
68978    },
68979    "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": {
68980      "get": {
68981        "consumes": [
68982          "*/*"
68983        ],
68984        "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.",
68985        "operationId": "watchBatchV1NamespacedJob",
68986        "produces": [
68987          "application/json",
68988          "application/yaml",
68989          "application/vnd.kubernetes.protobuf",
68990          "application/json;stream=watch",
68991          "application/vnd.kubernetes.protobuf;stream=watch"
68992        ],
68993        "responses": {
68994          "200": {
68995            "description": "OK",
68996            "schema": {
68997              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
68998            }
68999          },
69000          "401": {
69001            "description": "Unauthorized"
69002          }
69003        },
69004        "schemes": [
69005          "https"
69006        ],
69007        "tags": [
69008          "batch_v1"
69009        ],
69010        "x-kubernetes-action": "watch",
69011        "x-kubernetes-group-version-kind": {
69012          "group": "batch",
69013          "kind": "Job",
69014          "version": "v1"
69015        }
69016      },
69017      "parameters": [
69018        {
69019          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
69020          "in": "query",
69021          "name": "allowWatchBookmarks",
69022          "type": "boolean",
69023          "uniqueItems": true
69024        },
69025        {
69026          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69027          "in": "query",
69028          "name": "continue",
69029          "type": "string",
69030          "uniqueItems": true
69031        },
69032        {
69033          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69034          "in": "query",
69035          "name": "fieldSelector",
69036          "type": "string",
69037          "uniqueItems": true
69038        },
69039        {
69040          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69041          "in": "query",
69042          "name": "labelSelector",
69043          "type": "string",
69044          "uniqueItems": true
69045        },
69046        {
69047          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69048          "in": "query",
69049          "name": "limit",
69050          "type": "integer",
69051          "uniqueItems": true
69052        },
69053        {
69054          "description": "name of the Job",
69055          "in": "path",
69056          "name": "name",
69057          "required": true,
69058          "type": "string",
69059          "uniqueItems": true
69060        },
69061        {
69062          "description": "object name and auth scope, such as for teams and projects",
69063          "in": "path",
69064          "name": "namespace",
69065          "required": true,
69066          "type": "string",
69067          "uniqueItems": true
69068        },
69069        {
69070          "description": "If 'true', then the output is pretty printed.",
69071          "in": "query",
69072          "name": "pretty",
69073          "type": "string",
69074          "uniqueItems": true
69075        },
69076        {
69077          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
69078          "in": "query",
69079          "name": "resourceVersion",
69080          "type": "string",
69081          "uniqueItems": true
69082        },
69083        {
69084          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69085          "in": "query",
69086          "name": "timeoutSeconds",
69087          "type": "integer",
69088          "uniqueItems": true
69089        },
69090        {
69091          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69092          "in": "query",
69093          "name": "watch",
69094          "type": "boolean",
69095          "uniqueItems": true
69096        }
69097      ]
69098    },
69099    "/apis/batch/v1beta1/": {
69100      "get": {
69101        "consumes": [
69102          "application/json",
69103          "application/yaml",
69104          "application/vnd.kubernetes.protobuf"
69105        ],
69106        "description": "get available resources",
69107        "operationId": "getBatchV1beta1APIResources",
69108        "produces": [
69109          "application/json",
69110          "application/yaml",
69111          "application/vnd.kubernetes.protobuf"
69112        ],
69113        "responses": {
69114          "200": {
69115            "description": "OK",
69116            "schema": {
69117              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
69118            }
69119          },
69120          "401": {
69121            "description": "Unauthorized"
69122          }
69123        },
69124        "schemes": [
69125          "https"
69126        ],
69127        "tags": [
69128          "batch_v1beta1"
69129        ]
69130      }
69131    },
69132    "/apis/batch/v1beta1/cronjobs": {
69133      "get": {
69134        "consumes": [
69135          "*/*"
69136        ],
69137        "description": "list or watch objects of kind CronJob",
69138        "operationId": "listBatchV1beta1CronJobForAllNamespaces",
69139        "produces": [
69140          "application/json",
69141          "application/yaml",
69142          "application/vnd.kubernetes.protobuf",
69143          "application/json;stream=watch",
69144          "application/vnd.kubernetes.protobuf;stream=watch"
69145        ],
69146        "responses": {
69147          "200": {
69148            "description": "OK",
69149            "schema": {
69150              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
69151            }
69152          },
69153          "401": {
69154            "description": "Unauthorized"
69155          }
69156        },
69157        "schemes": [
69158          "https"
69159        ],
69160        "tags": [
69161          "batch_v1beta1"
69162        ],
69163        "x-kubernetes-action": "list",
69164        "x-kubernetes-group-version-kind": {
69165          "group": "batch",
69166          "kind": "CronJob",
69167          "version": "v1beta1"
69168        }
69169      },
69170      "parameters": [
69171        {
69172          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
69173          "in": "query",
69174          "name": "allowWatchBookmarks",
69175          "type": "boolean",
69176          "uniqueItems": true
69177        },
69178        {
69179          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69180          "in": "query",
69181          "name": "continue",
69182          "type": "string",
69183          "uniqueItems": true
69184        },
69185        {
69186          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69187          "in": "query",
69188          "name": "fieldSelector",
69189          "type": "string",
69190          "uniqueItems": true
69191        },
69192        {
69193          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69194          "in": "query",
69195          "name": "labelSelector",
69196          "type": "string",
69197          "uniqueItems": true
69198        },
69199        {
69200          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69201          "in": "query",
69202          "name": "limit",
69203          "type": "integer",
69204          "uniqueItems": true
69205        },
69206        {
69207          "description": "If 'true', then the output is pretty printed.",
69208          "in": "query",
69209          "name": "pretty",
69210          "type": "string",
69211          "uniqueItems": true
69212        },
69213        {
69214          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
69215          "in": "query",
69216          "name": "resourceVersion",
69217          "type": "string",
69218          "uniqueItems": true
69219        },
69220        {
69221          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69222          "in": "query",
69223          "name": "timeoutSeconds",
69224          "type": "integer",
69225          "uniqueItems": true
69226        },
69227        {
69228          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69229          "in": "query",
69230          "name": "watch",
69231          "type": "boolean",
69232          "uniqueItems": true
69233        }
69234      ]
69235    },
69236    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs": {
69237      "delete": {
69238        "consumes": [
69239          "*/*"
69240        ],
69241        "description": "delete collection of CronJob",
69242        "operationId": "deleteBatchV1beta1CollectionNamespacedCronJob",
69243        "parameters": [
69244          {
69245            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
69246            "in": "query",
69247            "name": "allowWatchBookmarks",
69248            "type": "boolean",
69249            "uniqueItems": true
69250          },
69251          {
69252            "in": "body",
69253            "name": "body",
69254            "schema": {
69255              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
69256            }
69257          },
69258          {
69259            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69260            "in": "query",
69261            "name": "continue",
69262            "type": "string",
69263            "uniqueItems": true
69264          },
69265          {
69266            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69267            "in": "query",
69268            "name": "dryRun",
69269            "type": "string",
69270            "uniqueItems": true
69271          },
69272          {
69273            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69274            "in": "query",
69275            "name": "fieldSelector",
69276            "type": "string",
69277            "uniqueItems": true
69278          },
69279          {
69280            "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.",
69281            "in": "query",
69282            "name": "gracePeriodSeconds",
69283            "type": "integer",
69284            "uniqueItems": true
69285          },
69286          {
69287            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69288            "in": "query",
69289            "name": "labelSelector",
69290            "type": "string",
69291            "uniqueItems": true
69292          },
69293          {
69294            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69295            "in": "query",
69296            "name": "limit",
69297            "type": "integer",
69298            "uniqueItems": true
69299          },
69300          {
69301            "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.",
69302            "in": "query",
69303            "name": "orphanDependents",
69304            "type": "boolean",
69305            "uniqueItems": true
69306          },
69307          {
69308            "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.",
69309            "in": "query",
69310            "name": "propagationPolicy",
69311            "type": "string",
69312            "uniqueItems": true
69313          },
69314          {
69315            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
69316            "in": "query",
69317            "name": "resourceVersion",
69318            "type": "string",
69319            "uniqueItems": true
69320          },
69321          {
69322            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69323            "in": "query",
69324            "name": "timeoutSeconds",
69325            "type": "integer",
69326            "uniqueItems": true
69327          },
69328          {
69329            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69330            "in": "query",
69331            "name": "watch",
69332            "type": "boolean",
69333            "uniqueItems": true
69334          }
69335        ],
69336        "produces": [
69337          "application/json",
69338          "application/yaml",
69339          "application/vnd.kubernetes.protobuf"
69340        ],
69341        "responses": {
69342          "200": {
69343            "description": "OK",
69344            "schema": {
69345              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69346            }
69347          },
69348          "401": {
69349            "description": "Unauthorized"
69350          }
69351        },
69352        "schemes": [
69353          "https"
69354        ],
69355        "tags": [
69356          "batch_v1beta1"
69357        ],
69358        "x-kubernetes-action": "deletecollection",
69359        "x-kubernetes-group-version-kind": {
69360          "group": "batch",
69361          "kind": "CronJob",
69362          "version": "v1beta1"
69363        }
69364      },
69365      "get": {
69366        "consumes": [
69367          "*/*"
69368        ],
69369        "description": "list or watch objects of kind CronJob",
69370        "operationId": "listBatchV1beta1NamespacedCronJob",
69371        "parameters": [
69372          {
69373            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
69374            "in": "query",
69375            "name": "allowWatchBookmarks",
69376            "type": "boolean",
69377            "uniqueItems": true
69378          },
69379          {
69380            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
69381            "in": "query",
69382            "name": "continue",
69383            "type": "string",
69384            "uniqueItems": true
69385          },
69386          {
69387            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
69388            "in": "query",
69389            "name": "fieldSelector",
69390            "type": "string",
69391            "uniqueItems": true
69392          },
69393          {
69394            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
69395            "in": "query",
69396            "name": "labelSelector",
69397            "type": "string",
69398            "uniqueItems": true
69399          },
69400          {
69401            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
69402            "in": "query",
69403            "name": "limit",
69404            "type": "integer",
69405            "uniqueItems": true
69406          },
69407          {
69408            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
69409            "in": "query",
69410            "name": "resourceVersion",
69411            "type": "string",
69412            "uniqueItems": true
69413          },
69414          {
69415            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
69416            "in": "query",
69417            "name": "timeoutSeconds",
69418            "type": "integer",
69419            "uniqueItems": true
69420          },
69421          {
69422            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
69423            "in": "query",
69424            "name": "watch",
69425            "type": "boolean",
69426            "uniqueItems": true
69427          }
69428        ],
69429        "produces": [
69430          "application/json",
69431          "application/yaml",
69432          "application/vnd.kubernetes.protobuf",
69433          "application/json;stream=watch",
69434          "application/vnd.kubernetes.protobuf;stream=watch"
69435        ],
69436        "responses": {
69437          "200": {
69438            "description": "OK",
69439            "schema": {
69440              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJobList"
69441            }
69442          },
69443          "401": {
69444            "description": "Unauthorized"
69445          }
69446        },
69447        "schemes": [
69448          "https"
69449        ],
69450        "tags": [
69451          "batch_v1beta1"
69452        ],
69453        "x-kubernetes-action": "list",
69454        "x-kubernetes-group-version-kind": {
69455          "group": "batch",
69456          "kind": "CronJob",
69457          "version": "v1beta1"
69458        }
69459      },
69460      "parameters": [
69461        {
69462          "description": "object name and auth scope, such as for teams and projects",
69463          "in": "path",
69464          "name": "namespace",
69465          "required": true,
69466          "type": "string",
69467          "uniqueItems": true
69468        },
69469        {
69470          "description": "If 'true', then the output is pretty printed.",
69471          "in": "query",
69472          "name": "pretty",
69473          "type": "string",
69474          "uniqueItems": true
69475        }
69476      ],
69477      "post": {
69478        "consumes": [
69479          "*/*"
69480        ],
69481        "description": "create a CronJob",
69482        "operationId": "createBatchV1beta1NamespacedCronJob",
69483        "parameters": [
69484          {
69485            "in": "body",
69486            "name": "body",
69487            "required": true,
69488            "schema": {
69489              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69490            }
69491          },
69492          {
69493            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69494            "in": "query",
69495            "name": "dryRun",
69496            "type": "string",
69497            "uniqueItems": true
69498          },
69499          {
69500            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69501            "in": "query",
69502            "name": "fieldManager",
69503            "type": "string",
69504            "uniqueItems": true
69505          }
69506        ],
69507        "produces": [
69508          "application/json",
69509          "application/yaml",
69510          "application/vnd.kubernetes.protobuf"
69511        ],
69512        "responses": {
69513          "200": {
69514            "description": "OK",
69515            "schema": {
69516              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69517            }
69518          },
69519          "201": {
69520            "description": "Created",
69521            "schema": {
69522              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69523            }
69524          },
69525          "202": {
69526            "description": "Accepted",
69527            "schema": {
69528              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69529            }
69530          },
69531          "401": {
69532            "description": "Unauthorized"
69533          }
69534        },
69535        "schemes": [
69536          "https"
69537        ],
69538        "tags": [
69539          "batch_v1beta1"
69540        ],
69541        "x-kubernetes-action": "post",
69542        "x-kubernetes-group-version-kind": {
69543          "group": "batch",
69544          "kind": "CronJob",
69545          "version": "v1beta1"
69546        }
69547      }
69548    },
69549    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}": {
69550      "delete": {
69551        "consumes": [
69552          "*/*"
69553        ],
69554        "description": "delete a CronJob",
69555        "operationId": "deleteBatchV1beta1NamespacedCronJob",
69556        "parameters": [
69557          {
69558            "in": "body",
69559            "name": "body",
69560            "schema": {
69561              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
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": "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.",
69573            "in": "query",
69574            "name": "gracePeriodSeconds",
69575            "type": "integer",
69576            "uniqueItems": true
69577          },
69578          {
69579            "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.",
69580            "in": "query",
69581            "name": "orphanDependents",
69582            "type": "boolean",
69583            "uniqueItems": true
69584          },
69585          {
69586            "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.",
69587            "in": "query",
69588            "name": "propagationPolicy",
69589            "type": "string",
69590            "uniqueItems": true
69591          }
69592        ],
69593        "produces": [
69594          "application/json",
69595          "application/yaml",
69596          "application/vnd.kubernetes.protobuf"
69597        ],
69598        "responses": {
69599          "200": {
69600            "description": "OK",
69601            "schema": {
69602              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69603            }
69604          },
69605          "202": {
69606            "description": "Accepted",
69607            "schema": {
69608              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
69609            }
69610          },
69611          "401": {
69612            "description": "Unauthorized"
69613          }
69614        },
69615        "schemes": [
69616          "https"
69617        ],
69618        "tags": [
69619          "batch_v1beta1"
69620        ],
69621        "x-kubernetes-action": "delete",
69622        "x-kubernetes-group-version-kind": {
69623          "group": "batch",
69624          "kind": "CronJob",
69625          "version": "v1beta1"
69626        }
69627      },
69628      "get": {
69629        "consumes": [
69630          "*/*"
69631        ],
69632        "description": "read the specified CronJob",
69633        "operationId": "readBatchV1beta1NamespacedCronJob",
69634        "parameters": [
69635          {
69636            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
69637            "in": "query",
69638            "name": "exact",
69639            "type": "boolean",
69640            "uniqueItems": true
69641          },
69642          {
69643            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
69644            "in": "query",
69645            "name": "export",
69646            "type": "boolean",
69647            "uniqueItems": true
69648          }
69649        ],
69650        "produces": [
69651          "application/json",
69652          "application/yaml",
69653          "application/vnd.kubernetes.protobuf"
69654        ],
69655        "responses": {
69656          "200": {
69657            "description": "OK",
69658            "schema": {
69659              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69660            }
69661          },
69662          "401": {
69663            "description": "Unauthorized"
69664          }
69665        },
69666        "schemes": [
69667          "https"
69668        ],
69669        "tags": [
69670          "batch_v1beta1"
69671        ],
69672        "x-kubernetes-action": "get",
69673        "x-kubernetes-group-version-kind": {
69674          "group": "batch",
69675          "kind": "CronJob",
69676          "version": "v1beta1"
69677        }
69678      },
69679      "parameters": [
69680        {
69681          "description": "name of the CronJob",
69682          "in": "path",
69683          "name": "name",
69684          "required": true,
69685          "type": "string",
69686          "uniqueItems": true
69687        },
69688        {
69689          "description": "object name and auth scope, such as for teams and projects",
69690          "in": "path",
69691          "name": "namespace",
69692          "required": true,
69693          "type": "string",
69694          "uniqueItems": true
69695        },
69696        {
69697          "description": "If 'true', then the output is pretty printed.",
69698          "in": "query",
69699          "name": "pretty",
69700          "type": "string",
69701          "uniqueItems": true
69702        }
69703      ],
69704      "patch": {
69705        "consumes": [
69706          "application/json-patch+json",
69707          "application/merge-patch+json",
69708          "application/strategic-merge-patch+json"
69709        ],
69710        "description": "partially update the specified CronJob",
69711        "operationId": "patchBatchV1beta1NamespacedCronJob",
69712        "parameters": [
69713          {
69714            "in": "body",
69715            "name": "body",
69716            "required": true,
69717            "schema": {
69718              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
69719            }
69720          },
69721          {
69722            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69723            "in": "query",
69724            "name": "dryRun",
69725            "type": "string",
69726            "uniqueItems": true
69727          },
69728          {
69729            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
69730            "in": "query",
69731            "name": "fieldManager",
69732            "type": "string",
69733            "uniqueItems": true
69734          },
69735          {
69736            "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.",
69737            "in": "query",
69738            "name": "force",
69739            "type": "boolean",
69740            "uniqueItems": true
69741          }
69742        ],
69743        "produces": [
69744          "application/json",
69745          "application/yaml",
69746          "application/vnd.kubernetes.protobuf"
69747        ],
69748        "responses": {
69749          "200": {
69750            "description": "OK",
69751            "schema": {
69752              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69753            }
69754          },
69755          "401": {
69756            "description": "Unauthorized"
69757          }
69758        },
69759        "schemes": [
69760          "https"
69761        ],
69762        "tags": [
69763          "batch_v1beta1"
69764        ],
69765        "x-kubernetes-action": "patch",
69766        "x-kubernetes-group-version-kind": {
69767          "group": "batch",
69768          "kind": "CronJob",
69769          "version": "v1beta1"
69770        }
69771      },
69772      "put": {
69773        "consumes": [
69774          "*/*"
69775        ],
69776        "description": "replace the specified CronJob",
69777        "operationId": "replaceBatchV1beta1NamespacedCronJob",
69778        "parameters": [
69779          {
69780            "in": "body",
69781            "name": "body",
69782            "required": true,
69783            "schema": {
69784              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69785            }
69786          },
69787          {
69788            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69789            "in": "query",
69790            "name": "dryRun",
69791            "type": "string",
69792            "uniqueItems": true
69793          },
69794          {
69795            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69796            "in": "query",
69797            "name": "fieldManager",
69798            "type": "string",
69799            "uniqueItems": true
69800          }
69801        ],
69802        "produces": [
69803          "application/json",
69804          "application/yaml",
69805          "application/vnd.kubernetes.protobuf"
69806        ],
69807        "responses": {
69808          "200": {
69809            "description": "OK",
69810            "schema": {
69811              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69812            }
69813          },
69814          "201": {
69815            "description": "Created",
69816            "schema": {
69817              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69818            }
69819          },
69820          "401": {
69821            "description": "Unauthorized"
69822          }
69823        },
69824        "schemes": [
69825          "https"
69826        ],
69827        "tags": [
69828          "batch_v1beta1"
69829        ],
69830        "x-kubernetes-action": "put",
69831        "x-kubernetes-group-version-kind": {
69832          "group": "batch",
69833          "kind": "CronJob",
69834          "version": "v1beta1"
69835        }
69836      }
69837    },
69838    "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status": {
69839      "get": {
69840        "consumes": [
69841          "*/*"
69842        ],
69843        "description": "read status of the specified CronJob",
69844        "operationId": "readBatchV1beta1NamespacedCronJobStatus",
69845        "produces": [
69846          "application/json",
69847          "application/yaml",
69848          "application/vnd.kubernetes.protobuf"
69849        ],
69850        "responses": {
69851          "200": {
69852            "description": "OK",
69853            "schema": {
69854              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69855            }
69856          },
69857          "401": {
69858            "description": "Unauthorized"
69859          }
69860        },
69861        "schemes": [
69862          "https"
69863        ],
69864        "tags": [
69865          "batch_v1beta1"
69866        ],
69867        "x-kubernetes-action": "get",
69868        "x-kubernetes-group-version-kind": {
69869          "group": "batch",
69870          "kind": "CronJob",
69871          "version": "v1beta1"
69872        }
69873      },
69874      "parameters": [
69875        {
69876          "description": "name of the CronJob",
69877          "in": "path",
69878          "name": "name",
69879          "required": true,
69880          "type": "string",
69881          "uniqueItems": true
69882        },
69883        {
69884          "description": "object name and auth scope, such as for teams and projects",
69885          "in": "path",
69886          "name": "namespace",
69887          "required": true,
69888          "type": "string",
69889          "uniqueItems": true
69890        },
69891        {
69892          "description": "If 'true', then the output is pretty printed.",
69893          "in": "query",
69894          "name": "pretty",
69895          "type": "string",
69896          "uniqueItems": true
69897        }
69898      ],
69899      "patch": {
69900        "consumes": [
69901          "application/json-patch+json",
69902          "application/merge-patch+json",
69903          "application/strategic-merge-patch+json"
69904        ],
69905        "description": "partially update status of the specified CronJob",
69906        "operationId": "patchBatchV1beta1NamespacedCronJobStatus",
69907        "parameters": [
69908          {
69909            "in": "body",
69910            "name": "body",
69911            "required": true,
69912            "schema": {
69913              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
69914            }
69915          },
69916          {
69917            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69918            "in": "query",
69919            "name": "dryRun",
69920            "type": "string",
69921            "uniqueItems": true
69922          },
69923          {
69924            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
69925            "in": "query",
69926            "name": "fieldManager",
69927            "type": "string",
69928            "uniqueItems": true
69929          },
69930          {
69931            "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.",
69932            "in": "query",
69933            "name": "force",
69934            "type": "boolean",
69935            "uniqueItems": true
69936          }
69937        ],
69938        "produces": [
69939          "application/json",
69940          "application/yaml",
69941          "application/vnd.kubernetes.protobuf"
69942        ],
69943        "responses": {
69944          "200": {
69945            "description": "OK",
69946            "schema": {
69947              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69948            }
69949          },
69950          "401": {
69951            "description": "Unauthorized"
69952          }
69953        },
69954        "schemes": [
69955          "https"
69956        ],
69957        "tags": [
69958          "batch_v1beta1"
69959        ],
69960        "x-kubernetes-action": "patch",
69961        "x-kubernetes-group-version-kind": {
69962          "group": "batch",
69963          "kind": "CronJob",
69964          "version": "v1beta1"
69965        }
69966      },
69967      "put": {
69968        "consumes": [
69969          "*/*"
69970        ],
69971        "description": "replace status of the specified CronJob",
69972        "operationId": "replaceBatchV1beta1NamespacedCronJobStatus",
69973        "parameters": [
69974          {
69975            "in": "body",
69976            "name": "body",
69977            "required": true,
69978            "schema": {
69979              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
69980            }
69981          },
69982          {
69983            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
69984            "in": "query",
69985            "name": "dryRun",
69986            "type": "string",
69987            "uniqueItems": true
69988          },
69989          {
69990            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
69991            "in": "query",
69992            "name": "fieldManager",
69993            "type": "string",
69994            "uniqueItems": true
69995          }
69996        ],
69997        "produces": [
69998          "application/json",
69999          "application/yaml",
70000          "application/vnd.kubernetes.protobuf"
70001        ],
70002        "responses": {
70003          "200": {
70004            "description": "OK",
70005            "schema": {
70006              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
70007            }
70008          },
70009          "201": {
70010            "description": "Created",
70011            "schema": {
70012              "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob"
70013            }
70014          },
70015          "401": {
70016            "description": "Unauthorized"
70017          }
70018        },
70019        "schemes": [
70020          "https"
70021        ],
70022        "tags": [
70023          "batch_v1beta1"
70024        ],
70025        "x-kubernetes-action": "put",
70026        "x-kubernetes-group-version-kind": {
70027          "group": "batch",
70028          "kind": "CronJob",
70029          "version": "v1beta1"
70030        }
70031      }
70032    },
70033    "/apis/batch/v1beta1/watch/cronjobs": {
70034      "get": {
70035        "consumes": [
70036          "*/*"
70037        ],
70038        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
70039        "operationId": "watchBatchV1beta1CronJobListForAllNamespaces",
70040        "produces": [
70041          "application/json",
70042          "application/yaml",
70043          "application/vnd.kubernetes.protobuf",
70044          "application/json;stream=watch",
70045          "application/vnd.kubernetes.protobuf;stream=watch"
70046        ],
70047        "responses": {
70048          "200": {
70049            "description": "OK",
70050            "schema": {
70051              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70052            }
70053          },
70054          "401": {
70055            "description": "Unauthorized"
70056          }
70057        },
70058        "schemes": [
70059          "https"
70060        ],
70061        "tags": [
70062          "batch_v1beta1"
70063        ],
70064        "x-kubernetes-action": "watchlist",
70065        "x-kubernetes-group-version-kind": {
70066          "group": "batch",
70067          "kind": "CronJob",
70068          "version": "v1beta1"
70069        }
70070      },
70071      "parameters": [
70072        {
70073          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
70074          "in": "query",
70075          "name": "allowWatchBookmarks",
70076          "type": "boolean",
70077          "uniqueItems": true
70078        },
70079        {
70080          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70081          "in": "query",
70082          "name": "continue",
70083          "type": "string",
70084          "uniqueItems": true
70085        },
70086        {
70087          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70088          "in": "query",
70089          "name": "fieldSelector",
70090          "type": "string",
70091          "uniqueItems": true
70092        },
70093        {
70094          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70095          "in": "query",
70096          "name": "labelSelector",
70097          "type": "string",
70098          "uniqueItems": true
70099        },
70100        {
70101          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70102          "in": "query",
70103          "name": "limit",
70104          "type": "integer",
70105          "uniqueItems": true
70106        },
70107        {
70108          "description": "If 'true', then the output is pretty printed.",
70109          "in": "query",
70110          "name": "pretty",
70111          "type": "string",
70112          "uniqueItems": true
70113        },
70114        {
70115          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
70116          "in": "query",
70117          "name": "resourceVersion",
70118          "type": "string",
70119          "uniqueItems": true
70120        },
70121        {
70122          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70123          "in": "query",
70124          "name": "timeoutSeconds",
70125          "type": "integer",
70126          "uniqueItems": true
70127        },
70128        {
70129          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70130          "in": "query",
70131          "name": "watch",
70132          "type": "boolean",
70133          "uniqueItems": true
70134        }
70135      ]
70136    },
70137    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs": {
70138      "get": {
70139        "consumes": [
70140          "*/*"
70141        ],
70142        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
70143        "operationId": "watchBatchV1beta1NamespacedCronJobList",
70144        "produces": [
70145          "application/json",
70146          "application/yaml",
70147          "application/vnd.kubernetes.protobuf",
70148          "application/json;stream=watch",
70149          "application/vnd.kubernetes.protobuf;stream=watch"
70150        ],
70151        "responses": {
70152          "200": {
70153            "description": "OK",
70154            "schema": {
70155              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70156            }
70157          },
70158          "401": {
70159            "description": "Unauthorized"
70160          }
70161        },
70162        "schemes": [
70163          "https"
70164        ],
70165        "tags": [
70166          "batch_v1beta1"
70167        ],
70168        "x-kubernetes-action": "watchlist",
70169        "x-kubernetes-group-version-kind": {
70170          "group": "batch",
70171          "kind": "CronJob",
70172          "version": "v1beta1"
70173        }
70174      },
70175      "parameters": [
70176        {
70177          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
70178          "in": "query",
70179          "name": "allowWatchBookmarks",
70180          "type": "boolean",
70181          "uniqueItems": true
70182        },
70183        {
70184          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70185          "in": "query",
70186          "name": "continue",
70187          "type": "string",
70188          "uniqueItems": true
70189        },
70190        {
70191          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70192          "in": "query",
70193          "name": "fieldSelector",
70194          "type": "string",
70195          "uniqueItems": true
70196        },
70197        {
70198          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70199          "in": "query",
70200          "name": "labelSelector",
70201          "type": "string",
70202          "uniqueItems": true
70203        },
70204        {
70205          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70206          "in": "query",
70207          "name": "limit",
70208          "type": "integer",
70209          "uniqueItems": true
70210        },
70211        {
70212          "description": "object name and auth scope, such as for teams and projects",
70213          "in": "path",
70214          "name": "namespace",
70215          "required": true,
70216          "type": "string",
70217          "uniqueItems": true
70218        },
70219        {
70220          "description": "If 'true', then the output is pretty printed.",
70221          "in": "query",
70222          "name": "pretty",
70223          "type": "string",
70224          "uniqueItems": true
70225        },
70226        {
70227          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
70228          "in": "query",
70229          "name": "resourceVersion",
70230          "type": "string",
70231          "uniqueItems": true
70232        },
70233        {
70234          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70235          "in": "query",
70236          "name": "timeoutSeconds",
70237          "type": "integer",
70238          "uniqueItems": true
70239        },
70240        {
70241          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70242          "in": "query",
70243          "name": "watch",
70244          "type": "boolean",
70245          "uniqueItems": true
70246        }
70247      ]
70248    },
70249    "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}": {
70250      "get": {
70251        "consumes": [
70252          "*/*"
70253        ],
70254        "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.",
70255        "operationId": "watchBatchV1beta1NamespacedCronJob",
70256        "produces": [
70257          "application/json",
70258          "application/yaml",
70259          "application/vnd.kubernetes.protobuf",
70260          "application/json;stream=watch",
70261          "application/vnd.kubernetes.protobuf;stream=watch"
70262        ],
70263        "responses": {
70264          "200": {
70265            "description": "OK",
70266            "schema": {
70267              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
70268            }
70269          },
70270          "401": {
70271            "description": "Unauthorized"
70272          }
70273        },
70274        "schemes": [
70275          "https"
70276        ],
70277        "tags": [
70278          "batch_v1beta1"
70279        ],
70280        "x-kubernetes-action": "watch",
70281        "x-kubernetes-group-version-kind": {
70282          "group": "batch",
70283          "kind": "CronJob",
70284          "version": "v1beta1"
70285        }
70286      },
70287      "parameters": [
70288        {
70289          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
70290          "in": "query",
70291          "name": "allowWatchBookmarks",
70292          "type": "boolean",
70293          "uniqueItems": true
70294        },
70295        {
70296          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70297          "in": "query",
70298          "name": "continue",
70299          "type": "string",
70300          "uniqueItems": true
70301        },
70302        {
70303          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70304          "in": "query",
70305          "name": "fieldSelector",
70306          "type": "string",
70307          "uniqueItems": true
70308        },
70309        {
70310          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70311          "in": "query",
70312          "name": "labelSelector",
70313          "type": "string",
70314          "uniqueItems": true
70315        },
70316        {
70317          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70318          "in": "query",
70319          "name": "limit",
70320          "type": "integer",
70321          "uniqueItems": true
70322        },
70323        {
70324          "description": "name of the CronJob",
70325          "in": "path",
70326          "name": "name",
70327          "required": true,
70328          "type": "string",
70329          "uniqueItems": true
70330        },
70331        {
70332          "description": "object name and auth scope, such as for teams and projects",
70333          "in": "path",
70334          "name": "namespace",
70335          "required": true,
70336          "type": "string",
70337          "uniqueItems": true
70338        },
70339        {
70340          "description": "If 'true', then the output is pretty printed.",
70341          "in": "query",
70342          "name": "pretty",
70343          "type": "string",
70344          "uniqueItems": true
70345        },
70346        {
70347          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
70348          "in": "query",
70349          "name": "resourceVersion",
70350          "type": "string",
70351          "uniqueItems": true
70352        },
70353        {
70354          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70355          "in": "query",
70356          "name": "timeoutSeconds",
70357          "type": "integer",
70358          "uniqueItems": true
70359        },
70360        {
70361          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70362          "in": "query",
70363          "name": "watch",
70364          "type": "boolean",
70365          "uniqueItems": true
70366        }
70367      ]
70368    },
70369    "/apis/batch/v2alpha1/": {
70370      "get": {
70371        "consumes": [
70372          "application/json",
70373          "application/yaml",
70374          "application/vnd.kubernetes.protobuf"
70375        ],
70376        "description": "get available resources",
70377        "operationId": "getBatchV2alpha1APIResources",
70378        "produces": [
70379          "application/json",
70380          "application/yaml",
70381          "application/vnd.kubernetes.protobuf"
70382        ],
70383        "responses": {
70384          "200": {
70385            "description": "OK",
70386            "schema": {
70387              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
70388            }
70389          },
70390          "401": {
70391            "description": "Unauthorized"
70392          }
70393        },
70394        "schemes": [
70395          "https"
70396        ],
70397        "tags": [
70398          "batch_v2alpha1"
70399        ]
70400      }
70401    },
70402    "/apis/batch/v2alpha1/cronjobs": {
70403      "get": {
70404        "consumes": [
70405          "*/*"
70406        ],
70407        "description": "list or watch objects of kind CronJob",
70408        "operationId": "listBatchV2alpha1CronJobForAllNamespaces",
70409        "produces": [
70410          "application/json",
70411          "application/yaml",
70412          "application/vnd.kubernetes.protobuf",
70413          "application/json;stream=watch",
70414          "application/vnd.kubernetes.protobuf;stream=watch"
70415        ],
70416        "responses": {
70417          "200": {
70418            "description": "OK",
70419            "schema": {
70420              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList"
70421            }
70422          },
70423          "401": {
70424            "description": "Unauthorized"
70425          }
70426        },
70427        "schemes": [
70428          "https"
70429        ],
70430        "tags": [
70431          "batch_v2alpha1"
70432        ],
70433        "x-kubernetes-action": "list",
70434        "x-kubernetes-group-version-kind": {
70435          "group": "batch",
70436          "kind": "CronJob",
70437          "version": "v2alpha1"
70438        }
70439      },
70440      "parameters": [
70441        {
70442          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
70443          "in": "query",
70444          "name": "allowWatchBookmarks",
70445          "type": "boolean",
70446          "uniqueItems": true
70447        },
70448        {
70449          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70450          "in": "query",
70451          "name": "continue",
70452          "type": "string",
70453          "uniqueItems": true
70454        },
70455        {
70456          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70457          "in": "query",
70458          "name": "fieldSelector",
70459          "type": "string",
70460          "uniqueItems": true
70461        },
70462        {
70463          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70464          "in": "query",
70465          "name": "labelSelector",
70466          "type": "string",
70467          "uniqueItems": true
70468        },
70469        {
70470          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70471          "in": "query",
70472          "name": "limit",
70473          "type": "integer",
70474          "uniqueItems": true
70475        },
70476        {
70477          "description": "If 'true', then the output is pretty printed.",
70478          "in": "query",
70479          "name": "pretty",
70480          "type": "string",
70481          "uniqueItems": true
70482        },
70483        {
70484          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
70485          "in": "query",
70486          "name": "resourceVersion",
70487          "type": "string",
70488          "uniqueItems": true
70489        },
70490        {
70491          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70492          "in": "query",
70493          "name": "timeoutSeconds",
70494          "type": "integer",
70495          "uniqueItems": true
70496        },
70497        {
70498          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70499          "in": "query",
70500          "name": "watch",
70501          "type": "boolean",
70502          "uniqueItems": true
70503        }
70504      ]
70505    },
70506    "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs": {
70507      "delete": {
70508        "consumes": [
70509          "*/*"
70510        ],
70511        "description": "delete collection of CronJob",
70512        "operationId": "deleteBatchV2alpha1CollectionNamespacedCronJob",
70513        "parameters": [
70514          {
70515            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
70516            "in": "query",
70517            "name": "allowWatchBookmarks",
70518            "type": "boolean",
70519            "uniqueItems": true
70520          },
70521          {
70522            "in": "body",
70523            "name": "body",
70524            "schema": {
70525              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70526            }
70527          },
70528          {
70529            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70530            "in": "query",
70531            "name": "continue",
70532            "type": "string",
70533            "uniqueItems": true
70534          },
70535          {
70536            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70537            "in": "query",
70538            "name": "dryRun",
70539            "type": "string",
70540            "uniqueItems": true
70541          },
70542          {
70543            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70544            "in": "query",
70545            "name": "fieldSelector",
70546            "type": "string",
70547            "uniqueItems": true
70548          },
70549          {
70550            "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.",
70551            "in": "query",
70552            "name": "gracePeriodSeconds",
70553            "type": "integer",
70554            "uniqueItems": true
70555          },
70556          {
70557            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70558            "in": "query",
70559            "name": "labelSelector",
70560            "type": "string",
70561            "uniqueItems": true
70562          },
70563          {
70564            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70565            "in": "query",
70566            "name": "limit",
70567            "type": "integer",
70568            "uniqueItems": true
70569          },
70570          {
70571            "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.",
70572            "in": "query",
70573            "name": "orphanDependents",
70574            "type": "boolean",
70575            "uniqueItems": true
70576          },
70577          {
70578            "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.",
70579            "in": "query",
70580            "name": "propagationPolicy",
70581            "type": "string",
70582            "uniqueItems": true
70583          },
70584          {
70585            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
70586            "in": "query",
70587            "name": "resourceVersion",
70588            "type": "string",
70589            "uniqueItems": true
70590          },
70591          {
70592            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70593            "in": "query",
70594            "name": "timeoutSeconds",
70595            "type": "integer",
70596            "uniqueItems": true
70597          },
70598          {
70599            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70600            "in": "query",
70601            "name": "watch",
70602            "type": "boolean",
70603            "uniqueItems": true
70604          }
70605        ],
70606        "produces": [
70607          "application/json",
70608          "application/yaml",
70609          "application/vnd.kubernetes.protobuf"
70610        ],
70611        "responses": {
70612          "200": {
70613            "description": "OK",
70614            "schema": {
70615              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70616            }
70617          },
70618          "401": {
70619            "description": "Unauthorized"
70620          }
70621        },
70622        "schemes": [
70623          "https"
70624        ],
70625        "tags": [
70626          "batch_v2alpha1"
70627        ],
70628        "x-kubernetes-action": "deletecollection",
70629        "x-kubernetes-group-version-kind": {
70630          "group": "batch",
70631          "kind": "CronJob",
70632          "version": "v2alpha1"
70633        }
70634      },
70635      "get": {
70636        "consumes": [
70637          "*/*"
70638        ],
70639        "description": "list or watch objects of kind CronJob",
70640        "operationId": "listBatchV2alpha1NamespacedCronJob",
70641        "parameters": [
70642          {
70643            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
70644            "in": "query",
70645            "name": "allowWatchBookmarks",
70646            "type": "boolean",
70647            "uniqueItems": true
70648          },
70649          {
70650            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
70651            "in": "query",
70652            "name": "continue",
70653            "type": "string",
70654            "uniqueItems": true
70655          },
70656          {
70657            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
70658            "in": "query",
70659            "name": "fieldSelector",
70660            "type": "string",
70661            "uniqueItems": true
70662          },
70663          {
70664            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
70665            "in": "query",
70666            "name": "labelSelector",
70667            "type": "string",
70668            "uniqueItems": true
70669          },
70670          {
70671            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
70672            "in": "query",
70673            "name": "limit",
70674            "type": "integer",
70675            "uniqueItems": true
70676          },
70677          {
70678            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
70679            "in": "query",
70680            "name": "resourceVersion",
70681            "type": "string",
70682            "uniqueItems": true
70683          },
70684          {
70685            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
70686            "in": "query",
70687            "name": "timeoutSeconds",
70688            "type": "integer",
70689            "uniqueItems": true
70690          },
70691          {
70692            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
70693            "in": "query",
70694            "name": "watch",
70695            "type": "boolean",
70696            "uniqueItems": true
70697          }
70698        ],
70699        "produces": [
70700          "application/json",
70701          "application/yaml",
70702          "application/vnd.kubernetes.protobuf",
70703          "application/json;stream=watch",
70704          "application/vnd.kubernetes.protobuf;stream=watch"
70705        ],
70706        "responses": {
70707          "200": {
70708            "description": "OK",
70709            "schema": {
70710              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJobList"
70711            }
70712          },
70713          "401": {
70714            "description": "Unauthorized"
70715          }
70716        },
70717        "schemes": [
70718          "https"
70719        ],
70720        "tags": [
70721          "batch_v2alpha1"
70722        ],
70723        "x-kubernetes-action": "list",
70724        "x-kubernetes-group-version-kind": {
70725          "group": "batch",
70726          "kind": "CronJob",
70727          "version": "v2alpha1"
70728        }
70729      },
70730      "parameters": [
70731        {
70732          "description": "object name and auth scope, such as for teams and projects",
70733          "in": "path",
70734          "name": "namespace",
70735          "required": true,
70736          "type": "string",
70737          "uniqueItems": true
70738        },
70739        {
70740          "description": "If 'true', then the output is pretty printed.",
70741          "in": "query",
70742          "name": "pretty",
70743          "type": "string",
70744          "uniqueItems": true
70745        }
70746      ],
70747      "post": {
70748        "consumes": [
70749          "*/*"
70750        ],
70751        "description": "create a CronJob",
70752        "operationId": "createBatchV2alpha1NamespacedCronJob",
70753        "parameters": [
70754          {
70755            "in": "body",
70756            "name": "body",
70757            "required": true,
70758            "schema": {
70759              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
70760            }
70761          },
70762          {
70763            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70764            "in": "query",
70765            "name": "dryRun",
70766            "type": "string",
70767            "uniqueItems": true
70768          },
70769          {
70770            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
70771            "in": "query",
70772            "name": "fieldManager",
70773            "type": "string",
70774            "uniqueItems": true
70775          }
70776        ],
70777        "produces": [
70778          "application/json",
70779          "application/yaml",
70780          "application/vnd.kubernetes.protobuf"
70781        ],
70782        "responses": {
70783          "200": {
70784            "description": "OK",
70785            "schema": {
70786              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
70787            }
70788          },
70789          "201": {
70790            "description": "Created",
70791            "schema": {
70792              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
70793            }
70794          },
70795          "202": {
70796            "description": "Accepted",
70797            "schema": {
70798              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
70799            }
70800          },
70801          "401": {
70802            "description": "Unauthorized"
70803          }
70804        },
70805        "schemes": [
70806          "https"
70807        ],
70808        "tags": [
70809          "batch_v2alpha1"
70810        ],
70811        "x-kubernetes-action": "post",
70812        "x-kubernetes-group-version-kind": {
70813          "group": "batch",
70814          "kind": "CronJob",
70815          "version": "v2alpha1"
70816        }
70817      }
70818    },
70819    "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}": {
70820      "delete": {
70821        "consumes": [
70822          "*/*"
70823        ],
70824        "description": "delete a CronJob",
70825        "operationId": "deleteBatchV2alpha1NamespacedCronJob",
70826        "parameters": [
70827          {
70828            "in": "body",
70829            "name": "body",
70830            "schema": {
70831              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
70832            }
70833          },
70834          {
70835            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70836            "in": "query",
70837            "name": "dryRun",
70838            "type": "string",
70839            "uniqueItems": true
70840          },
70841          {
70842            "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.",
70843            "in": "query",
70844            "name": "gracePeriodSeconds",
70845            "type": "integer",
70846            "uniqueItems": true
70847          },
70848          {
70849            "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.",
70850            "in": "query",
70851            "name": "orphanDependents",
70852            "type": "boolean",
70853            "uniqueItems": true
70854          },
70855          {
70856            "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.",
70857            "in": "query",
70858            "name": "propagationPolicy",
70859            "type": "string",
70860            "uniqueItems": true
70861          }
70862        ],
70863        "produces": [
70864          "application/json",
70865          "application/yaml",
70866          "application/vnd.kubernetes.protobuf"
70867        ],
70868        "responses": {
70869          "200": {
70870            "description": "OK",
70871            "schema": {
70872              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70873            }
70874          },
70875          "202": {
70876            "description": "Accepted",
70877            "schema": {
70878              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
70879            }
70880          },
70881          "401": {
70882            "description": "Unauthorized"
70883          }
70884        },
70885        "schemes": [
70886          "https"
70887        ],
70888        "tags": [
70889          "batch_v2alpha1"
70890        ],
70891        "x-kubernetes-action": "delete",
70892        "x-kubernetes-group-version-kind": {
70893          "group": "batch",
70894          "kind": "CronJob",
70895          "version": "v2alpha1"
70896        }
70897      },
70898      "get": {
70899        "consumes": [
70900          "*/*"
70901        ],
70902        "description": "read the specified CronJob",
70903        "operationId": "readBatchV2alpha1NamespacedCronJob",
70904        "parameters": [
70905          {
70906            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
70907            "in": "query",
70908            "name": "exact",
70909            "type": "boolean",
70910            "uniqueItems": true
70911          },
70912          {
70913            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
70914            "in": "query",
70915            "name": "export",
70916            "type": "boolean",
70917            "uniqueItems": true
70918          }
70919        ],
70920        "produces": [
70921          "application/json",
70922          "application/yaml",
70923          "application/vnd.kubernetes.protobuf"
70924        ],
70925        "responses": {
70926          "200": {
70927            "description": "OK",
70928            "schema": {
70929              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
70930            }
70931          },
70932          "401": {
70933            "description": "Unauthorized"
70934          }
70935        },
70936        "schemes": [
70937          "https"
70938        ],
70939        "tags": [
70940          "batch_v2alpha1"
70941        ],
70942        "x-kubernetes-action": "get",
70943        "x-kubernetes-group-version-kind": {
70944          "group": "batch",
70945          "kind": "CronJob",
70946          "version": "v2alpha1"
70947        }
70948      },
70949      "parameters": [
70950        {
70951          "description": "name of the CronJob",
70952          "in": "path",
70953          "name": "name",
70954          "required": true,
70955          "type": "string",
70956          "uniqueItems": true
70957        },
70958        {
70959          "description": "object name and auth scope, such as for teams and projects",
70960          "in": "path",
70961          "name": "namespace",
70962          "required": true,
70963          "type": "string",
70964          "uniqueItems": true
70965        },
70966        {
70967          "description": "If 'true', then the output is pretty printed.",
70968          "in": "query",
70969          "name": "pretty",
70970          "type": "string",
70971          "uniqueItems": true
70972        }
70973      ],
70974      "patch": {
70975        "consumes": [
70976          "application/json-patch+json",
70977          "application/merge-patch+json",
70978          "application/strategic-merge-patch+json"
70979        ],
70980        "description": "partially update the specified CronJob",
70981        "operationId": "patchBatchV2alpha1NamespacedCronJob",
70982        "parameters": [
70983          {
70984            "in": "body",
70985            "name": "body",
70986            "required": true,
70987            "schema": {
70988              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
70989            }
70990          },
70991          {
70992            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
70993            "in": "query",
70994            "name": "dryRun",
70995            "type": "string",
70996            "uniqueItems": true
70997          },
70998          {
70999            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
71000            "in": "query",
71001            "name": "fieldManager",
71002            "type": "string",
71003            "uniqueItems": true
71004          },
71005          {
71006            "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.",
71007            "in": "query",
71008            "name": "force",
71009            "type": "boolean",
71010            "uniqueItems": true
71011          }
71012        ],
71013        "produces": [
71014          "application/json",
71015          "application/yaml",
71016          "application/vnd.kubernetes.protobuf"
71017        ],
71018        "responses": {
71019          "200": {
71020            "description": "OK",
71021            "schema": {
71022              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71023            }
71024          },
71025          "401": {
71026            "description": "Unauthorized"
71027          }
71028        },
71029        "schemes": [
71030          "https"
71031        ],
71032        "tags": [
71033          "batch_v2alpha1"
71034        ],
71035        "x-kubernetes-action": "patch",
71036        "x-kubernetes-group-version-kind": {
71037          "group": "batch",
71038          "kind": "CronJob",
71039          "version": "v2alpha1"
71040        }
71041      },
71042      "put": {
71043        "consumes": [
71044          "*/*"
71045        ],
71046        "description": "replace the specified CronJob",
71047        "operationId": "replaceBatchV2alpha1NamespacedCronJob",
71048        "parameters": [
71049          {
71050            "in": "body",
71051            "name": "body",
71052            "required": true,
71053            "schema": {
71054              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71055            }
71056          },
71057          {
71058            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71059            "in": "query",
71060            "name": "dryRun",
71061            "type": "string",
71062            "uniqueItems": true
71063          },
71064          {
71065            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71066            "in": "query",
71067            "name": "fieldManager",
71068            "type": "string",
71069            "uniqueItems": true
71070          }
71071        ],
71072        "produces": [
71073          "application/json",
71074          "application/yaml",
71075          "application/vnd.kubernetes.protobuf"
71076        ],
71077        "responses": {
71078          "200": {
71079            "description": "OK",
71080            "schema": {
71081              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71082            }
71083          },
71084          "201": {
71085            "description": "Created",
71086            "schema": {
71087              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71088            }
71089          },
71090          "401": {
71091            "description": "Unauthorized"
71092          }
71093        },
71094        "schemes": [
71095          "https"
71096        ],
71097        "tags": [
71098          "batch_v2alpha1"
71099        ],
71100        "x-kubernetes-action": "put",
71101        "x-kubernetes-group-version-kind": {
71102          "group": "batch",
71103          "kind": "CronJob",
71104          "version": "v2alpha1"
71105        }
71106      }
71107    },
71108    "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status": {
71109      "get": {
71110        "consumes": [
71111          "*/*"
71112        ],
71113        "description": "read status of the specified CronJob",
71114        "operationId": "readBatchV2alpha1NamespacedCronJobStatus",
71115        "produces": [
71116          "application/json",
71117          "application/yaml",
71118          "application/vnd.kubernetes.protobuf"
71119        ],
71120        "responses": {
71121          "200": {
71122            "description": "OK",
71123            "schema": {
71124              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71125            }
71126          },
71127          "401": {
71128            "description": "Unauthorized"
71129          }
71130        },
71131        "schemes": [
71132          "https"
71133        ],
71134        "tags": [
71135          "batch_v2alpha1"
71136        ],
71137        "x-kubernetes-action": "get",
71138        "x-kubernetes-group-version-kind": {
71139          "group": "batch",
71140          "kind": "CronJob",
71141          "version": "v2alpha1"
71142        }
71143      },
71144      "parameters": [
71145        {
71146          "description": "name of the CronJob",
71147          "in": "path",
71148          "name": "name",
71149          "required": true,
71150          "type": "string",
71151          "uniqueItems": true
71152        },
71153        {
71154          "description": "object name and auth scope, such as for teams and projects",
71155          "in": "path",
71156          "name": "namespace",
71157          "required": true,
71158          "type": "string",
71159          "uniqueItems": true
71160        },
71161        {
71162          "description": "If 'true', then the output is pretty printed.",
71163          "in": "query",
71164          "name": "pretty",
71165          "type": "string",
71166          "uniqueItems": true
71167        }
71168      ],
71169      "patch": {
71170        "consumes": [
71171          "application/json-patch+json",
71172          "application/merge-patch+json",
71173          "application/strategic-merge-patch+json"
71174        ],
71175        "description": "partially update status of the specified CronJob",
71176        "operationId": "patchBatchV2alpha1NamespacedCronJobStatus",
71177        "parameters": [
71178          {
71179            "in": "body",
71180            "name": "body",
71181            "required": true,
71182            "schema": {
71183              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
71184            }
71185          },
71186          {
71187            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71188            "in": "query",
71189            "name": "dryRun",
71190            "type": "string",
71191            "uniqueItems": true
71192          },
71193          {
71194            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
71195            "in": "query",
71196            "name": "fieldManager",
71197            "type": "string",
71198            "uniqueItems": true
71199          },
71200          {
71201            "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.",
71202            "in": "query",
71203            "name": "force",
71204            "type": "boolean",
71205            "uniqueItems": true
71206          }
71207        ],
71208        "produces": [
71209          "application/json",
71210          "application/yaml",
71211          "application/vnd.kubernetes.protobuf"
71212        ],
71213        "responses": {
71214          "200": {
71215            "description": "OK",
71216            "schema": {
71217              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71218            }
71219          },
71220          "401": {
71221            "description": "Unauthorized"
71222          }
71223        },
71224        "schemes": [
71225          "https"
71226        ],
71227        "tags": [
71228          "batch_v2alpha1"
71229        ],
71230        "x-kubernetes-action": "patch",
71231        "x-kubernetes-group-version-kind": {
71232          "group": "batch",
71233          "kind": "CronJob",
71234          "version": "v2alpha1"
71235        }
71236      },
71237      "put": {
71238        "consumes": [
71239          "*/*"
71240        ],
71241        "description": "replace status of the specified CronJob",
71242        "operationId": "replaceBatchV2alpha1NamespacedCronJobStatus",
71243        "parameters": [
71244          {
71245            "in": "body",
71246            "name": "body",
71247            "required": true,
71248            "schema": {
71249              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71250            }
71251          },
71252          {
71253            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71254            "in": "query",
71255            "name": "dryRun",
71256            "type": "string",
71257            "uniqueItems": true
71258          },
71259          {
71260            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71261            "in": "query",
71262            "name": "fieldManager",
71263            "type": "string",
71264            "uniqueItems": true
71265          }
71266        ],
71267        "produces": [
71268          "application/json",
71269          "application/yaml",
71270          "application/vnd.kubernetes.protobuf"
71271        ],
71272        "responses": {
71273          "200": {
71274            "description": "OK",
71275            "schema": {
71276              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71277            }
71278          },
71279          "201": {
71280            "description": "Created",
71281            "schema": {
71282              "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob"
71283            }
71284          },
71285          "401": {
71286            "description": "Unauthorized"
71287          }
71288        },
71289        "schemes": [
71290          "https"
71291        ],
71292        "tags": [
71293          "batch_v2alpha1"
71294        ],
71295        "x-kubernetes-action": "put",
71296        "x-kubernetes-group-version-kind": {
71297          "group": "batch",
71298          "kind": "CronJob",
71299          "version": "v2alpha1"
71300        }
71301      }
71302    },
71303    "/apis/batch/v2alpha1/watch/cronjobs": {
71304      "get": {
71305        "consumes": [
71306          "*/*"
71307        ],
71308        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
71309        "operationId": "watchBatchV2alpha1CronJobListForAllNamespaces",
71310        "produces": [
71311          "application/json",
71312          "application/yaml",
71313          "application/vnd.kubernetes.protobuf",
71314          "application/json;stream=watch",
71315          "application/vnd.kubernetes.protobuf;stream=watch"
71316        ],
71317        "responses": {
71318          "200": {
71319            "description": "OK",
71320            "schema": {
71321              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71322            }
71323          },
71324          "401": {
71325            "description": "Unauthorized"
71326          }
71327        },
71328        "schemes": [
71329          "https"
71330        ],
71331        "tags": [
71332          "batch_v2alpha1"
71333        ],
71334        "x-kubernetes-action": "watchlist",
71335        "x-kubernetes-group-version-kind": {
71336          "group": "batch",
71337          "kind": "CronJob",
71338          "version": "v2alpha1"
71339        }
71340      },
71341      "parameters": [
71342        {
71343          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
71344          "in": "query",
71345          "name": "allowWatchBookmarks",
71346          "type": "boolean",
71347          "uniqueItems": true
71348        },
71349        {
71350          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71351          "in": "query",
71352          "name": "continue",
71353          "type": "string",
71354          "uniqueItems": true
71355        },
71356        {
71357          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71358          "in": "query",
71359          "name": "fieldSelector",
71360          "type": "string",
71361          "uniqueItems": true
71362        },
71363        {
71364          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71365          "in": "query",
71366          "name": "labelSelector",
71367          "type": "string",
71368          "uniqueItems": true
71369        },
71370        {
71371          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71372          "in": "query",
71373          "name": "limit",
71374          "type": "integer",
71375          "uniqueItems": true
71376        },
71377        {
71378          "description": "If 'true', then the output is pretty printed.",
71379          "in": "query",
71380          "name": "pretty",
71381          "type": "string",
71382          "uniqueItems": true
71383        },
71384        {
71385          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
71386          "in": "query",
71387          "name": "resourceVersion",
71388          "type": "string",
71389          "uniqueItems": true
71390        },
71391        {
71392          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71393          "in": "query",
71394          "name": "timeoutSeconds",
71395          "type": "integer",
71396          "uniqueItems": true
71397        },
71398        {
71399          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71400          "in": "query",
71401          "name": "watch",
71402          "type": "boolean",
71403          "uniqueItems": true
71404        }
71405      ]
71406    },
71407    "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs": {
71408      "get": {
71409        "consumes": [
71410          "*/*"
71411        ],
71412        "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.",
71413        "operationId": "watchBatchV2alpha1NamespacedCronJobList",
71414        "produces": [
71415          "application/json",
71416          "application/yaml",
71417          "application/vnd.kubernetes.protobuf",
71418          "application/json;stream=watch",
71419          "application/vnd.kubernetes.protobuf;stream=watch"
71420        ],
71421        "responses": {
71422          "200": {
71423            "description": "OK",
71424            "schema": {
71425              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71426            }
71427          },
71428          "401": {
71429            "description": "Unauthorized"
71430          }
71431        },
71432        "schemes": [
71433          "https"
71434        ],
71435        "tags": [
71436          "batch_v2alpha1"
71437        ],
71438        "x-kubernetes-action": "watchlist",
71439        "x-kubernetes-group-version-kind": {
71440          "group": "batch",
71441          "kind": "CronJob",
71442          "version": "v2alpha1"
71443        }
71444      },
71445      "parameters": [
71446        {
71447          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
71448          "in": "query",
71449          "name": "allowWatchBookmarks",
71450          "type": "boolean",
71451          "uniqueItems": true
71452        },
71453        {
71454          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71455          "in": "query",
71456          "name": "continue",
71457          "type": "string",
71458          "uniqueItems": true
71459        },
71460        {
71461          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71462          "in": "query",
71463          "name": "fieldSelector",
71464          "type": "string",
71465          "uniqueItems": true
71466        },
71467        {
71468          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71469          "in": "query",
71470          "name": "labelSelector",
71471          "type": "string",
71472          "uniqueItems": true
71473        },
71474        {
71475          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71476          "in": "query",
71477          "name": "limit",
71478          "type": "integer",
71479          "uniqueItems": true
71480        },
71481        {
71482          "description": "object name and auth scope, such as for teams and projects",
71483          "in": "path",
71484          "name": "namespace",
71485          "required": true,
71486          "type": "string",
71487          "uniqueItems": true
71488        },
71489        {
71490          "description": "If 'true', then the output is pretty printed.",
71491          "in": "query",
71492          "name": "pretty",
71493          "type": "string",
71494          "uniqueItems": true
71495        },
71496        {
71497          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
71498          "in": "query",
71499          "name": "resourceVersion",
71500          "type": "string",
71501          "uniqueItems": true
71502        },
71503        {
71504          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71505          "in": "query",
71506          "name": "timeoutSeconds",
71507          "type": "integer",
71508          "uniqueItems": true
71509        },
71510        {
71511          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71512          "in": "query",
71513          "name": "watch",
71514          "type": "boolean",
71515          "uniqueItems": true
71516        }
71517      ]
71518    },
71519    "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs/{name}": {
71520      "get": {
71521        "consumes": [
71522          "*/*"
71523        ],
71524        "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.",
71525        "operationId": "watchBatchV2alpha1NamespacedCronJob",
71526        "produces": [
71527          "application/json",
71528          "application/yaml",
71529          "application/vnd.kubernetes.protobuf",
71530          "application/json;stream=watch",
71531          "application/vnd.kubernetes.protobuf;stream=watch"
71532        ],
71533        "responses": {
71534          "200": {
71535            "description": "OK",
71536            "schema": {
71537              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
71538            }
71539          },
71540          "401": {
71541            "description": "Unauthorized"
71542          }
71543        },
71544        "schemes": [
71545          "https"
71546        ],
71547        "tags": [
71548          "batch_v2alpha1"
71549        ],
71550        "x-kubernetes-action": "watch",
71551        "x-kubernetes-group-version-kind": {
71552          "group": "batch",
71553          "kind": "CronJob",
71554          "version": "v2alpha1"
71555        }
71556      },
71557      "parameters": [
71558        {
71559          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
71560          "in": "query",
71561          "name": "allowWatchBookmarks",
71562          "type": "boolean",
71563          "uniqueItems": true
71564        },
71565        {
71566          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71567          "in": "query",
71568          "name": "continue",
71569          "type": "string",
71570          "uniqueItems": true
71571        },
71572        {
71573          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71574          "in": "query",
71575          "name": "fieldSelector",
71576          "type": "string",
71577          "uniqueItems": true
71578        },
71579        {
71580          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71581          "in": "query",
71582          "name": "labelSelector",
71583          "type": "string",
71584          "uniqueItems": true
71585        },
71586        {
71587          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71588          "in": "query",
71589          "name": "limit",
71590          "type": "integer",
71591          "uniqueItems": true
71592        },
71593        {
71594          "description": "name of the CronJob",
71595          "in": "path",
71596          "name": "name",
71597          "required": true,
71598          "type": "string",
71599          "uniqueItems": true
71600        },
71601        {
71602          "description": "object name and auth scope, such as for teams and projects",
71603          "in": "path",
71604          "name": "namespace",
71605          "required": true,
71606          "type": "string",
71607          "uniqueItems": true
71608        },
71609        {
71610          "description": "If 'true', then the output is pretty printed.",
71611          "in": "query",
71612          "name": "pretty",
71613          "type": "string",
71614          "uniqueItems": true
71615        },
71616        {
71617          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
71618          "in": "query",
71619          "name": "resourceVersion",
71620          "type": "string",
71621          "uniqueItems": true
71622        },
71623        {
71624          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71625          "in": "query",
71626          "name": "timeoutSeconds",
71627          "type": "integer",
71628          "uniqueItems": true
71629        },
71630        {
71631          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71632          "in": "query",
71633          "name": "watch",
71634          "type": "boolean",
71635          "uniqueItems": true
71636        }
71637      ]
71638    },
71639    "/apis/certificates.k8s.io/": {
71640      "get": {
71641        "consumes": [
71642          "application/json",
71643          "application/yaml",
71644          "application/vnd.kubernetes.protobuf"
71645        ],
71646        "description": "get information of a group",
71647        "operationId": "getCertificatesAPIGroup",
71648        "produces": [
71649          "application/json",
71650          "application/yaml",
71651          "application/vnd.kubernetes.protobuf"
71652        ],
71653        "responses": {
71654          "200": {
71655            "description": "OK",
71656            "schema": {
71657              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
71658            }
71659          },
71660          "401": {
71661            "description": "Unauthorized"
71662          }
71663        },
71664        "schemes": [
71665          "https"
71666        ],
71667        "tags": [
71668          "certificates"
71669        ]
71670      }
71671    },
71672    "/apis/certificates.k8s.io/v1beta1/": {
71673      "get": {
71674        "consumes": [
71675          "application/json",
71676          "application/yaml",
71677          "application/vnd.kubernetes.protobuf"
71678        ],
71679        "description": "get available resources",
71680        "operationId": "getCertificatesV1beta1APIResources",
71681        "produces": [
71682          "application/json",
71683          "application/yaml",
71684          "application/vnd.kubernetes.protobuf"
71685        ],
71686        "responses": {
71687          "200": {
71688            "description": "OK",
71689            "schema": {
71690              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
71691            }
71692          },
71693          "401": {
71694            "description": "Unauthorized"
71695          }
71696        },
71697        "schemes": [
71698          "https"
71699        ],
71700        "tags": [
71701          "certificates_v1beta1"
71702        ]
71703      }
71704    },
71705    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests": {
71706      "delete": {
71707        "consumes": [
71708          "*/*"
71709        ],
71710        "description": "delete collection of CertificateSigningRequest",
71711        "operationId": "deleteCertificatesV1beta1CollectionCertificateSigningRequest",
71712        "parameters": [
71713          {
71714            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
71715            "in": "query",
71716            "name": "allowWatchBookmarks",
71717            "type": "boolean",
71718            "uniqueItems": true
71719          },
71720          {
71721            "in": "body",
71722            "name": "body",
71723            "schema": {
71724              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
71725            }
71726          },
71727          {
71728            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71729            "in": "query",
71730            "name": "continue",
71731            "type": "string",
71732            "uniqueItems": true
71733          },
71734          {
71735            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71736            "in": "query",
71737            "name": "dryRun",
71738            "type": "string",
71739            "uniqueItems": true
71740          },
71741          {
71742            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71743            "in": "query",
71744            "name": "fieldSelector",
71745            "type": "string",
71746            "uniqueItems": true
71747          },
71748          {
71749            "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.",
71750            "in": "query",
71751            "name": "gracePeriodSeconds",
71752            "type": "integer",
71753            "uniqueItems": true
71754          },
71755          {
71756            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71757            "in": "query",
71758            "name": "labelSelector",
71759            "type": "string",
71760            "uniqueItems": true
71761          },
71762          {
71763            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71764            "in": "query",
71765            "name": "limit",
71766            "type": "integer",
71767            "uniqueItems": true
71768          },
71769          {
71770            "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.",
71771            "in": "query",
71772            "name": "orphanDependents",
71773            "type": "boolean",
71774            "uniqueItems": true
71775          },
71776          {
71777            "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.",
71778            "in": "query",
71779            "name": "propagationPolicy",
71780            "type": "string",
71781            "uniqueItems": true
71782          },
71783          {
71784            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
71785            "in": "query",
71786            "name": "resourceVersion",
71787            "type": "string",
71788            "uniqueItems": true
71789          },
71790          {
71791            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71792            "in": "query",
71793            "name": "timeoutSeconds",
71794            "type": "integer",
71795            "uniqueItems": true
71796          },
71797          {
71798            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71799            "in": "query",
71800            "name": "watch",
71801            "type": "boolean",
71802            "uniqueItems": true
71803          }
71804        ],
71805        "produces": [
71806          "application/json",
71807          "application/yaml",
71808          "application/vnd.kubernetes.protobuf"
71809        ],
71810        "responses": {
71811          "200": {
71812            "description": "OK",
71813            "schema": {
71814              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
71815            }
71816          },
71817          "401": {
71818            "description": "Unauthorized"
71819          }
71820        },
71821        "schemes": [
71822          "https"
71823        ],
71824        "tags": [
71825          "certificates_v1beta1"
71826        ],
71827        "x-kubernetes-action": "deletecollection",
71828        "x-kubernetes-group-version-kind": {
71829          "group": "certificates.k8s.io",
71830          "kind": "CertificateSigningRequest",
71831          "version": "v1beta1"
71832        }
71833      },
71834      "get": {
71835        "consumes": [
71836          "*/*"
71837        ],
71838        "description": "list or watch objects of kind CertificateSigningRequest",
71839        "operationId": "listCertificatesV1beta1CertificateSigningRequest",
71840        "parameters": [
71841          {
71842            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
71843            "in": "query",
71844            "name": "allowWatchBookmarks",
71845            "type": "boolean",
71846            "uniqueItems": true
71847          },
71848          {
71849            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
71850            "in": "query",
71851            "name": "continue",
71852            "type": "string",
71853            "uniqueItems": true
71854          },
71855          {
71856            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
71857            "in": "query",
71858            "name": "fieldSelector",
71859            "type": "string",
71860            "uniqueItems": true
71861          },
71862          {
71863            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
71864            "in": "query",
71865            "name": "labelSelector",
71866            "type": "string",
71867            "uniqueItems": true
71868          },
71869          {
71870            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
71871            "in": "query",
71872            "name": "limit",
71873            "type": "integer",
71874            "uniqueItems": true
71875          },
71876          {
71877            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
71878            "in": "query",
71879            "name": "resourceVersion",
71880            "type": "string",
71881            "uniqueItems": true
71882          },
71883          {
71884            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
71885            "in": "query",
71886            "name": "timeoutSeconds",
71887            "type": "integer",
71888            "uniqueItems": true
71889          },
71890          {
71891            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
71892            "in": "query",
71893            "name": "watch",
71894            "type": "boolean",
71895            "uniqueItems": true
71896          }
71897        ],
71898        "produces": [
71899          "application/json",
71900          "application/yaml",
71901          "application/vnd.kubernetes.protobuf",
71902          "application/json;stream=watch",
71903          "application/vnd.kubernetes.protobuf;stream=watch"
71904        ],
71905        "responses": {
71906          "200": {
71907            "description": "OK",
71908            "schema": {
71909              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequestList"
71910            }
71911          },
71912          "401": {
71913            "description": "Unauthorized"
71914          }
71915        },
71916        "schemes": [
71917          "https"
71918        ],
71919        "tags": [
71920          "certificates_v1beta1"
71921        ],
71922        "x-kubernetes-action": "list",
71923        "x-kubernetes-group-version-kind": {
71924          "group": "certificates.k8s.io",
71925          "kind": "CertificateSigningRequest",
71926          "version": "v1beta1"
71927        }
71928      },
71929      "parameters": [
71930        {
71931          "description": "If 'true', then the output is pretty printed.",
71932          "in": "query",
71933          "name": "pretty",
71934          "type": "string",
71935          "uniqueItems": true
71936        }
71937      ],
71938      "post": {
71939        "consumes": [
71940          "*/*"
71941        ],
71942        "description": "create a CertificateSigningRequest",
71943        "operationId": "createCertificatesV1beta1CertificateSigningRequest",
71944        "parameters": [
71945          {
71946            "in": "body",
71947            "name": "body",
71948            "required": true,
71949            "schema": {
71950              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
71951            }
71952          },
71953          {
71954            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
71955            "in": "query",
71956            "name": "dryRun",
71957            "type": "string",
71958            "uniqueItems": true
71959          },
71960          {
71961            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
71962            "in": "query",
71963            "name": "fieldManager",
71964            "type": "string",
71965            "uniqueItems": true
71966          }
71967        ],
71968        "produces": [
71969          "application/json",
71970          "application/yaml",
71971          "application/vnd.kubernetes.protobuf"
71972        ],
71973        "responses": {
71974          "200": {
71975            "description": "OK",
71976            "schema": {
71977              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
71978            }
71979          },
71980          "201": {
71981            "description": "Created",
71982            "schema": {
71983              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
71984            }
71985          },
71986          "202": {
71987            "description": "Accepted",
71988            "schema": {
71989              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
71990            }
71991          },
71992          "401": {
71993            "description": "Unauthorized"
71994          }
71995        },
71996        "schemes": [
71997          "https"
71998        ],
71999        "tags": [
72000          "certificates_v1beta1"
72001        ],
72002        "x-kubernetes-action": "post",
72003        "x-kubernetes-group-version-kind": {
72004          "group": "certificates.k8s.io",
72005          "kind": "CertificateSigningRequest",
72006          "version": "v1beta1"
72007        }
72008      }
72009    },
72010    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}": {
72011      "delete": {
72012        "consumes": [
72013          "*/*"
72014        ],
72015        "description": "delete a CertificateSigningRequest",
72016        "operationId": "deleteCertificatesV1beta1CertificateSigningRequest",
72017        "parameters": [
72018          {
72019            "in": "body",
72020            "name": "body",
72021            "schema": {
72022              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72023            }
72024          },
72025          {
72026            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72027            "in": "query",
72028            "name": "dryRun",
72029            "type": "string",
72030            "uniqueItems": true
72031          },
72032          {
72033            "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.",
72034            "in": "query",
72035            "name": "gracePeriodSeconds",
72036            "type": "integer",
72037            "uniqueItems": true
72038          },
72039          {
72040            "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.",
72041            "in": "query",
72042            "name": "orphanDependents",
72043            "type": "boolean",
72044            "uniqueItems": true
72045          },
72046          {
72047            "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.",
72048            "in": "query",
72049            "name": "propagationPolicy",
72050            "type": "string",
72051            "uniqueItems": true
72052          }
72053        ],
72054        "produces": [
72055          "application/json",
72056          "application/yaml",
72057          "application/vnd.kubernetes.protobuf"
72058        ],
72059        "responses": {
72060          "200": {
72061            "description": "OK",
72062            "schema": {
72063              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72064            }
72065          },
72066          "202": {
72067            "description": "Accepted",
72068            "schema": {
72069              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
72070            }
72071          },
72072          "401": {
72073            "description": "Unauthorized"
72074          }
72075        },
72076        "schemes": [
72077          "https"
72078        ],
72079        "tags": [
72080          "certificates_v1beta1"
72081        ],
72082        "x-kubernetes-action": "delete",
72083        "x-kubernetes-group-version-kind": {
72084          "group": "certificates.k8s.io",
72085          "kind": "CertificateSigningRequest",
72086          "version": "v1beta1"
72087        }
72088      },
72089      "get": {
72090        "consumes": [
72091          "*/*"
72092        ],
72093        "description": "read the specified CertificateSigningRequest",
72094        "operationId": "readCertificatesV1beta1CertificateSigningRequest",
72095        "parameters": [
72096          {
72097            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
72098            "in": "query",
72099            "name": "exact",
72100            "type": "boolean",
72101            "uniqueItems": true
72102          },
72103          {
72104            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
72105            "in": "query",
72106            "name": "export",
72107            "type": "boolean",
72108            "uniqueItems": true
72109          }
72110        ],
72111        "produces": [
72112          "application/json",
72113          "application/yaml",
72114          "application/vnd.kubernetes.protobuf"
72115        ],
72116        "responses": {
72117          "200": {
72118            "description": "OK",
72119            "schema": {
72120              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72121            }
72122          },
72123          "401": {
72124            "description": "Unauthorized"
72125          }
72126        },
72127        "schemes": [
72128          "https"
72129        ],
72130        "tags": [
72131          "certificates_v1beta1"
72132        ],
72133        "x-kubernetes-action": "get",
72134        "x-kubernetes-group-version-kind": {
72135          "group": "certificates.k8s.io",
72136          "kind": "CertificateSigningRequest",
72137          "version": "v1beta1"
72138        }
72139      },
72140      "parameters": [
72141        {
72142          "description": "name of the CertificateSigningRequest",
72143          "in": "path",
72144          "name": "name",
72145          "required": true,
72146          "type": "string",
72147          "uniqueItems": true
72148        },
72149        {
72150          "description": "If 'true', then the output is pretty printed.",
72151          "in": "query",
72152          "name": "pretty",
72153          "type": "string",
72154          "uniqueItems": true
72155        }
72156      ],
72157      "patch": {
72158        "consumes": [
72159          "application/json-patch+json",
72160          "application/merge-patch+json",
72161          "application/strategic-merge-patch+json"
72162        ],
72163        "description": "partially update the specified CertificateSigningRequest",
72164        "operationId": "patchCertificatesV1beta1CertificateSigningRequest",
72165        "parameters": [
72166          {
72167            "in": "body",
72168            "name": "body",
72169            "required": true,
72170            "schema": {
72171              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72172            }
72173          },
72174          {
72175            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72176            "in": "query",
72177            "name": "dryRun",
72178            "type": "string",
72179            "uniqueItems": true
72180          },
72181          {
72182            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
72183            "in": "query",
72184            "name": "fieldManager",
72185            "type": "string",
72186            "uniqueItems": true
72187          },
72188          {
72189            "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.",
72190            "in": "query",
72191            "name": "force",
72192            "type": "boolean",
72193            "uniqueItems": true
72194          }
72195        ],
72196        "produces": [
72197          "application/json",
72198          "application/yaml",
72199          "application/vnd.kubernetes.protobuf"
72200        ],
72201        "responses": {
72202          "200": {
72203            "description": "OK",
72204            "schema": {
72205              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72206            }
72207          },
72208          "401": {
72209            "description": "Unauthorized"
72210          }
72211        },
72212        "schemes": [
72213          "https"
72214        ],
72215        "tags": [
72216          "certificates_v1beta1"
72217        ],
72218        "x-kubernetes-action": "patch",
72219        "x-kubernetes-group-version-kind": {
72220          "group": "certificates.k8s.io",
72221          "kind": "CertificateSigningRequest",
72222          "version": "v1beta1"
72223        }
72224      },
72225      "put": {
72226        "consumes": [
72227          "*/*"
72228        ],
72229        "description": "replace the specified CertificateSigningRequest",
72230        "operationId": "replaceCertificatesV1beta1CertificateSigningRequest",
72231        "parameters": [
72232          {
72233            "in": "body",
72234            "name": "body",
72235            "required": true,
72236            "schema": {
72237              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72238            }
72239          },
72240          {
72241            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72242            "in": "query",
72243            "name": "dryRun",
72244            "type": "string",
72245            "uniqueItems": true
72246          },
72247          {
72248            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72249            "in": "query",
72250            "name": "fieldManager",
72251            "type": "string",
72252            "uniqueItems": true
72253          }
72254        ],
72255        "produces": [
72256          "application/json",
72257          "application/yaml",
72258          "application/vnd.kubernetes.protobuf"
72259        ],
72260        "responses": {
72261          "200": {
72262            "description": "OK",
72263            "schema": {
72264              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72265            }
72266          },
72267          "201": {
72268            "description": "Created",
72269            "schema": {
72270              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72271            }
72272          },
72273          "401": {
72274            "description": "Unauthorized"
72275          }
72276        },
72277        "schemes": [
72278          "https"
72279        ],
72280        "tags": [
72281          "certificates_v1beta1"
72282        ],
72283        "x-kubernetes-action": "put",
72284        "x-kubernetes-group-version-kind": {
72285          "group": "certificates.k8s.io",
72286          "kind": "CertificateSigningRequest",
72287          "version": "v1beta1"
72288        }
72289      }
72290    },
72291    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval": {
72292      "parameters": [
72293        {
72294          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72295          "in": "query",
72296          "name": "dryRun",
72297          "type": "string",
72298          "uniqueItems": true
72299        },
72300        {
72301          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72302          "in": "query",
72303          "name": "fieldManager",
72304          "type": "string",
72305          "uniqueItems": true
72306        },
72307        {
72308          "description": "name of the CertificateSigningRequest",
72309          "in": "path",
72310          "name": "name",
72311          "required": true,
72312          "type": "string",
72313          "uniqueItems": true
72314        },
72315        {
72316          "description": "If 'true', then the output is pretty printed.",
72317          "in": "query",
72318          "name": "pretty",
72319          "type": "string",
72320          "uniqueItems": true
72321        }
72322      ],
72323      "put": {
72324        "consumes": [
72325          "*/*"
72326        ],
72327        "description": "replace approval of the specified CertificateSigningRequest",
72328        "operationId": "replaceCertificatesV1beta1CertificateSigningRequestApproval",
72329        "parameters": [
72330          {
72331            "in": "body",
72332            "name": "body",
72333            "required": true,
72334            "schema": {
72335              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72336            }
72337          }
72338        ],
72339        "produces": [
72340          "application/json",
72341          "application/yaml",
72342          "application/vnd.kubernetes.protobuf"
72343        ],
72344        "responses": {
72345          "200": {
72346            "description": "OK",
72347            "schema": {
72348              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72349            }
72350          },
72351          "201": {
72352            "description": "Created",
72353            "schema": {
72354              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72355            }
72356          },
72357          "401": {
72358            "description": "Unauthorized"
72359          }
72360        },
72361        "schemes": [
72362          "https"
72363        ],
72364        "tags": [
72365          "certificates_v1beta1"
72366        ],
72367        "x-kubernetes-action": "put",
72368        "x-kubernetes-group-version-kind": {
72369          "group": "certificates.k8s.io",
72370          "kind": "CertificateSigningRequest",
72371          "version": "v1beta1"
72372        }
72373      }
72374    },
72375    "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status": {
72376      "get": {
72377        "consumes": [
72378          "*/*"
72379        ],
72380        "description": "read status of the specified CertificateSigningRequest",
72381        "operationId": "readCertificatesV1beta1CertificateSigningRequestStatus",
72382        "produces": [
72383          "application/json",
72384          "application/yaml",
72385          "application/vnd.kubernetes.protobuf"
72386        ],
72387        "responses": {
72388          "200": {
72389            "description": "OK",
72390            "schema": {
72391              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72392            }
72393          },
72394          "401": {
72395            "description": "Unauthorized"
72396          }
72397        },
72398        "schemes": [
72399          "https"
72400        ],
72401        "tags": [
72402          "certificates_v1beta1"
72403        ],
72404        "x-kubernetes-action": "get",
72405        "x-kubernetes-group-version-kind": {
72406          "group": "certificates.k8s.io",
72407          "kind": "CertificateSigningRequest",
72408          "version": "v1beta1"
72409        }
72410      },
72411      "parameters": [
72412        {
72413          "description": "name of the CertificateSigningRequest",
72414          "in": "path",
72415          "name": "name",
72416          "required": true,
72417          "type": "string",
72418          "uniqueItems": true
72419        },
72420        {
72421          "description": "If 'true', then the output is pretty printed.",
72422          "in": "query",
72423          "name": "pretty",
72424          "type": "string",
72425          "uniqueItems": true
72426        }
72427      ],
72428      "patch": {
72429        "consumes": [
72430          "application/json-patch+json",
72431          "application/merge-patch+json",
72432          "application/strategic-merge-patch+json"
72433        ],
72434        "description": "partially update status of the specified CertificateSigningRequest",
72435        "operationId": "patchCertificatesV1beta1CertificateSigningRequestStatus",
72436        "parameters": [
72437          {
72438            "in": "body",
72439            "name": "body",
72440            "required": true,
72441            "schema": {
72442              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
72443            }
72444          },
72445          {
72446            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72447            "in": "query",
72448            "name": "dryRun",
72449            "type": "string",
72450            "uniqueItems": true
72451          },
72452          {
72453            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
72454            "in": "query",
72455            "name": "fieldManager",
72456            "type": "string",
72457            "uniqueItems": true
72458          },
72459          {
72460            "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.",
72461            "in": "query",
72462            "name": "force",
72463            "type": "boolean",
72464            "uniqueItems": true
72465          }
72466        ],
72467        "produces": [
72468          "application/json",
72469          "application/yaml",
72470          "application/vnd.kubernetes.protobuf"
72471        ],
72472        "responses": {
72473          "200": {
72474            "description": "OK",
72475            "schema": {
72476              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72477            }
72478          },
72479          "401": {
72480            "description": "Unauthorized"
72481          }
72482        },
72483        "schemes": [
72484          "https"
72485        ],
72486        "tags": [
72487          "certificates_v1beta1"
72488        ],
72489        "x-kubernetes-action": "patch",
72490        "x-kubernetes-group-version-kind": {
72491          "group": "certificates.k8s.io",
72492          "kind": "CertificateSigningRequest",
72493          "version": "v1beta1"
72494        }
72495      },
72496      "put": {
72497        "consumes": [
72498          "*/*"
72499        ],
72500        "description": "replace status of the specified CertificateSigningRequest",
72501        "operationId": "replaceCertificatesV1beta1CertificateSigningRequestStatus",
72502        "parameters": [
72503          {
72504            "in": "body",
72505            "name": "body",
72506            "required": true,
72507            "schema": {
72508              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72509            }
72510          },
72511          {
72512            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72513            "in": "query",
72514            "name": "dryRun",
72515            "type": "string",
72516            "uniqueItems": true
72517          },
72518          {
72519            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
72520            "in": "query",
72521            "name": "fieldManager",
72522            "type": "string",
72523            "uniqueItems": true
72524          }
72525        ],
72526        "produces": [
72527          "application/json",
72528          "application/yaml",
72529          "application/vnd.kubernetes.protobuf"
72530        ],
72531        "responses": {
72532          "200": {
72533            "description": "OK",
72534            "schema": {
72535              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72536            }
72537          },
72538          "201": {
72539            "description": "Created",
72540            "schema": {
72541              "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest"
72542            }
72543          },
72544          "401": {
72545            "description": "Unauthorized"
72546          }
72547        },
72548        "schemes": [
72549          "https"
72550        ],
72551        "tags": [
72552          "certificates_v1beta1"
72553        ],
72554        "x-kubernetes-action": "put",
72555        "x-kubernetes-group-version-kind": {
72556          "group": "certificates.k8s.io",
72557          "kind": "CertificateSigningRequest",
72558          "version": "v1beta1"
72559        }
72560      }
72561    },
72562    "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests": {
72563      "get": {
72564        "consumes": [
72565          "*/*"
72566        ],
72567        "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.",
72568        "operationId": "watchCertificatesV1beta1CertificateSigningRequestList",
72569        "produces": [
72570          "application/json",
72571          "application/yaml",
72572          "application/vnd.kubernetes.protobuf",
72573          "application/json;stream=watch",
72574          "application/vnd.kubernetes.protobuf;stream=watch"
72575        ],
72576        "responses": {
72577          "200": {
72578            "description": "OK",
72579            "schema": {
72580              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
72581            }
72582          },
72583          "401": {
72584            "description": "Unauthorized"
72585          }
72586        },
72587        "schemes": [
72588          "https"
72589        ],
72590        "tags": [
72591          "certificates_v1beta1"
72592        ],
72593        "x-kubernetes-action": "watchlist",
72594        "x-kubernetes-group-version-kind": {
72595          "group": "certificates.k8s.io",
72596          "kind": "CertificateSigningRequest",
72597          "version": "v1beta1"
72598        }
72599      },
72600      "parameters": [
72601        {
72602          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
72603          "in": "query",
72604          "name": "allowWatchBookmarks",
72605          "type": "boolean",
72606          "uniqueItems": true
72607        },
72608        {
72609          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72610          "in": "query",
72611          "name": "continue",
72612          "type": "string",
72613          "uniqueItems": true
72614        },
72615        {
72616          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72617          "in": "query",
72618          "name": "fieldSelector",
72619          "type": "string",
72620          "uniqueItems": true
72621        },
72622        {
72623          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72624          "in": "query",
72625          "name": "labelSelector",
72626          "type": "string",
72627          "uniqueItems": true
72628        },
72629        {
72630          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72631          "in": "query",
72632          "name": "limit",
72633          "type": "integer",
72634          "uniqueItems": true
72635        },
72636        {
72637          "description": "If 'true', then the output is pretty printed.",
72638          "in": "query",
72639          "name": "pretty",
72640          "type": "string",
72641          "uniqueItems": true
72642        },
72643        {
72644          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
72645          "in": "query",
72646          "name": "resourceVersion",
72647          "type": "string",
72648          "uniqueItems": true
72649        },
72650        {
72651          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72652          "in": "query",
72653          "name": "timeoutSeconds",
72654          "type": "integer",
72655          "uniqueItems": true
72656        },
72657        {
72658          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72659          "in": "query",
72660          "name": "watch",
72661          "type": "boolean",
72662          "uniqueItems": true
72663        }
72664      ]
72665    },
72666    "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{name}": {
72667      "get": {
72668        "consumes": [
72669          "*/*"
72670        ],
72671        "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.",
72672        "operationId": "watchCertificatesV1beta1CertificateSigningRequest",
72673        "produces": [
72674          "application/json",
72675          "application/yaml",
72676          "application/vnd.kubernetes.protobuf",
72677          "application/json;stream=watch",
72678          "application/vnd.kubernetes.protobuf;stream=watch"
72679        ],
72680        "responses": {
72681          "200": {
72682            "description": "OK",
72683            "schema": {
72684              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
72685            }
72686          },
72687          "401": {
72688            "description": "Unauthorized"
72689          }
72690        },
72691        "schemes": [
72692          "https"
72693        ],
72694        "tags": [
72695          "certificates_v1beta1"
72696        ],
72697        "x-kubernetes-action": "watch",
72698        "x-kubernetes-group-version-kind": {
72699          "group": "certificates.k8s.io",
72700          "kind": "CertificateSigningRequest",
72701          "version": "v1beta1"
72702        }
72703      },
72704      "parameters": [
72705        {
72706          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
72707          "in": "query",
72708          "name": "allowWatchBookmarks",
72709          "type": "boolean",
72710          "uniqueItems": true
72711        },
72712        {
72713          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72714          "in": "query",
72715          "name": "continue",
72716          "type": "string",
72717          "uniqueItems": true
72718        },
72719        {
72720          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72721          "in": "query",
72722          "name": "fieldSelector",
72723          "type": "string",
72724          "uniqueItems": true
72725        },
72726        {
72727          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72728          "in": "query",
72729          "name": "labelSelector",
72730          "type": "string",
72731          "uniqueItems": true
72732        },
72733        {
72734          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72735          "in": "query",
72736          "name": "limit",
72737          "type": "integer",
72738          "uniqueItems": true
72739        },
72740        {
72741          "description": "name of the CertificateSigningRequest",
72742          "in": "path",
72743          "name": "name",
72744          "required": true,
72745          "type": "string",
72746          "uniqueItems": true
72747        },
72748        {
72749          "description": "If 'true', then the output is pretty printed.",
72750          "in": "query",
72751          "name": "pretty",
72752          "type": "string",
72753          "uniqueItems": true
72754        },
72755        {
72756          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
72757          "in": "query",
72758          "name": "resourceVersion",
72759          "type": "string",
72760          "uniqueItems": true
72761        },
72762        {
72763          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72764          "in": "query",
72765          "name": "timeoutSeconds",
72766          "type": "integer",
72767          "uniqueItems": true
72768        },
72769        {
72770          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72771          "in": "query",
72772          "name": "watch",
72773          "type": "boolean",
72774          "uniqueItems": true
72775        }
72776      ]
72777    },
72778    "/apis/coordination.k8s.io/": {
72779      "get": {
72780        "consumes": [
72781          "application/json",
72782          "application/yaml",
72783          "application/vnd.kubernetes.protobuf"
72784        ],
72785        "description": "get information of a group",
72786        "operationId": "getCoordinationAPIGroup",
72787        "produces": [
72788          "application/json",
72789          "application/yaml",
72790          "application/vnd.kubernetes.protobuf"
72791        ],
72792        "responses": {
72793          "200": {
72794            "description": "OK",
72795            "schema": {
72796              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
72797            }
72798          },
72799          "401": {
72800            "description": "Unauthorized"
72801          }
72802        },
72803        "schemes": [
72804          "https"
72805        ],
72806        "tags": [
72807          "coordination"
72808        ]
72809      }
72810    },
72811    "/apis/coordination.k8s.io/v1/": {
72812      "get": {
72813        "consumes": [
72814          "application/json",
72815          "application/yaml",
72816          "application/vnd.kubernetes.protobuf"
72817        ],
72818        "description": "get available resources",
72819        "operationId": "getCoordinationV1APIResources",
72820        "produces": [
72821          "application/json",
72822          "application/yaml",
72823          "application/vnd.kubernetes.protobuf"
72824        ],
72825        "responses": {
72826          "200": {
72827            "description": "OK",
72828            "schema": {
72829              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
72830            }
72831          },
72832          "401": {
72833            "description": "Unauthorized"
72834          }
72835        },
72836        "schemes": [
72837          "https"
72838        ],
72839        "tags": [
72840          "coordination_v1"
72841        ]
72842      }
72843    },
72844    "/apis/coordination.k8s.io/v1/leases": {
72845      "get": {
72846        "consumes": [
72847          "*/*"
72848        ],
72849        "description": "list or watch objects of kind Lease",
72850        "operationId": "listCoordinationV1LeaseForAllNamespaces",
72851        "produces": [
72852          "application/json",
72853          "application/yaml",
72854          "application/vnd.kubernetes.protobuf",
72855          "application/json;stream=watch",
72856          "application/vnd.kubernetes.protobuf;stream=watch"
72857        ],
72858        "responses": {
72859          "200": {
72860            "description": "OK",
72861            "schema": {
72862              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
72863            }
72864          },
72865          "401": {
72866            "description": "Unauthorized"
72867          }
72868        },
72869        "schemes": [
72870          "https"
72871        ],
72872        "tags": [
72873          "coordination_v1"
72874        ],
72875        "x-kubernetes-action": "list",
72876        "x-kubernetes-group-version-kind": {
72877          "group": "coordination.k8s.io",
72878          "kind": "Lease",
72879          "version": "v1"
72880        }
72881      },
72882      "parameters": [
72883        {
72884          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
72885          "in": "query",
72886          "name": "allowWatchBookmarks",
72887          "type": "boolean",
72888          "uniqueItems": true
72889        },
72890        {
72891          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72892          "in": "query",
72893          "name": "continue",
72894          "type": "string",
72895          "uniqueItems": true
72896        },
72897        {
72898          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72899          "in": "query",
72900          "name": "fieldSelector",
72901          "type": "string",
72902          "uniqueItems": true
72903        },
72904        {
72905          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
72906          "in": "query",
72907          "name": "labelSelector",
72908          "type": "string",
72909          "uniqueItems": true
72910        },
72911        {
72912          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
72913          "in": "query",
72914          "name": "limit",
72915          "type": "integer",
72916          "uniqueItems": true
72917        },
72918        {
72919          "description": "If 'true', then the output is pretty printed.",
72920          "in": "query",
72921          "name": "pretty",
72922          "type": "string",
72923          "uniqueItems": true
72924        },
72925        {
72926          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
72927          "in": "query",
72928          "name": "resourceVersion",
72929          "type": "string",
72930          "uniqueItems": true
72931        },
72932        {
72933          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
72934          "in": "query",
72935          "name": "timeoutSeconds",
72936          "type": "integer",
72937          "uniqueItems": true
72938        },
72939        {
72940          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
72941          "in": "query",
72942          "name": "watch",
72943          "type": "boolean",
72944          "uniqueItems": true
72945        }
72946      ]
72947    },
72948    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases": {
72949      "delete": {
72950        "consumes": [
72951          "*/*"
72952        ],
72953        "description": "delete collection of Lease",
72954        "operationId": "deleteCoordinationV1CollectionNamespacedLease",
72955        "parameters": [
72956          {
72957            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
72958            "in": "query",
72959            "name": "allowWatchBookmarks",
72960            "type": "boolean",
72961            "uniqueItems": true
72962          },
72963          {
72964            "in": "body",
72965            "name": "body",
72966            "schema": {
72967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
72968            }
72969          },
72970          {
72971            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
72972            "in": "query",
72973            "name": "continue",
72974            "type": "string",
72975            "uniqueItems": true
72976          },
72977          {
72978            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
72979            "in": "query",
72980            "name": "dryRun",
72981            "type": "string",
72982            "uniqueItems": true
72983          },
72984          {
72985            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
72986            "in": "query",
72987            "name": "fieldSelector",
72988            "type": "string",
72989            "uniqueItems": true
72990          },
72991          {
72992            "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.",
72993            "in": "query",
72994            "name": "gracePeriodSeconds",
72995            "type": "integer",
72996            "uniqueItems": true
72997          },
72998          {
72999            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73000            "in": "query",
73001            "name": "labelSelector",
73002            "type": "string",
73003            "uniqueItems": true
73004          },
73005          {
73006            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73007            "in": "query",
73008            "name": "limit",
73009            "type": "integer",
73010            "uniqueItems": true
73011          },
73012          {
73013            "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.",
73014            "in": "query",
73015            "name": "orphanDependents",
73016            "type": "boolean",
73017            "uniqueItems": true
73018          },
73019          {
73020            "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.",
73021            "in": "query",
73022            "name": "propagationPolicy",
73023            "type": "string",
73024            "uniqueItems": true
73025          },
73026          {
73027            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
73028            "in": "query",
73029            "name": "resourceVersion",
73030            "type": "string",
73031            "uniqueItems": true
73032          },
73033          {
73034            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73035            "in": "query",
73036            "name": "timeoutSeconds",
73037            "type": "integer",
73038            "uniqueItems": true
73039          },
73040          {
73041            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73042            "in": "query",
73043            "name": "watch",
73044            "type": "boolean",
73045            "uniqueItems": true
73046          }
73047        ],
73048        "produces": [
73049          "application/json",
73050          "application/yaml",
73051          "application/vnd.kubernetes.protobuf"
73052        ],
73053        "responses": {
73054          "200": {
73055            "description": "OK",
73056            "schema": {
73057              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
73058            }
73059          },
73060          "401": {
73061            "description": "Unauthorized"
73062          }
73063        },
73064        "schemes": [
73065          "https"
73066        ],
73067        "tags": [
73068          "coordination_v1"
73069        ],
73070        "x-kubernetes-action": "deletecollection",
73071        "x-kubernetes-group-version-kind": {
73072          "group": "coordination.k8s.io",
73073          "kind": "Lease",
73074          "version": "v1"
73075        }
73076      },
73077      "get": {
73078        "consumes": [
73079          "*/*"
73080        ],
73081        "description": "list or watch objects of kind Lease",
73082        "operationId": "listCoordinationV1NamespacedLease",
73083        "parameters": [
73084          {
73085            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
73086            "in": "query",
73087            "name": "allowWatchBookmarks",
73088            "type": "boolean",
73089            "uniqueItems": true
73090          },
73091          {
73092            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73093            "in": "query",
73094            "name": "continue",
73095            "type": "string",
73096            "uniqueItems": true
73097          },
73098          {
73099            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73100            "in": "query",
73101            "name": "fieldSelector",
73102            "type": "string",
73103            "uniqueItems": true
73104          },
73105          {
73106            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73107            "in": "query",
73108            "name": "labelSelector",
73109            "type": "string",
73110            "uniqueItems": true
73111          },
73112          {
73113            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73114            "in": "query",
73115            "name": "limit",
73116            "type": "integer",
73117            "uniqueItems": true
73118          },
73119          {
73120            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
73121            "in": "query",
73122            "name": "resourceVersion",
73123            "type": "string",
73124            "uniqueItems": true
73125          },
73126          {
73127            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73128            "in": "query",
73129            "name": "timeoutSeconds",
73130            "type": "integer",
73131            "uniqueItems": true
73132          },
73133          {
73134            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73135            "in": "query",
73136            "name": "watch",
73137            "type": "boolean",
73138            "uniqueItems": true
73139          }
73140        ],
73141        "produces": [
73142          "application/json",
73143          "application/yaml",
73144          "application/vnd.kubernetes.protobuf",
73145          "application/json;stream=watch",
73146          "application/vnd.kubernetes.protobuf;stream=watch"
73147        ],
73148        "responses": {
73149          "200": {
73150            "description": "OK",
73151            "schema": {
73152              "$ref": "#/definitions/io.k8s.api.coordination.v1.LeaseList"
73153            }
73154          },
73155          "401": {
73156            "description": "Unauthorized"
73157          }
73158        },
73159        "schemes": [
73160          "https"
73161        ],
73162        "tags": [
73163          "coordination_v1"
73164        ],
73165        "x-kubernetes-action": "list",
73166        "x-kubernetes-group-version-kind": {
73167          "group": "coordination.k8s.io",
73168          "kind": "Lease",
73169          "version": "v1"
73170        }
73171      },
73172      "parameters": [
73173        {
73174          "description": "object name and auth scope, such as for teams and projects",
73175          "in": "path",
73176          "name": "namespace",
73177          "required": true,
73178          "type": "string",
73179          "uniqueItems": true
73180        },
73181        {
73182          "description": "If 'true', then the output is pretty printed.",
73183          "in": "query",
73184          "name": "pretty",
73185          "type": "string",
73186          "uniqueItems": true
73187        }
73188      ],
73189      "post": {
73190        "consumes": [
73191          "*/*"
73192        ],
73193        "description": "create a Lease",
73194        "operationId": "createCoordinationV1NamespacedLease",
73195        "parameters": [
73196          {
73197            "in": "body",
73198            "name": "body",
73199            "required": true,
73200            "schema": {
73201              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73202            }
73203          },
73204          {
73205            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73206            "in": "query",
73207            "name": "dryRun",
73208            "type": "string",
73209            "uniqueItems": true
73210          },
73211          {
73212            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73213            "in": "query",
73214            "name": "fieldManager",
73215            "type": "string",
73216            "uniqueItems": true
73217          }
73218        ],
73219        "produces": [
73220          "application/json",
73221          "application/yaml",
73222          "application/vnd.kubernetes.protobuf"
73223        ],
73224        "responses": {
73225          "200": {
73226            "description": "OK",
73227            "schema": {
73228              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73229            }
73230          },
73231          "201": {
73232            "description": "Created",
73233            "schema": {
73234              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73235            }
73236          },
73237          "202": {
73238            "description": "Accepted",
73239            "schema": {
73240              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73241            }
73242          },
73243          "401": {
73244            "description": "Unauthorized"
73245          }
73246        },
73247        "schemes": [
73248          "https"
73249        ],
73250        "tags": [
73251          "coordination_v1"
73252        ],
73253        "x-kubernetes-action": "post",
73254        "x-kubernetes-group-version-kind": {
73255          "group": "coordination.k8s.io",
73256          "kind": "Lease",
73257          "version": "v1"
73258        }
73259      }
73260    },
73261    "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}": {
73262      "delete": {
73263        "consumes": [
73264          "*/*"
73265        ],
73266        "description": "delete a Lease",
73267        "operationId": "deleteCoordinationV1NamespacedLease",
73268        "parameters": [
73269          {
73270            "in": "body",
73271            "name": "body",
73272            "schema": {
73273              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
73274            }
73275          },
73276          {
73277            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73278            "in": "query",
73279            "name": "dryRun",
73280            "type": "string",
73281            "uniqueItems": true
73282          },
73283          {
73284            "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.",
73285            "in": "query",
73286            "name": "gracePeriodSeconds",
73287            "type": "integer",
73288            "uniqueItems": true
73289          },
73290          {
73291            "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.",
73292            "in": "query",
73293            "name": "orphanDependents",
73294            "type": "boolean",
73295            "uniqueItems": true
73296          },
73297          {
73298            "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.",
73299            "in": "query",
73300            "name": "propagationPolicy",
73301            "type": "string",
73302            "uniqueItems": true
73303          }
73304        ],
73305        "produces": [
73306          "application/json",
73307          "application/yaml",
73308          "application/vnd.kubernetes.protobuf"
73309        ],
73310        "responses": {
73311          "200": {
73312            "description": "OK",
73313            "schema": {
73314              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
73315            }
73316          },
73317          "202": {
73318            "description": "Accepted",
73319            "schema": {
73320              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
73321            }
73322          },
73323          "401": {
73324            "description": "Unauthorized"
73325          }
73326        },
73327        "schemes": [
73328          "https"
73329        ],
73330        "tags": [
73331          "coordination_v1"
73332        ],
73333        "x-kubernetes-action": "delete",
73334        "x-kubernetes-group-version-kind": {
73335          "group": "coordination.k8s.io",
73336          "kind": "Lease",
73337          "version": "v1"
73338        }
73339      },
73340      "get": {
73341        "consumes": [
73342          "*/*"
73343        ],
73344        "description": "read the specified Lease",
73345        "operationId": "readCoordinationV1NamespacedLease",
73346        "parameters": [
73347          {
73348            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
73349            "in": "query",
73350            "name": "exact",
73351            "type": "boolean",
73352            "uniqueItems": true
73353          },
73354          {
73355            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
73356            "in": "query",
73357            "name": "export",
73358            "type": "boolean",
73359            "uniqueItems": true
73360          }
73361        ],
73362        "produces": [
73363          "application/json",
73364          "application/yaml",
73365          "application/vnd.kubernetes.protobuf"
73366        ],
73367        "responses": {
73368          "200": {
73369            "description": "OK",
73370            "schema": {
73371              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73372            }
73373          },
73374          "401": {
73375            "description": "Unauthorized"
73376          }
73377        },
73378        "schemes": [
73379          "https"
73380        ],
73381        "tags": [
73382          "coordination_v1"
73383        ],
73384        "x-kubernetes-action": "get",
73385        "x-kubernetes-group-version-kind": {
73386          "group": "coordination.k8s.io",
73387          "kind": "Lease",
73388          "version": "v1"
73389        }
73390      },
73391      "parameters": [
73392        {
73393          "description": "name of the Lease",
73394          "in": "path",
73395          "name": "name",
73396          "required": true,
73397          "type": "string",
73398          "uniqueItems": true
73399        },
73400        {
73401          "description": "object name and auth scope, such as for teams and projects",
73402          "in": "path",
73403          "name": "namespace",
73404          "required": true,
73405          "type": "string",
73406          "uniqueItems": true
73407        },
73408        {
73409          "description": "If 'true', then the output is pretty printed.",
73410          "in": "query",
73411          "name": "pretty",
73412          "type": "string",
73413          "uniqueItems": true
73414        }
73415      ],
73416      "patch": {
73417        "consumes": [
73418          "application/json-patch+json",
73419          "application/merge-patch+json",
73420          "application/strategic-merge-patch+json"
73421        ],
73422        "description": "partially update the specified Lease",
73423        "operationId": "patchCoordinationV1NamespacedLease",
73424        "parameters": [
73425          {
73426            "in": "body",
73427            "name": "body",
73428            "required": true,
73429            "schema": {
73430              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
73431            }
73432          },
73433          {
73434            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73435            "in": "query",
73436            "name": "dryRun",
73437            "type": "string",
73438            "uniqueItems": true
73439          },
73440          {
73441            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
73442            "in": "query",
73443            "name": "fieldManager",
73444            "type": "string",
73445            "uniqueItems": true
73446          },
73447          {
73448            "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.",
73449            "in": "query",
73450            "name": "force",
73451            "type": "boolean",
73452            "uniqueItems": true
73453          }
73454        ],
73455        "produces": [
73456          "application/json",
73457          "application/yaml",
73458          "application/vnd.kubernetes.protobuf"
73459        ],
73460        "responses": {
73461          "200": {
73462            "description": "OK",
73463            "schema": {
73464              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73465            }
73466          },
73467          "401": {
73468            "description": "Unauthorized"
73469          }
73470        },
73471        "schemes": [
73472          "https"
73473        ],
73474        "tags": [
73475          "coordination_v1"
73476        ],
73477        "x-kubernetes-action": "patch",
73478        "x-kubernetes-group-version-kind": {
73479          "group": "coordination.k8s.io",
73480          "kind": "Lease",
73481          "version": "v1"
73482        }
73483      },
73484      "put": {
73485        "consumes": [
73486          "*/*"
73487        ],
73488        "description": "replace the specified Lease",
73489        "operationId": "replaceCoordinationV1NamespacedLease",
73490        "parameters": [
73491          {
73492            "in": "body",
73493            "name": "body",
73494            "required": true,
73495            "schema": {
73496              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73497            }
73498          },
73499          {
73500            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
73501            "in": "query",
73502            "name": "dryRun",
73503            "type": "string",
73504            "uniqueItems": true
73505          },
73506          {
73507            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
73508            "in": "query",
73509            "name": "fieldManager",
73510            "type": "string",
73511            "uniqueItems": true
73512          }
73513        ],
73514        "produces": [
73515          "application/json",
73516          "application/yaml",
73517          "application/vnd.kubernetes.protobuf"
73518        ],
73519        "responses": {
73520          "200": {
73521            "description": "OK",
73522            "schema": {
73523              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73524            }
73525          },
73526          "201": {
73527            "description": "Created",
73528            "schema": {
73529              "$ref": "#/definitions/io.k8s.api.coordination.v1.Lease"
73530            }
73531          },
73532          "401": {
73533            "description": "Unauthorized"
73534          }
73535        },
73536        "schemes": [
73537          "https"
73538        ],
73539        "tags": [
73540          "coordination_v1"
73541        ],
73542        "x-kubernetes-action": "put",
73543        "x-kubernetes-group-version-kind": {
73544          "group": "coordination.k8s.io",
73545          "kind": "Lease",
73546          "version": "v1"
73547        }
73548      }
73549    },
73550    "/apis/coordination.k8s.io/v1/watch/leases": {
73551      "get": {
73552        "consumes": [
73553          "*/*"
73554        ],
73555        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
73556        "operationId": "watchCoordinationV1LeaseListForAllNamespaces",
73557        "produces": [
73558          "application/json",
73559          "application/yaml",
73560          "application/vnd.kubernetes.protobuf",
73561          "application/json;stream=watch",
73562          "application/vnd.kubernetes.protobuf;stream=watch"
73563        ],
73564        "responses": {
73565          "200": {
73566            "description": "OK",
73567            "schema": {
73568              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73569            }
73570          },
73571          "401": {
73572            "description": "Unauthorized"
73573          }
73574        },
73575        "schemes": [
73576          "https"
73577        ],
73578        "tags": [
73579          "coordination_v1"
73580        ],
73581        "x-kubernetes-action": "watchlist",
73582        "x-kubernetes-group-version-kind": {
73583          "group": "coordination.k8s.io",
73584          "kind": "Lease",
73585          "version": "v1"
73586        }
73587      },
73588      "parameters": [
73589        {
73590          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
73591          "in": "query",
73592          "name": "allowWatchBookmarks",
73593          "type": "boolean",
73594          "uniqueItems": true
73595        },
73596        {
73597          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73598          "in": "query",
73599          "name": "continue",
73600          "type": "string",
73601          "uniqueItems": true
73602        },
73603        {
73604          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73605          "in": "query",
73606          "name": "fieldSelector",
73607          "type": "string",
73608          "uniqueItems": true
73609        },
73610        {
73611          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73612          "in": "query",
73613          "name": "labelSelector",
73614          "type": "string",
73615          "uniqueItems": true
73616        },
73617        {
73618          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73619          "in": "query",
73620          "name": "limit",
73621          "type": "integer",
73622          "uniqueItems": true
73623        },
73624        {
73625          "description": "If 'true', then the output is pretty printed.",
73626          "in": "query",
73627          "name": "pretty",
73628          "type": "string",
73629          "uniqueItems": true
73630        },
73631        {
73632          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
73633          "in": "query",
73634          "name": "resourceVersion",
73635          "type": "string",
73636          "uniqueItems": true
73637        },
73638        {
73639          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73640          "in": "query",
73641          "name": "timeoutSeconds",
73642          "type": "integer",
73643          "uniqueItems": true
73644        },
73645        {
73646          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73647          "in": "query",
73648          "name": "watch",
73649          "type": "boolean",
73650          "uniqueItems": true
73651        }
73652      ]
73653    },
73654    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases": {
73655      "get": {
73656        "consumes": [
73657          "*/*"
73658        ],
73659        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
73660        "operationId": "watchCoordinationV1NamespacedLeaseList",
73661        "produces": [
73662          "application/json",
73663          "application/yaml",
73664          "application/vnd.kubernetes.protobuf",
73665          "application/json;stream=watch",
73666          "application/vnd.kubernetes.protobuf;stream=watch"
73667        ],
73668        "responses": {
73669          "200": {
73670            "description": "OK",
73671            "schema": {
73672              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73673            }
73674          },
73675          "401": {
73676            "description": "Unauthorized"
73677          }
73678        },
73679        "schemes": [
73680          "https"
73681        ],
73682        "tags": [
73683          "coordination_v1"
73684        ],
73685        "x-kubernetes-action": "watchlist",
73686        "x-kubernetes-group-version-kind": {
73687          "group": "coordination.k8s.io",
73688          "kind": "Lease",
73689          "version": "v1"
73690        }
73691      },
73692      "parameters": [
73693        {
73694          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
73695          "in": "query",
73696          "name": "allowWatchBookmarks",
73697          "type": "boolean",
73698          "uniqueItems": true
73699        },
73700        {
73701          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73702          "in": "query",
73703          "name": "continue",
73704          "type": "string",
73705          "uniqueItems": true
73706        },
73707        {
73708          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73709          "in": "query",
73710          "name": "fieldSelector",
73711          "type": "string",
73712          "uniqueItems": true
73713        },
73714        {
73715          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73716          "in": "query",
73717          "name": "labelSelector",
73718          "type": "string",
73719          "uniqueItems": true
73720        },
73721        {
73722          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73723          "in": "query",
73724          "name": "limit",
73725          "type": "integer",
73726          "uniqueItems": true
73727        },
73728        {
73729          "description": "object name and auth scope, such as for teams and projects",
73730          "in": "path",
73731          "name": "namespace",
73732          "required": true,
73733          "type": "string",
73734          "uniqueItems": true
73735        },
73736        {
73737          "description": "If 'true', then the output is pretty printed.",
73738          "in": "query",
73739          "name": "pretty",
73740          "type": "string",
73741          "uniqueItems": true
73742        },
73743        {
73744          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
73745          "in": "query",
73746          "name": "resourceVersion",
73747          "type": "string",
73748          "uniqueItems": true
73749        },
73750        {
73751          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73752          "in": "query",
73753          "name": "timeoutSeconds",
73754          "type": "integer",
73755          "uniqueItems": true
73756        },
73757        {
73758          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73759          "in": "query",
73760          "name": "watch",
73761          "type": "boolean",
73762          "uniqueItems": true
73763        }
73764      ]
73765    },
73766    "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases/{name}": {
73767      "get": {
73768        "consumes": [
73769          "*/*"
73770        ],
73771        "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.",
73772        "operationId": "watchCoordinationV1NamespacedLease",
73773        "produces": [
73774          "application/json",
73775          "application/yaml",
73776          "application/vnd.kubernetes.protobuf",
73777          "application/json;stream=watch",
73778          "application/vnd.kubernetes.protobuf;stream=watch"
73779        ],
73780        "responses": {
73781          "200": {
73782            "description": "OK",
73783            "schema": {
73784              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
73785            }
73786          },
73787          "401": {
73788            "description": "Unauthorized"
73789          }
73790        },
73791        "schemes": [
73792          "https"
73793        ],
73794        "tags": [
73795          "coordination_v1"
73796        ],
73797        "x-kubernetes-action": "watch",
73798        "x-kubernetes-group-version-kind": {
73799          "group": "coordination.k8s.io",
73800          "kind": "Lease",
73801          "version": "v1"
73802        }
73803      },
73804      "parameters": [
73805        {
73806          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
73807          "in": "query",
73808          "name": "allowWatchBookmarks",
73809          "type": "boolean",
73810          "uniqueItems": true
73811        },
73812        {
73813          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73814          "in": "query",
73815          "name": "continue",
73816          "type": "string",
73817          "uniqueItems": true
73818        },
73819        {
73820          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73821          "in": "query",
73822          "name": "fieldSelector",
73823          "type": "string",
73824          "uniqueItems": true
73825        },
73826        {
73827          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73828          "in": "query",
73829          "name": "labelSelector",
73830          "type": "string",
73831          "uniqueItems": true
73832        },
73833        {
73834          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73835          "in": "query",
73836          "name": "limit",
73837          "type": "integer",
73838          "uniqueItems": true
73839        },
73840        {
73841          "description": "name of the Lease",
73842          "in": "path",
73843          "name": "name",
73844          "required": true,
73845          "type": "string",
73846          "uniqueItems": true
73847        },
73848        {
73849          "description": "object name and auth scope, such as for teams and projects",
73850          "in": "path",
73851          "name": "namespace",
73852          "required": true,
73853          "type": "string",
73854          "uniqueItems": true
73855        },
73856        {
73857          "description": "If 'true', then the output is pretty printed.",
73858          "in": "query",
73859          "name": "pretty",
73860          "type": "string",
73861          "uniqueItems": true
73862        },
73863        {
73864          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
73865          "in": "query",
73866          "name": "resourceVersion",
73867          "type": "string",
73868          "uniqueItems": true
73869        },
73870        {
73871          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
73872          "in": "query",
73873          "name": "timeoutSeconds",
73874          "type": "integer",
73875          "uniqueItems": true
73876        },
73877        {
73878          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
73879          "in": "query",
73880          "name": "watch",
73881          "type": "boolean",
73882          "uniqueItems": true
73883        }
73884      ]
73885    },
73886    "/apis/coordination.k8s.io/v1beta1/": {
73887      "get": {
73888        "consumes": [
73889          "application/json",
73890          "application/yaml",
73891          "application/vnd.kubernetes.protobuf"
73892        ],
73893        "description": "get available resources",
73894        "operationId": "getCoordinationV1beta1APIResources",
73895        "produces": [
73896          "application/json",
73897          "application/yaml",
73898          "application/vnd.kubernetes.protobuf"
73899        ],
73900        "responses": {
73901          "200": {
73902            "description": "OK",
73903            "schema": {
73904              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
73905            }
73906          },
73907          "401": {
73908            "description": "Unauthorized"
73909          }
73910        },
73911        "schemes": [
73912          "https"
73913        ],
73914        "tags": [
73915          "coordination_v1beta1"
73916        ]
73917      }
73918    },
73919    "/apis/coordination.k8s.io/v1beta1/leases": {
73920      "get": {
73921        "consumes": [
73922          "*/*"
73923        ],
73924        "description": "list or watch objects of kind Lease",
73925        "operationId": "listCoordinationV1beta1LeaseForAllNamespaces",
73926        "produces": [
73927          "application/json",
73928          "application/yaml",
73929          "application/vnd.kubernetes.protobuf",
73930          "application/json;stream=watch",
73931          "application/vnd.kubernetes.protobuf;stream=watch"
73932        ],
73933        "responses": {
73934          "200": {
73935            "description": "OK",
73936            "schema": {
73937              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseList"
73938            }
73939          },
73940          "401": {
73941            "description": "Unauthorized"
73942          }
73943        },
73944        "schemes": [
73945          "https"
73946        ],
73947        "tags": [
73948          "coordination_v1beta1"
73949        ],
73950        "x-kubernetes-action": "list",
73951        "x-kubernetes-group-version-kind": {
73952          "group": "coordination.k8s.io",
73953          "kind": "Lease",
73954          "version": "v1beta1"
73955        }
73956      },
73957      "parameters": [
73958        {
73959          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
73960          "in": "query",
73961          "name": "allowWatchBookmarks",
73962          "type": "boolean",
73963          "uniqueItems": true
73964        },
73965        {
73966          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
73967          "in": "query",
73968          "name": "continue",
73969          "type": "string",
73970          "uniqueItems": true
73971        },
73972        {
73973          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
73974          "in": "query",
73975          "name": "fieldSelector",
73976          "type": "string",
73977          "uniqueItems": true
73978        },
73979        {
73980          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
73981          "in": "query",
73982          "name": "labelSelector",
73983          "type": "string",
73984          "uniqueItems": true
73985        },
73986        {
73987          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
73988          "in": "query",
73989          "name": "limit",
73990          "type": "integer",
73991          "uniqueItems": true
73992        },
73993        {
73994          "description": "If 'true', then the output is pretty printed.",
73995          "in": "query",
73996          "name": "pretty",
73997          "type": "string",
73998          "uniqueItems": true
73999        },
74000        {
74001          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
74002          "in": "query",
74003          "name": "resourceVersion",
74004          "type": "string",
74005          "uniqueItems": true
74006        },
74007        {
74008          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74009          "in": "query",
74010          "name": "timeoutSeconds",
74011          "type": "integer",
74012          "uniqueItems": true
74013        },
74014        {
74015          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74016          "in": "query",
74017          "name": "watch",
74018          "type": "boolean",
74019          "uniqueItems": true
74020        }
74021      ]
74022    },
74023    "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases": {
74024      "delete": {
74025        "consumes": [
74026          "*/*"
74027        ],
74028        "description": "delete collection of Lease",
74029        "operationId": "deleteCoordinationV1beta1CollectionNamespacedLease",
74030        "parameters": [
74031          {
74032            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
74033            "in": "query",
74034            "name": "allowWatchBookmarks",
74035            "type": "boolean",
74036            "uniqueItems": true
74037          },
74038          {
74039            "in": "body",
74040            "name": "body",
74041            "schema": {
74042              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74043            }
74044          },
74045          {
74046            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74047            "in": "query",
74048            "name": "continue",
74049            "type": "string",
74050            "uniqueItems": true
74051          },
74052          {
74053            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74054            "in": "query",
74055            "name": "dryRun",
74056            "type": "string",
74057            "uniqueItems": true
74058          },
74059          {
74060            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74061            "in": "query",
74062            "name": "fieldSelector",
74063            "type": "string",
74064            "uniqueItems": true
74065          },
74066          {
74067            "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.",
74068            "in": "query",
74069            "name": "gracePeriodSeconds",
74070            "type": "integer",
74071            "uniqueItems": true
74072          },
74073          {
74074            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74075            "in": "query",
74076            "name": "labelSelector",
74077            "type": "string",
74078            "uniqueItems": true
74079          },
74080          {
74081            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74082            "in": "query",
74083            "name": "limit",
74084            "type": "integer",
74085            "uniqueItems": true
74086          },
74087          {
74088            "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.",
74089            "in": "query",
74090            "name": "orphanDependents",
74091            "type": "boolean",
74092            "uniqueItems": true
74093          },
74094          {
74095            "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.",
74096            "in": "query",
74097            "name": "propagationPolicy",
74098            "type": "string",
74099            "uniqueItems": true
74100          },
74101          {
74102            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
74103            "in": "query",
74104            "name": "resourceVersion",
74105            "type": "string",
74106            "uniqueItems": true
74107          },
74108          {
74109            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74110            "in": "query",
74111            "name": "timeoutSeconds",
74112            "type": "integer",
74113            "uniqueItems": true
74114          },
74115          {
74116            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74117            "in": "query",
74118            "name": "watch",
74119            "type": "boolean",
74120            "uniqueItems": true
74121          }
74122        ],
74123        "produces": [
74124          "application/json",
74125          "application/yaml",
74126          "application/vnd.kubernetes.protobuf"
74127        ],
74128        "responses": {
74129          "200": {
74130            "description": "OK",
74131            "schema": {
74132              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74133            }
74134          },
74135          "401": {
74136            "description": "Unauthorized"
74137          }
74138        },
74139        "schemes": [
74140          "https"
74141        ],
74142        "tags": [
74143          "coordination_v1beta1"
74144        ],
74145        "x-kubernetes-action": "deletecollection",
74146        "x-kubernetes-group-version-kind": {
74147          "group": "coordination.k8s.io",
74148          "kind": "Lease",
74149          "version": "v1beta1"
74150        }
74151      },
74152      "get": {
74153        "consumes": [
74154          "*/*"
74155        ],
74156        "description": "list or watch objects of kind Lease",
74157        "operationId": "listCoordinationV1beta1NamespacedLease",
74158        "parameters": [
74159          {
74160            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
74161            "in": "query",
74162            "name": "allowWatchBookmarks",
74163            "type": "boolean",
74164            "uniqueItems": true
74165          },
74166          {
74167            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74168            "in": "query",
74169            "name": "continue",
74170            "type": "string",
74171            "uniqueItems": true
74172          },
74173          {
74174            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74175            "in": "query",
74176            "name": "fieldSelector",
74177            "type": "string",
74178            "uniqueItems": true
74179          },
74180          {
74181            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74182            "in": "query",
74183            "name": "labelSelector",
74184            "type": "string",
74185            "uniqueItems": true
74186          },
74187          {
74188            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74189            "in": "query",
74190            "name": "limit",
74191            "type": "integer",
74192            "uniqueItems": true
74193          },
74194          {
74195            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
74196            "in": "query",
74197            "name": "resourceVersion",
74198            "type": "string",
74199            "uniqueItems": true
74200          },
74201          {
74202            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74203            "in": "query",
74204            "name": "timeoutSeconds",
74205            "type": "integer",
74206            "uniqueItems": true
74207          },
74208          {
74209            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74210            "in": "query",
74211            "name": "watch",
74212            "type": "boolean",
74213            "uniqueItems": true
74214          }
74215        ],
74216        "produces": [
74217          "application/json",
74218          "application/yaml",
74219          "application/vnd.kubernetes.protobuf",
74220          "application/json;stream=watch",
74221          "application/vnd.kubernetes.protobuf;stream=watch"
74222        ],
74223        "responses": {
74224          "200": {
74225            "description": "OK",
74226            "schema": {
74227              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseList"
74228            }
74229          },
74230          "401": {
74231            "description": "Unauthorized"
74232          }
74233        },
74234        "schemes": [
74235          "https"
74236        ],
74237        "tags": [
74238          "coordination_v1beta1"
74239        ],
74240        "x-kubernetes-action": "list",
74241        "x-kubernetes-group-version-kind": {
74242          "group": "coordination.k8s.io",
74243          "kind": "Lease",
74244          "version": "v1beta1"
74245        }
74246      },
74247      "parameters": [
74248        {
74249          "description": "object name and auth scope, such as for teams and projects",
74250          "in": "path",
74251          "name": "namespace",
74252          "required": true,
74253          "type": "string",
74254          "uniqueItems": true
74255        },
74256        {
74257          "description": "If 'true', then the output is pretty printed.",
74258          "in": "query",
74259          "name": "pretty",
74260          "type": "string",
74261          "uniqueItems": true
74262        }
74263      ],
74264      "post": {
74265        "consumes": [
74266          "*/*"
74267        ],
74268        "description": "create a Lease",
74269        "operationId": "createCoordinationV1beta1NamespacedLease",
74270        "parameters": [
74271          {
74272            "in": "body",
74273            "name": "body",
74274            "required": true,
74275            "schema": {
74276              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74277            }
74278          },
74279          {
74280            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74281            "in": "query",
74282            "name": "dryRun",
74283            "type": "string",
74284            "uniqueItems": true
74285          },
74286          {
74287            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74288            "in": "query",
74289            "name": "fieldManager",
74290            "type": "string",
74291            "uniqueItems": true
74292          }
74293        ],
74294        "produces": [
74295          "application/json",
74296          "application/yaml",
74297          "application/vnd.kubernetes.protobuf"
74298        ],
74299        "responses": {
74300          "200": {
74301            "description": "OK",
74302            "schema": {
74303              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74304            }
74305          },
74306          "201": {
74307            "description": "Created",
74308            "schema": {
74309              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74310            }
74311          },
74312          "202": {
74313            "description": "Accepted",
74314            "schema": {
74315              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74316            }
74317          },
74318          "401": {
74319            "description": "Unauthorized"
74320          }
74321        },
74322        "schemes": [
74323          "https"
74324        ],
74325        "tags": [
74326          "coordination_v1beta1"
74327        ],
74328        "x-kubernetes-action": "post",
74329        "x-kubernetes-group-version-kind": {
74330          "group": "coordination.k8s.io",
74331          "kind": "Lease",
74332          "version": "v1beta1"
74333        }
74334      }
74335    },
74336    "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}": {
74337      "delete": {
74338        "consumes": [
74339          "*/*"
74340        ],
74341        "description": "delete a Lease",
74342        "operationId": "deleteCoordinationV1beta1NamespacedLease",
74343        "parameters": [
74344          {
74345            "in": "body",
74346            "name": "body",
74347            "schema": {
74348              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
74349            }
74350          },
74351          {
74352            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74353            "in": "query",
74354            "name": "dryRun",
74355            "type": "string",
74356            "uniqueItems": true
74357          },
74358          {
74359            "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.",
74360            "in": "query",
74361            "name": "gracePeriodSeconds",
74362            "type": "integer",
74363            "uniqueItems": true
74364          },
74365          {
74366            "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.",
74367            "in": "query",
74368            "name": "orphanDependents",
74369            "type": "boolean",
74370            "uniqueItems": true
74371          },
74372          {
74373            "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.",
74374            "in": "query",
74375            "name": "propagationPolicy",
74376            "type": "string",
74377            "uniqueItems": true
74378          }
74379        ],
74380        "produces": [
74381          "application/json",
74382          "application/yaml",
74383          "application/vnd.kubernetes.protobuf"
74384        ],
74385        "responses": {
74386          "200": {
74387            "description": "OK",
74388            "schema": {
74389              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74390            }
74391          },
74392          "202": {
74393            "description": "Accepted",
74394            "schema": {
74395              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
74396            }
74397          },
74398          "401": {
74399            "description": "Unauthorized"
74400          }
74401        },
74402        "schemes": [
74403          "https"
74404        ],
74405        "tags": [
74406          "coordination_v1beta1"
74407        ],
74408        "x-kubernetes-action": "delete",
74409        "x-kubernetes-group-version-kind": {
74410          "group": "coordination.k8s.io",
74411          "kind": "Lease",
74412          "version": "v1beta1"
74413        }
74414      },
74415      "get": {
74416        "consumes": [
74417          "*/*"
74418        ],
74419        "description": "read the specified Lease",
74420        "operationId": "readCoordinationV1beta1NamespacedLease",
74421        "parameters": [
74422          {
74423            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
74424            "in": "query",
74425            "name": "exact",
74426            "type": "boolean",
74427            "uniqueItems": true
74428          },
74429          {
74430            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
74431            "in": "query",
74432            "name": "export",
74433            "type": "boolean",
74434            "uniqueItems": true
74435          }
74436        ],
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.api.coordination.v1beta1.Lease"
74447            }
74448          },
74449          "401": {
74450            "description": "Unauthorized"
74451          }
74452        },
74453        "schemes": [
74454          "https"
74455        ],
74456        "tags": [
74457          "coordination_v1beta1"
74458        ],
74459        "x-kubernetes-action": "get",
74460        "x-kubernetes-group-version-kind": {
74461          "group": "coordination.k8s.io",
74462          "kind": "Lease",
74463          "version": "v1beta1"
74464        }
74465      },
74466      "parameters": [
74467        {
74468          "description": "name of the Lease",
74469          "in": "path",
74470          "name": "name",
74471          "required": true,
74472          "type": "string",
74473          "uniqueItems": true
74474        },
74475        {
74476          "description": "object name and auth scope, such as for teams and projects",
74477          "in": "path",
74478          "name": "namespace",
74479          "required": true,
74480          "type": "string",
74481          "uniqueItems": true
74482        },
74483        {
74484          "description": "If 'true', then the output is pretty printed.",
74485          "in": "query",
74486          "name": "pretty",
74487          "type": "string",
74488          "uniqueItems": true
74489        }
74490      ],
74491      "patch": {
74492        "consumes": [
74493          "application/json-patch+json",
74494          "application/merge-patch+json",
74495          "application/strategic-merge-patch+json"
74496        ],
74497        "description": "partially update the specified Lease",
74498        "operationId": "patchCoordinationV1beta1NamespacedLease",
74499        "parameters": [
74500          {
74501            "in": "body",
74502            "name": "body",
74503            "required": true,
74504            "schema": {
74505              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
74506            }
74507          },
74508          {
74509            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74510            "in": "query",
74511            "name": "dryRun",
74512            "type": "string",
74513            "uniqueItems": true
74514          },
74515          {
74516            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
74517            "in": "query",
74518            "name": "fieldManager",
74519            "type": "string",
74520            "uniqueItems": true
74521          },
74522          {
74523            "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.",
74524            "in": "query",
74525            "name": "force",
74526            "type": "boolean",
74527            "uniqueItems": true
74528          }
74529        ],
74530        "produces": [
74531          "application/json",
74532          "application/yaml",
74533          "application/vnd.kubernetes.protobuf"
74534        ],
74535        "responses": {
74536          "200": {
74537            "description": "OK",
74538            "schema": {
74539              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74540            }
74541          },
74542          "401": {
74543            "description": "Unauthorized"
74544          }
74545        },
74546        "schemes": [
74547          "https"
74548        ],
74549        "tags": [
74550          "coordination_v1beta1"
74551        ],
74552        "x-kubernetes-action": "patch",
74553        "x-kubernetes-group-version-kind": {
74554          "group": "coordination.k8s.io",
74555          "kind": "Lease",
74556          "version": "v1beta1"
74557        }
74558      },
74559      "put": {
74560        "consumes": [
74561          "*/*"
74562        ],
74563        "description": "replace the specified Lease",
74564        "operationId": "replaceCoordinationV1beta1NamespacedLease",
74565        "parameters": [
74566          {
74567            "in": "body",
74568            "name": "body",
74569            "required": true,
74570            "schema": {
74571              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74572            }
74573          },
74574          {
74575            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
74576            "in": "query",
74577            "name": "dryRun",
74578            "type": "string",
74579            "uniqueItems": true
74580          },
74581          {
74582            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
74583            "in": "query",
74584            "name": "fieldManager",
74585            "type": "string",
74586            "uniqueItems": true
74587          }
74588        ],
74589        "produces": [
74590          "application/json",
74591          "application/yaml",
74592          "application/vnd.kubernetes.protobuf"
74593        ],
74594        "responses": {
74595          "200": {
74596            "description": "OK",
74597            "schema": {
74598              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74599            }
74600          },
74601          "201": {
74602            "description": "Created",
74603            "schema": {
74604              "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease"
74605            }
74606          },
74607          "401": {
74608            "description": "Unauthorized"
74609          }
74610        },
74611        "schemes": [
74612          "https"
74613        ],
74614        "tags": [
74615          "coordination_v1beta1"
74616        ],
74617        "x-kubernetes-action": "put",
74618        "x-kubernetes-group-version-kind": {
74619          "group": "coordination.k8s.io",
74620          "kind": "Lease",
74621          "version": "v1beta1"
74622        }
74623      }
74624    },
74625    "/apis/coordination.k8s.io/v1beta1/watch/leases": {
74626      "get": {
74627        "consumes": [
74628          "*/*"
74629        ],
74630        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
74631        "operationId": "watchCoordinationV1beta1LeaseListForAllNamespaces",
74632        "produces": [
74633          "application/json",
74634          "application/yaml",
74635          "application/vnd.kubernetes.protobuf",
74636          "application/json;stream=watch",
74637          "application/vnd.kubernetes.protobuf;stream=watch"
74638        ],
74639        "responses": {
74640          "200": {
74641            "description": "OK",
74642            "schema": {
74643              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
74644            }
74645          },
74646          "401": {
74647            "description": "Unauthorized"
74648          }
74649        },
74650        "schemes": [
74651          "https"
74652        ],
74653        "tags": [
74654          "coordination_v1beta1"
74655        ],
74656        "x-kubernetes-action": "watchlist",
74657        "x-kubernetes-group-version-kind": {
74658          "group": "coordination.k8s.io",
74659          "kind": "Lease",
74660          "version": "v1beta1"
74661        }
74662      },
74663      "parameters": [
74664        {
74665          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
74666          "in": "query",
74667          "name": "allowWatchBookmarks",
74668          "type": "boolean",
74669          "uniqueItems": true
74670        },
74671        {
74672          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74673          "in": "query",
74674          "name": "continue",
74675          "type": "string",
74676          "uniqueItems": true
74677        },
74678        {
74679          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74680          "in": "query",
74681          "name": "fieldSelector",
74682          "type": "string",
74683          "uniqueItems": true
74684        },
74685        {
74686          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74687          "in": "query",
74688          "name": "labelSelector",
74689          "type": "string",
74690          "uniqueItems": true
74691        },
74692        {
74693          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74694          "in": "query",
74695          "name": "limit",
74696          "type": "integer",
74697          "uniqueItems": true
74698        },
74699        {
74700          "description": "If 'true', then the output is pretty printed.",
74701          "in": "query",
74702          "name": "pretty",
74703          "type": "string",
74704          "uniqueItems": true
74705        },
74706        {
74707          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
74708          "in": "query",
74709          "name": "resourceVersion",
74710          "type": "string",
74711          "uniqueItems": true
74712        },
74713        {
74714          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74715          "in": "query",
74716          "name": "timeoutSeconds",
74717          "type": "integer",
74718          "uniqueItems": true
74719        },
74720        {
74721          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74722          "in": "query",
74723          "name": "watch",
74724          "type": "boolean",
74725          "uniqueItems": true
74726        }
74727      ]
74728    },
74729    "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases": {
74730      "get": {
74731        "consumes": [
74732          "*/*"
74733        ],
74734        "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.",
74735        "operationId": "watchCoordinationV1beta1NamespacedLeaseList",
74736        "produces": [
74737          "application/json",
74738          "application/yaml",
74739          "application/vnd.kubernetes.protobuf",
74740          "application/json;stream=watch",
74741          "application/vnd.kubernetes.protobuf;stream=watch"
74742        ],
74743        "responses": {
74744          "200": {
74745            "description": "OK",
74746            "schema": {
74747              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
74748            }
74749          },
74750          "401": {
74751            "description": "Unauthorized"
74752          }
74753        },
74754        "schemes": [
74755          "https"
74756        ],
74757        "tags": [
74758          "coordination_v1beta1"
74759        ],
74760        "x-kubernetes-action": "watchlist",
74761        "x-kubernetes-group-version-kind": {
74762          "group": "coordination.k8s.io",
74763          "kind": "Lease",
74764          "version": "v1beta1"
74765        }
74766      },
74767      "parameters": [
74768        {
74769          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
74770          "in": "query",
74771          "name": "allowWatchBookmarks",
74772          "type": "boolean",
74773          "uniqueItems": true
74774        },
74775        {
74776          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74777          "in": "query",
74778          "name": "continue",
74779          "type": "string",
74780          "uniqueItems": true
74781        },
74782        {
74783          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74784          "in": "query",
74785          "name": "fieldSelector",
74786          "type": "string",
74787          "uniqueItems": true
74788        },
74789        {
74790          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74791          "in": "query",
74792          "name": "labelSelector",
74793          "type": "string",
74794          "uniqueItems": true
74795        },
74796        {
74797          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74798          "in": "query",
74799          "name": "limit",
74800          "type": "integer",
74801          "uniqueItems": true
74802        },
74803        {
74804          "description": "object name and auth scope, such as for teams and projects",
74805          "in": "path",
74806          "name": "namespace",
74807          "required": true,
74808          "type": "string",
74809          "uniqueItems": true
74810        },
74811        {
74812          "description": "If 'true', then the output is pretty printed.",
74813          "in": "query",
74814          "name": "pretty",
74815          "type": "string",
74816          "uniqueItems": true
74817        },
74818        {
74819          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
74820          "in": "query",
74821          "name": "resourceVersion",
74822          "type": "string",
74823          "uniqueItems": true
74824        },
74825        {
74826          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74827          "in": "query",
74828          "name": "timeoutSeconds",
74829          "type": "integer",
74830          "uniqueItems": true
74831        },
74832        {
74833          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74834          "in": "query",
74835          "name": "watch",
74836          "type": "boolean",
74837          "uniqueItems": true
74838        }
74839      ]
74840    },
74841    "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases/{name}": {
74842      "get": {
74843        "consumes": [
74844          "*/*"
74845        ],
74846        "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.",
74847        "operationId": "watchCoordinationV1beta1NamespacedLease",
74848        "produces": [
74849          "application/json",
74850          "application/yaml",
74851          "application/vnd.kubernetes.protobuf",
74852          "application/json;stream=watch",
74853          "application/vnd.kubernetes.protobuf;stream=watch"
74854        ],
74855        "responses": {
74856          "200": {
74857            "description": "OK",
74858            "schema": {
74859              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
74860            }
74861          },
74862          "401": {
74863            "description": "Unauthorized"
74864          }
74865        },
74866        "schemes": [
74867          "https"
74868        ],
74869        "tags": [
74870          "coordination_v1beta1"
74871        ],
74872        "x-kubernetes-action": "watch",
74873        "x-kubernetes-group-version-kind": {
74874          "group": "coordination.k8s.io",
74875          "kind": "Lease",
74876          "version": "v1beta1"
74877        }
74878      },
74879      "parameters": [
74880        {
74881          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
74882          "in": "query",
74883          "name": "allowWatchBookmarks",
74884          "type": "boolean",
74885          "uniqueItems": true
74886        },
74887        {
74888          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
74889          "in": "query",
74890          "name": "continue",
74891          "type": "string",
74892          "uniqueItems": true
74893        },
74894        {
74895          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
74896          "in": "query",
74897          "name": "fieldSelector",
74898          "type": "string",
74899          "uniqueItems": true
74900        },
74901        {
74902          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
74903          "in": "query",
74904          "name": "labelSelector",
74905          "type": "string",
74906          "uniqueItems": true
74907        },
74908        {
74909          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
74910          "in": "query",
74911          "name": "limit",
74912          "type": "integer",
74913          "uniqueItems": true
74914        },
74915        {
74916          "description": "name of the Lease",
74917          "in": "path",
74918          "name": "name",
74919          "required": true,
74920          "type": "string",
74921          "uniqueItems": true
74922        },
74923        {
74924          "description": "object name and auth scope, such as for teams and projects",
74925          "in": "path",
74926          "name": "namespace",
74927          "required": true,
74928          "type": "string",
74929          "uniqueItems": true
74930        },
74931        {
74932          "description": "If 'true', then the output is pretty printed.",
74933          "in": "query",
74934          "name": "pretty",
74935          "type": "string",
74936          "uniqueItems": true
74937        },
74938        {
74939          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
74940          "in": "query",
74941          "name": "resourceVersion",
74942          "type": "string",
74943          "uniqueItems": true
74944        },
74945        {
74946          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
74947          "in": "query",
74948          "name": "timeoutSeconds",
74949          "type": "integer",
74950          "uniqueItems": true
74951        },
74952        {
74953          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
74954          "in": "query",
74955          "name": "watch",
74956          "type": "boolean",
74957          "uniqueItems": true
74958        }
74959      ]
74960    },
74961    "/apis/events.k8s.io/": {
74962      "get": {
74963        "consumes": [
74964          "application/json",
74965          "application/yaml",
74966          "application/vnd.kubernetes.protobuf"
74967        ],
74968        "description": "get information of a group",
74969        "operationId": "getEventsAPIGroup",
74970        "produces": [
74971          "application/json",
74972          "application/yaml",
74973          "application/vnd.kubernetes.protobuf"
74974        ],
74975        "responses": {
74976          "200": {
74977            "description": "OK",
74978            "schema": {
74979              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
74980            }
74981          },
74982          "401": {
74983            "description": "Unauthorized"
74984          }
74985        },
74986        "schemes": [
74987          "https"
74988        ],
74989        "tags": [
74990          "events"
74991        ]
74992      }
74993    },
74994    "/apis/events.k8s.io/v1beta1/": {
74995      "get": {
74996        "consumes": [
74997          "application/json",
74998          "application/yaml",
74999          "application/vnd.kubernetes.protobuf"
75000        ],
75001        "description": "get available resources",
75002        "operationId": "getEventsV1beta1APIResources",
75003        "produces": [
75004          "application/json",
75005          "application/yaml",
75006          "application/vnd.kubernetes.protobuf"
75007        ],
75008        "responses": {
75009          "200": {
75010            "description": "OK",
75011            "schema": {
75012              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
75013            }
75014          },
75015          "401": {
75016            "description": "Unauthorized"
75017          }
75018        },
75019        "schemes": [
75020          "https"
75021        ],
75022        "tags": [
75023          "events_v1beta1"
75024        ]
75025      }
75026    },
75027    "/apis/events.k8s.io/v1beta1/events": {
75028      "get": {
75029        "consumes": [
75030          "*/*"
75031        ],
75032        "description": "list or watch objects of kind Event",
75033        "operationId": "listEventsV1beta1EventForAllNamespaces",
75034        "produces": [
75035          "application/json",
75036          "application/yaml",
75037          "application/vnd.kubernetes.protobuf",
75038          "application/json;stream=watch",
75039          "application/vnd.kubernetes.protobuf;stream=watch"
75040        ],
75041        "responses": {
75042          "200": {
75043            "description": "OK",
75044            "schema": {
75045              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
75046            }
75047          },
75048          "401": {
75049            "description": "Unauthorized"
75050          }
75051        },
75052        "schemes": [
75053          "https"
75054        ],
75055        "tags": [
75056          "events_v1beta1"
75057        ],
75058        "x-kubernetes-action": "list",
75059        "x-kubernetes-group-version-kind": {
75060          "group": "events.k8s.io",
75061          "kind": "Event",
75062          "version": "v1beta1"
75063        }
75064      },
75065      "parameters": [
75066        {
75067          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
75068          "in": "query",
75069          "name": "allowWatchBookmarks",
75070          "type": "boolean",
75071          "uniqueItems": true
75072        },
75073        {
75074          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75075          "in": "query",
75076          "name": "continue",
75077          "type": "string",
75078          "uniqueItems": true
75079        },
75080        {
75081          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75082          "in": "query",
75083          "name": "fieldSelector",
75084          "type": "string",
75085          "uniqueItems": true
75086        },
75087        {
75088          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75089          "in": "query",
75090          "name": "labelSelector",
75091          "type": "string",
75092          "uniqueItems": true
75093        },
75094        {
75095          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75096          "in": "query",
75097          "name": "limit",
75098          "type": "integer",
75099          "uniqueItems": true
75100        },
75101        {
75102          "description": "If 'true', then the output is pretty printed.",
75103          "in": "query",
75104          "name": "pretty",
75105          "type": "string",
75106          "uniqueItems": true
75107        },
75108        {
75109          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
75110          "in": "query",
75111          "name": "resourceVersion",
75112          "type": "string",
75113          "uniqueItems": true
75114        },
75115        {
75116          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75117          "in": "query",
75118          "name": "timeoutSeconds",
75119          "type": "integer",
75120          "uniqueItems": true
75121        },
75122        {
75123          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75124          "in": "query",
75125          "name": "watch",
75126          "type": "boolean",
75127          "uniqueItems": true
75128        }
75129      ]
75130    },
75131    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events": {
75132      "delete": {
75133        "consumes": [
75134          "*/*"
75135        ],
75136        "description": "delete collection of Event",
75137        "operationId": "deleteEventsV1beta1CollectionNamespacedEvent",
75138        "parameters": [
75139          {
75140            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
75141            "in": "query",
75142            "name": "allowWatchBookmarks",
75143            "type": "boolean",
75144            "uniqueItems": true
75145          },
75146          {
75147            "in": "body",
75148            "name": "body",
75149            "schema": {
75150              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75151            }
75152          },
75153          {
75154            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75155            "in": "query",
75156            "name": "continue",
75157            "type": "string",
75158            "uniqueItems": true
75159          },
75160          {
75161            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75162            "in": "query",
75163            "name": "dryRun",
75164            "type": "string",
75165            "uniqueItems": true
75166          },
75167          {
75168            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75169            "in": "query",
75170            "name": "fieldSelector",
75171            "type": "string",
75172            "uniqueItems": true
75173          },
75174          {
75175            "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.",
75176            "in": "query",
75177            "name": "gracePeriodSeconds",
75178            "type": "integer",
75179            "uniqueItems": true
75180          },
75181          {
75182            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75183            "in": "query",
75184            "name": "labelSelector",
75185            "type": "string",
75186            "uniqueItems": true
75187          },
75188          {
75189            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75190            "in": "query",
75191            "name": "limit",
75192            "type": "integer",
75193            "uniqueItems": true
75194          },
75195          {
75196            "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.",
75197            "in": "query",
75198            "name": "orphanDependents",
75199            "type": "boolean",
75200            "uniqueItems": true
75201          },
75202          {
75203            "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.",
75204            "in": "query",
75205            "name": "propagationPolicy",
75206            "type": "string",
75207            "uniqueItems": true
75208          },
75209          {
75210            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
75211            "in": "query",
75212            "name": "resourceVersion",
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        ],
75236        "responses": {
75237          "200": {
75238            "description": "OK",
75239            "schema": {
75240              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75241            }
75242          },
75243          "401": {
75244            "description": "Unauthorized"
75245          }
75246        },
75247        "schemes": [
75248          "https"
75249        ],
75250        "tags": [
75251          "events_v1beta1"
75252        ],
75253        "x-kubernetes-action": "deletecollection",
75254        "x-kubernetes-group-version-kind": {
75255          "group": "events.k8s.io",
75256          "kind": "Event",
75257          "version": "v1beta1"
75258        }
75259      },
75260      "get": {
75261        "consumes": [
75262          "*/*"
75263        ],
75264        "description": "list or watch objects of kind Event",
75265        "operationId": "listEventsV1beta1NamespacedEvent",
75266        "parameters": [
75267          {
75268            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
75269            "in": "query",
75270            "name": "allowWatchBookmarks",
75271            "type": "boolean",
75272            "uniqueItems": true
75273          },
75274          {
75275            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75276            "in": "query",
75277            "name": "continue",
75278            "type": "string",
75279            "uniqueItems": true
75280          },
75281          {
75282            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75283            "in": "query",
75284            "name": "fieldSelector",
75285            "type": "string",
75286            "uniqueItems": true
75287          },
75288          {
75289            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75290            "in": "query",
75291            "name": "labelSelector",
75292            "type": "string",
75293            "uniqueItems": true
75294          },
75295          {
75296            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75297            "in": "query",
75298            "name": "limit",
75299            "type": "integer",
75300            "uniqueItems": true
75301          },
75302          {
75303            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
75304            "in": "query",
75305            "name": "resourceVersion",
75306            "type": "string",
75307            "uniqueItems": true
75308          },
75309          {
75310            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75311            "in": "query",
75312            "name": "timeoutSeconds",
75313            "type": "integer",
75314            "uniqueItems": true
75315          },
75316          {
75317            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75318            "in": "query",
75319            "name": "watch",
75320            "type": "boolean",
75321            "uniqueItems": true
75322          }
75323        ],
75324        "produces": [
75325          "application/json",
75326          "application/yaml",
75327          "application/vnd.kubernetes.protobuf",
75328          "application/json;stream=watch",
75329          "application/vnd.kubernetes.protobuf;stream=watch"
75330        ],
75331        "responses": {
75332          "200": {
75333            "description": "OK",
75334            "schema": {
75335              "$ref": "#/definitions/io.k8s.api.events.v1beta1.EventList"
75336            }
75337          },
75338          "401": {
75339            "description": "Unauthorized"
75340          }
75341        },
75342        "schemes": [
75343          "https"
75344        ],
75345        "tags": [
75346          "events_v1beta1"
75347        ],
75348        "x-kubernetes-action": "list",
75349        "x-kubernetes-group-version-kind": {
75350          "group": "events.k8s.io",
75351          "kind": "Event",
75352          "version": "v1beta1"
75353        }
75354      },
75355      "parameters": [
75356        {
75357          "description": "object name and auth scope, such as for teams and projects",
75358          "in": "path",
75359          "name": "namespace",
75360          "required": true,
75361          "type": "string",
75362          "uniqueItems": true
75363        },
75364        {
75365          "description": "If 'true', then the output is pretty printed.",
75366          "in": "query",
75367          "name": "pretty",
75368          "type": "string",
75369          "uniqueItems": true
75370        }
75371      ],
75372      "post": {
75373        "consumes": [
75374          "*/*"
75375        ],
75376        "description": "create an Event",
75377        "operationId": "createEventsV1beta1NamespacedEvent",
75378        "parameters": [
75379          {
75380            "in": "body",
75381            "name": "body",
75382            "required": true,
75383            "schema": {
75384              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75385            }
75386          },
75387          {
75388            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75389            "in": "query",
75390            "name": "dryRun",
75391            "type": "string",
75392            "uniqueItems": true
75393          },
75394          {
75395            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75396            "in": "query",
75397            "name": "fieldManager",
75398            "type": "string",
75399            "uniqueItems": true
75400          }
75401        ],
75402        "produces": [
75403          "application/json",
75404          "application/yaml",
75405          "application/vnd.kubernetes.protobuf"
75406        ],
75407        "responses": {
75408          "200": {
75409            "description": "OK",
75410            "schema": {
75411              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75412            }
75413          },
75414          "201": {
75415            "description": "Created",
75416            "schema": {
75417              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75418            }
75419          },
75420          "202": {
75421            "description": "Accepted",
75422            "schema": {
75423              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75424            }
75425          },
75426          "401": {
75427            "description": "Unauthorized"
75428          }
75429        },
75430        "schemes": [
75431          "https"
75432        ],
75433        "tags": [
75434          "events_v1beta1"
75435        ],
75436        "x-kubernetes-action": "post",
75437        "x-kubernetes-group-version-kind": {
75438          "group": "events.k8s.io",
75439          "kind": "Event",
75440          "version": "v1beta1"
75441        }
75442      }
75443    },
75444    "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}": {
75445      "delete": {
75446        "consumes": [
75447          "*/*"
75448        ],
75449        "description": "delete an Event",
75450        "operationId": "deleteEventsV1beta1NamespacedEvent",
75451        "parameters": [
75452          {
75453            "in": "body",
75454            "name": "body",
75455            "schema": {
75456              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
75457            }
75458          },
75459          {
75460            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75461            "in": "query",
75462            "name": "dryRun",
75463            "type": "string",
75464            "uniqueItems": true
75465          },
75466          {
75467            "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.",
75468            "in": "query",
75469            "name": "gracePeriodSeconds",
75470            "type": "integer",
75471            "uniqueItems": true
75472          },
75473          {
75474            "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.",
75475            "in": "query",
75476            "name": "orphanDependents",
75477            "type": "boolean",
75478            "uniqueItems": true
75479          },
75480          {
75481            "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.",
75482            "in": "query",
75483            "name": "propagationPolicy",
75484            "type": "string",
75485            "uniqueItems": true
75486          }
75487        ],
75488        "produces": [
75489          "application/json",
75490          "application/yaml",
75491          "application/vnd.kubernetes.protobuf"
75492        ],
75493        "responses": {
75494          "200": {
75495            "description": "OK",
75496            "schema": {
75497              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75498            }
75499          },
75500          "202": {
75501            "description": "Accepted",
75502            "schema": {
75503              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
75504            }
75505          },
75506          "401": {
75507            "description": "Unauthorized"
75508          }
75509        },
75510        "schemes": [
75511          "https"
75512        ],
75513        "tags": [
75514          "events_v1beta1"
75515        ],
75516        "x-kubernetes-action": "delete",
75517        "x-kubernetes-group-version-kind": {
75518          "group": "events.k8s.io",
75519          "kind": "Event",
75520          "version": "v1beta1"
75521        }
75522      },
75523      "get": {
75524        "consumes": [
75525          "*/*"
75526        ],
75527        "description": "read the specified Event",
75528        "operationId": "readEventsV1beta1NamespacedEvent",
75529        "parameters": [
75530          {
75531            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
75532            "in": "query",
75533            "name": "exact",
75534            "type": "boolean",
75535            "uniqueItems": true
75536          },
75537          {
75538            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
75539            "in": "query",
75540            "name": "export",
75541            "type": "boolean",
75542            "uniqueItems": true
75543          }
75544        ],
75545        "produces": [
75546          "application/json",
75547          "application/yaml",
75548          "application/vnd.kubernetes.protobuf"
75549        ],
75550        "responses": {
75551          "200": {
75552            "description": "OK",
75553            "schema": {
75554              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75555            }
75556          },
75557          "401": {
75558            "description": "Unauthorized"
75559          }
75560        },
75561        "schemes": [
75562          "https"
75563        ],
75564        "tags": [
75565          "events_v1beta1"
75566        ],
75567        "x-kubernetes-action": "get",
75568        "x-kubernetes-group-version-kind": {
75569          "group": "events.k8s.io",
75570          "kind": "Event",
75571          "version": "v1beta1"
75572        }
75573      },
75574      "parameters": [
75575        {
75576          "description": "name of the Event",
75577          "in": "path",
75578          "name": "name",
75579          "required": true,
75580          "type": "string",
75581          "uniqueItems": true
75582        },
75583        {
75584          "description": "object name and auth scope, such as for teams and projects",
75585          "in": "path",
75586          "name": "namespace",
75587          "required": true,
75588          "type": "string",
75589          "uniqueItems": true
75590        },
75591        {
75592          "description": "If 'true', then the output is pretty printed.",
75593          "in": "query",
75594          "name": "pretty",
75595          "type": "string",
75596          "uniqueItems": true
75597        }
75598      ],
75599      "patch": {
75600        "consumes": [
75601          "application/json-patch+json",
75602          "application/merge-patch+json",
75603          "application/strategic-merge-patch+json"
75604        ],
75605        "description": "partially update the specified Event",
75606        "operationId": "patchEventsV1beta1NamespacedEvent",
75607        "parameters": [
75608          {
75609            "in": "body",
75610            "name": "body",
75611            "required": true,
75612            "schema": {
75613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
75614            }
75615          },
75616          {
75617            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75618            "in": "query",
75619            "name": "dryRun",
75620            "type": "string",
75621            "uniqueItems": true
75622          },
75623          {
75624            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
75625            "in": "query",
75626            "name": "fieldManager",
75627            "type": "string",
75628            "uniqueItems": true
75629          },
75630          {
75631            "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.",
75632            "in": "query",
75633            "name": "force",
75634            "type": "boolean",
75635            "uniqueItems": true
75636          }
75637        ],
75638        "produces": [
75639          "application/json",
75640          "application/yaml",
75641          "application/vnd.kubernetes.protobuf"
75642        ],
75643        "responses": {
75644          "200": {
75645            "description": "OK",
75646            "schema": {
75647              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75648            }
75649          },
75650          "401": {
75651            "description": "Unauthorized"
75652          }
75653        },
75654        "schemes": [
75655          "https"
75656        ],
75657        "tags": [
75658          "events_v1beta1"
75659        ],
75660        "x-kubernetes-action": "patch",
75661        "x-kubernetes-group-version-kind": {
75662          "group": "events.k8s.io",
75663          "kind": "Event",
75664          "version": "v1beta1"
75665        }
75666      },
75667      "put": {
75668        "consumes": [
75669          "*/*"
75670        ],
75671        "description": "replace the specified Event",
75672        "operationId": "replaceEventsV1beta1NamespacedEvent",
75673        "parameters": [
75674          {
75675            "in": "body",
75676            "name": "body",
75677            "required": true,
75678            "schema": {
75679              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75680            }
75681          },
75682          {
75683            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
75684            "in": "query",
75685            "name": "dryRun",
75686            "type": "string",
75687            "uniqueItems": true
75688          },
75689          {
75690            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
75691            "in": "query",
75692            "name": "fieldManager",
75693            "type": "string",
75694            "uniqueItems": true
75695          }
75696        ],
75697        "produces": [
75698          "application/json",
75699          "application/yaml",
75700          "application/vnd.kubernetes.protobuf"
75701        ],
75702        "responses": {
75703          "200": {
75704            "description": "OK",
75705            "schema": {
75706              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75707            }
75708          },
75709          "201": {
75710            "description": "Created",
75711            "schema": {
75712              "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event"
75713            }
75714          },
75715          "401": {
75716            "description": "Unauthorized"
75717          }
75718        },
75719        "schemes": [
75720          "https"
75721        ],
75722        "tags": [
75723          "events_v1beta1"
75724        ],
75725        "x-kubernetes-action": "put",
75726        "x-kubernetes-group-version-kind": {
75727          "group": "events.k8s.io",
75728          "kind": "Event",
75729          "version": "v1beta1"
75730        }
75731      }
75732    },
75733    "/apis/events.k8s.io/v1beta1/watch/events": {
75734      "get": {
75735        "consumes": [
75736          "*/*"
75737        ],
75738        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
75739        "operationId": "watchEventsV1beta1EventListForAllNamespaces",
75740        "produces": [
75741          "application/json",
75742          "application/yaml",
75743          "application/vnd.kubernetes.protobuf",
75744          "application/json;stream=watch",
75745          "application/vnd.kubernetes.protobuf;stream=watch"
75746        ],
75747        "responses": {
75748          "200": {
75749            "description": "OK",
75750            "schema": {
75751              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75752            }
75753          },
75754          "401": {
75755            "description": "Unauthorized"
75756          }
75757        },
75758        "schemes": [
75759          "https"
75760        ],
75761        "tags": [
75762          "events_v1beta1"
75763        ],
75764        "x-kubernetes-action": "watchlist",
75765        "x-kubernetes-group-version-kind": {
75766          "group": "events.k8s.io",
75767          "kind": "Event",
75768          "version": "v1beta1"
75769        }
75770      },
75771      "parameters": [
75772        {
75773          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
75774          "in": "query",
75775          "name": "allowWatchBookmarks",
75776          "type": "boolean",
75777          "uniqueItems": true
75778        },
75779        {
75780          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75781          "in": "query",
75782          "name": "continue",
75783          "type": "string",
75784          "uniqueItems": true
75785        },
75786        {
75787          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75788          "in": "query",
75789          "name": "fieldSelector",
75790          "type": "string",
75791          "uniqueItems": true
75792        },
75793        {
75794          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75795          "in": "query",
75796          "name": "labelSelector",
75797          "type": "string",
75798          "uniqueItems": true
75799        },
75800        {
75801          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75802          "in": "query",
75803          "name": "limit",
75804          "type": "integer",
75805          "uniqueItems": true
75806        },
75807        {
75808          "description": "If 'true', then the output is pretty printed.",
75809          "in": "query",
75810          "name": "pretty",
75811          "type": "string",
75812          "uniqueItems": true
75813        },
75814        {
75815          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
75816          "in": "query",
75817          "name": "resourceVersion",
75818          "type": "string",
75819          "uniqueItems": true
75820        },
75821        {
75822          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75823          "in": "query",
75824          "name": "timeoutSeconds",
75825          "type": "integer",
75826          "uniqueItems": true
75827        },
75828        {
75829          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75830          "in": "query",
75831          "name": "watch",
75832          "type": "boolean",
75833          "uniqueItems": true
75834        }
75835      ]
75836    },
75837    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events": {
75838      "get": {
75839        "consumes": [
75840          "*/*"
75841        ],
75842        "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.",
75843        "operationId": "watchEventsV1beta1NamespacedEventList",
75844        "produces": [
75845          "application/json",
75846          "application/yaml",
75847          "application/vnd.kubernetes.protobuf",
75848          "application/json;stream=watch",
75849          "application/vnd.kubernetes.protobuf;stream=watch"
75850        ],
75851        "responses": {
75852          "200": {
75853            "description": "OK",
75854            "schema": {
75855              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75856            }
75857          },
75858          "401": {
75859            "description": "Unauthorized"
75860          }
75861        },
75862        "schemes": [
75863          "https"
75864        ],
75865        "tags": [
75866          "events_v1beta1"
75867        ],
75868        "x-kubernetes-action": "watchlist",
75869        "x-kubernetes-group-version-kind": {
75870          "group": "events.k8s.io",
75871          "kind": "Event",
75872          "version": "v1beta1"
75873        }
75874      },
75875      "parameters": [
75876        {
75877          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
75878          "in": "query",
75879          "name": "allowWatchBookmarks",
75880          "type": "boolean",
75881          "uniqueItems": true
75882        },
75883        {
75884          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75885          "in": "query",
75886          "name": "continue",
75887          "type": "string",
75888          "uniqueItems": true
75889        },
75890        {
75891          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
75892          "in": "query",
75893          "name": "fieldSelector",
75894          "type": "string",
75895          "uniqueItems": true
75896        },
75897        {
75898          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
75899          "in": "query",
75900          "name": "labelSelector",
75901          "type": "string",
75902          "uniqueItems": true
75903        },
75904        {
75905          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
75906          "in": "query",
75907          "name": "limit",
75908          "type": "integer",
75909          "uniqueItems": true
75910        },
75911        {
75912          "description": "object name and auth scope, such as for teams and projects",
75913          "in": "path",
75914          "name": "namespace",
75915          "required": true,
75916          "type": "string",
75917          "uniqueItems": true
75918        },
75919        {
75920          "description": "If 'true', then the output is pretty printed.",
75921          "in": "query",
75922          "name": "pretty",
75923          "type": "string",
75924          "uniqueItems": true
75925        },
75926        {
75927          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
75928          "in": "query",
75929          "name": "resourceVersion",
75930          "type": "string",
75931          "uniqueItems": true
75932        },
75933        {
75934          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
75935          "in": "query",
75936          "name": "timeoutSeconds",
75937          "type": "integer",
75938          "uniqueItems": true
75939        },
75940        {
75941          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
75942          "in": "query",
75943          "name": "watch",
75944          "type": "boolean",
75945          "uniqueItems": true
75946        }
75947      ]
75948    },
75949    "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}": {
75950      "get": {
75951        "consumes": [
75952          "*/*"
75953        ],
75954        "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.",
75955        "operationId": "watchEventsV1beta1NamespacedEvent",
75956        "produces": [
75957          "application/json",
75958          "application/yaml",
75959          "application/vnd.kubernetes.protobuf",
75960          "application/json;stream=watch",
75961          "application/vnd.kubernetes.protobuf;stream=watch"
75962        ],
75963        "responses": {
75964          "200": {
75965            "description": "OK",
75966            "schema": {
75967              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
75968            }
75969          },
75970          "401": {
75971            "description": "Unauthorized"
75972          }
75973        },
75974        "schemes": [
75975          "https"
75976        ],
75977        "tags": [
75978          "events_v1beta1"
75979        ],
75980        "x-kubernetes-action": "watch",
75981        "x-kubernetes-group-version-kind": {
75982          "group": "events.k8s.io",
75983          "kind": "Event",
75984          "version": "v1beta1"
75985        }
75986      },
75987      "parameters": [
75988        {
75989          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
75990          "in": "query",
75991          "name": "allowWatchBookmarks",
75992          "type": "boolean",
75993          "uniqueItems": true
75994        },
75995        {
75996          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
75997          "in": "query",
75998          "name": "continue",
75999          "type": "string",
76000          "uniqueItems": true
76001        },
76002        {
76003          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76004          "in": "query",
76005          "name": "fieldSelector",
76006          "type": "string",
76007          "uniqueItems": true
76008        },
76009        {
76010          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76011          "in": "query",
76012          "name": "labelSelector",
76013          "type": "string",
76014          "uniqueItems": true
76015        },
76016        {
76017          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76018          "in": "query",
76019          "name": "limit",
76020          "type": "integer",
76021          "uniqueItems": true
76022        },
76023        {
76024          "description": "name of the Event",
76025          "in": "path",
76026          "name": "name",
76027          "required": true,
76028          "type": "string",
76029          "uniqueItems": true
76030        },
76031        {
76032          "description": "object name and auth scope, such as for teams and projects",
76033          "in": "path",
76034          "name": "namespace",
76035          "required": true,
76036          "type": "string",
76037          "uniqueItems": true
76038        },
76039        {
76040          "description": "If 'true', then the output is pretty printed.",
76041          "in": "query",
76042          "name": "pretty",
76043          "type": "string",
76044          "uniqueItems": true
76045        },
76046        {
76047          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
76048          "in": "query",
76049          "name": "resourceVersion",
76050          "type": "string",
76051          "uniqueItems": true
76052        },
76053        {
76054          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76055          "in": "query",
76056          "name": "timeoutSeconds",
76057          "type": "integer",
76058          "uniqueItems": true
76059        },
76060        {
76061          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76062          "in": "query",
76063          "name": "watch",
76064          "type": "boolean",
76065          "uniqueItems": true
76066        }
76067      ]
76068    },
76069    "/apis/extensions/": {
76070      "get": {
76071        "consumes": [
76072          "application/json",
76073          "application/yaml",
76074          "application/vnd.kubernetes.protobuf"
76075        ],
76076        "description": "get information of a group",
76077        "operationId": "getExtensionsAPIGroup",
76078        "produces": [
76079          "application/json",
76080          "application/yaml",
76081          "application/vnd.kubernetes.protobuf"
76082        ],
76083        "responses": {
76084          "200": {
76085            "description": "OK",
76086            "schema": {
76087              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
76088            }
76089          },
76090          "401": {
76091            "description": "Unauthorized"
76092          }
76093        },
76094        "schemes": [
76095          "https"
76096        ],
76097        "tags": [
76098          "extensions"
76099        ]
76100      }
76101    },
76102    "/apis/extensions/v1beta1/": {
76103      "get": {
76104        "consumes": [
76105          "application/json",
76106          "application/yaml",
76107          "application/vnd.kubernetes.protobuf"
76108        ],
76109        "description": "get available resources",
76110        "operationId": "getExtensionsV1beta1APIResources",
76111        "produces": [
76112          "application/json",
76113          "application/yaml",
76114          "application/vnd.kubernetes.protobuf"
76115        ],
76116        "responses": {
76117          "200": {
76118            "description": "OK",
76119            "schema": {
76120              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
76121            }
76122          },
76123          "401": {
76124            "description": "Unauthorized"
76125          }
76126        },
76127        "schemes": [
76128          "https"
76129        ],
76130        "tags": [
76131          "extensions_v1beta1"
76132        ]
76133      }
76134    },
76135    "/apis/extensions/v1beta1/daemonsets": {
76136      "get": {
76137        "consumes": [
76138          "*/*"
76139        ],
76140        "description": "list or watch objects of kind DaemonSet",
76141        "operationId": "listExtensionsV1beta1DaemonSetForAllNamespaces",
76142        "produces": [
76143          "application/json",
76144          "application/yaml",
76145          "application/vnd.kubernetes.protobuf",
76146          "application/json;stream=watch",
76147          "application/vnd.kubernetes.protobuf;stream=watch"
76148        ],
76149        "responses": {
76150          "200": {
76151            "description": "OK",
76152            "schema": {
76153              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetList"
76154            }
76155          },
76156          "401": {
76157            "description": "Unauthorized"
76158          }
76159        },
76160        "schemes": [
76161          "https"
76162        ],
76163        "tags": [
76164          "extensions_v1beta1"
76165        ],
76166        "x-kubernetes-action": "list",
76167        "x-kubernetes-group-version-kind": {
76168          "group": "extensions",
76169          "kind": "DaemonSet",
76170          "version": "v1beta1"
76171        }
76172      },
76173      "parameters": [
76174        {
76175          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
76176          "in": "query",
76177          "name": "allowWatchBookmarks",
76178          "type": "boolean",
76179          "uniqueItems": true
76180        },
76181        {
76182          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76183          "in": "query",
76184          "name": "continue",
76185          "type": "string",
76186          "uniqueItems": true
76187        },
76188        {
76189          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76190          "in": "query",
76191          "name": "fieldSelector",
76192          "type": "string",
76193          "uniqueItems": true
76194        },
76195        {
76196          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76197          "in": "query",
76198          "name": "labelSelector",
76199          "type": "string",
76200          "uniqueItems": true
76201        },
76202        {
76203          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76204          "in": "query",
76205          "name": "limit",
76206          "type": "integer",
76207          "uniqueItems": true
76208        },
76209        {
76210          "description": "If 'true', then the output is pretty printed.",
76211          "in": "query",
76212          "name": "pretty",
76213          "type": "string",
76214          "uniqueItems": true
76215        },
76216        {
76217          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
76218          "in": "query",
76219          "name": "resourceVersion",
76220          "type": "string",
76221          "uniqueItems": true
76222        },
76223        {
76224          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76225          "in": "query",
76226          "name": "timeoutSeconds",
76227          "type": "integer",
76228          "uniqueItems": true
76229        },
76230        {
76231          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76232          "in": "query",
76233          "name": "watch",
76234          "type": "boolean",
76235          "uniqueItems": true
76236        }
76237      ]
76238    },
76239    "/apis/extensions/v1beta1/deployments": {
76240      "get": {
76241        "consumes": [
76242          "*/*"
76243        ],
76244        "description": "list or watch objects of kind Deployment",
76245        "operationId": "listExtensionsV1beta1DeploymentForAllNamespaces",
76246        "produces": [
76247          "application/json",
76248          "application/yaml",
76249          "application/vnd.kubernetes.protobuf",
76250          "application/json;stream=watch",
76251          "application/vnd.kubernetes.protobuf;stream=watch"
76252        ],
76253        "responses": {
76254          "200": {
76255            "description": "OK",
76256            "schema": {
76257              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentList"
76258            }
76259          },
76260          "401": {
76261            "description": "Unauthorized"
76262          }
76263        },
76264        "schemes": [
76265          "https"
76266        ],
76267        "tags": [
76268          "extensions_v1beta1"
76269        ],
76270        "x-kubernetes-action": "list",
76271        "x-kubernetes-group-version-kind": {
76272          "group": "extensions",
76273          "kind": "Deployment",
76274          "version": "v1beta1"
76275        }
76276      },
76277      "parameters": [
76278        {
76279          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
76280          "in": "query",
76281          "name": "allowWatchBookmarks",
76282          "type": "boolean",
76283          "uniqueItems": true
76284        },
76285        {
76286          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76287          "in": "query",
76288          "name": "continue",
76289          "type": "string",
76290          "uniqueItems": true
76291        },
76292        {
76293          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76294          "in": "query",
76295          "name": "fieldSelector",
76296          "type": "string",
76297          "uniqueItems": true
76298        },
76299        {
76300          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76301          "in": "query",
76302          "name": "labelSelector",
76303          "type": "string",
76304          "uniqueItems": true
76305        },
76306        {
76307          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76308          "in": "query",
76309          "name": "limit",
76310          "type": "integer",
76311          "uniqueItems": true
76312        },
76313        {
76314          "description": "If 'true', then the output is pretty printed.",
76315          "in": "query",
76316          "name": "pretty",
76317          "type": "string",
76318          "uniqueItems": true
76319        },
76320        {
76321          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
76322          "in": "query",
76323          "name": "resourceVersion",
76324          "type": "string",
76325          "uniqueItems": true
76326        },
76327        {
76328          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76329          "in": "query",
76330          "name": "timeoutSeconds",
76331          "type": "integer",
76332          "uniqueItems": true
76333        },
76334        {
76335          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76336          "in": "query",
76337          "name": "watch",
76338          "type": "boolean",
76339          "uniqueItems": true
76340        }
76341      ]
76342    },
76343    "/apis/extensions/v1beta1/ingresses": {
76344      "get": {
76345        "consumes": [
76346          "*/*"
76347        ],
76348        "description": "list or watch objects of kind Ingress",
76349        "operationId": "listExtensionsV1beta1IngressForAllNamespaces",
76350        "produces": [
76351          "application/json",
76352          "application/yaml",
76353          "application/vnd.kubernetes.protobuf",
76354          "application/json;stream=watch",
76355          "application/vnd.kubernetes.protobuf;stream=watch"
76356        ],
76357        "responses": {
76358          "200": {
76359            "description": "OK",
76360            "schema": {
76361              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressList"
76362            }
76363          },
76364          "401": {
76365            "description": "Unauthorized"
76366          }
76367        },
76368        "schemes": [
76369          "https"
76370        ],
76371        "tags": [
76372          "extensions_v1beta1"
76373        ],
76374        "x-kubernetes-action": "list",
76375        "x-kubernetes-group-version-kind": {
76376          "group": "extensions",
76377          "kind": "Ingress",
76378          "version": "v1beta1"
76379        }
76380      },
76381      "parameters": [
76382        {
76383          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
76384          "in": "query",
76385          "name": "allowWatchBookmarks",
76386          "type": "boolean",
76387          "uniqueItems": true
76388        },
76389        {
76390          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76391          "in": "query",
76392          "name": "continue",
76393          "type": "string",
76394          "uniqueItems": true
76395        },
76396        {
76397          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76398          "in": "query",
76399          "name": "fieldSelector",
76400          "type": "string",
76401          "uniqueItems": true
76402        },
76403        {
76404          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76405          "in": "query",
76406          "name": "labelSelector",
76407          "type": "string",
76408          "uniqueItems": true
76409        },
76410        {
76411          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76412          "in": "query",
76413          "name": "limit",
76414          "type": "integer",
76415          "uniqueItems": true
76416        },
76417        {
76418          "description": "If 'true', then the output is pretty printed.",
76419          "in": "query",
76420          "name": "pretty",
76421          "type": "string",
76422          "uniqueItems": true
76423        },
76424        {
76425          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
76426          "in": "query",
76427          "name": "resourceVersion",
76428          "type": "string",
76429          "uniqueItems": true
76430        },
76431        {
76432          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76433          "in": "query",
76434          "name": "timeoutSeconds",
76435          "type": "integer",
76436          "uniqueItems": true
76437        },
76438        {
76439          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76440          "in": "query",
76441          "name": "watch",
76442          "type": "boolean",
76443          "uniqueItems": true
76444        }
76445      ]
76446    },
76447    "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets": {
76448      "delete": {
76449        "consumes": [
76450          "*/*"
76451        ],
76452        "description": "delete collection of DaemonSet",
76453        "operationId": "deleteExtensionsV1beta1CollectionNamespacedDaemonSet",
76454        "parameters": [
76455          {
76456            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
76457            "in": "query",
76458            "name": "allowWatchBookmarks",
76459            "type": "boolean",
76460            "uniqueItems": true
76461          },
76462          {
76463            "in": "body",
76464            "name": "body",
76465            "schema": {
76466              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76467            }
76468          },
76469          {
76470            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76471            "in": "query",
76472            "name": "continue",
76473            "type": "string",
76474            "uniqueItems": true
76475          },
76476          {
76477            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76478            "in": "query",
76479            "name": "dryRun",
76480            "type": "string",
76481            "uniqueItems": true
76482          },
76483          {
76484            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76485            "in": "query",
76486            "name": "fieldSelector",
76487            "type": "string",
76488            "uniqueItems": true
76489          },
76490          {
76491            "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.",
76492            "in": "query",
76493            "name": "gracePeriodSeconds",
76494            "type": "integer",
76495            "uniqueItems": true
76496          },
76497          {
76498            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76499            "in": "query",
76500            "name": "labelSelector",
76501            "type": "string",
76502            "uniqueItems": true
76503          },
76504          {
76505            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76506            "in": "query",
76507            "name": "limit",
76508            "type": "integer",
76509            "uniqueItems": true
76510          },
76511          {
76512            "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.",
76513            "in": "query",
76514            "name": "orphanDependents",
76515            "type": "boolean",
76516            "uniqueItems": true
76517          },
76518          {
76519            "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.",
76520            "in": "query",
76521            "name": "propagationPolicy",
76522            "type": "string",
76523            "uniqueItems": true
76524          },
76525          {
76526            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
76527            "in": "query",
76528            "name": "resourceVersion",
76529            "type": "string",
76530            "uniqueItems": true
76531          },
76532          {
76533            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76534            "in": "query",
76535            "name": "timeoutSeconds",
76536            "type": "integer",
76537            "uniqueItems": true
76538          },
76539          {
76540            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76541            "in": "query",
76542            "name": "watch",
76543            "type": "boolean",
76544            "uniqueItems": true
76545          }
76546        ],
76547        "produces": [
76548          "application/json",
76549          "application/yaml",
76550          "application/vnd.kubernetes.protobuf"
76551        ],
76552        "responses": {
76553          "200": {
76554            "description": "OK",
76555            "schema": {
76556              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76557            }
76558          },
76559          "401": {
76560            "description": "Unauthorized"
76561          }
76562        },
76563        "schemes": [
76564          "https"
76565        ],
76566        "tags": [
76567          "extensions_v1beta1"
76568        ],
76569        "x-kubernetes-action": "deletecollection",
76570        "x-kubernetes-group-version-kind": {
76571          "group": "extensions",
76572          "kind": "DaemonSet",
76573          "version": "v1beta1"
76574        }
76575      },
76576      "get": {
76577        "consumes": [
76578          "*/*"
76579        ],
76580        "description": "list or watch objects of kind DaemonSet",
76581        "operationId": "listExtensionsV1beta1NamespacedDaemonSet",
76582        "parameters": [
76583          {
76584            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
76585            "in": "query",
76586            "name": "allowWatchBookmarks",
76587            "type": "boolean",
76588            "uniqueItems": true
76589          },
76590          {
76591            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
76592            "in": "query",
76593            "name": "continue",
76594            "type": "string",
76595            "uniqueItems": true
76596          },
76597          {
76598            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
76599            "in": "query",
76600            "name": "fieldSelector",
76601            "type": "string",
76602            "uniqueItems": true
76603          },
76604          {
76605            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
76606            "in": "query",
76607            "name": "labelSelector",
76608            "type": "string",
76609            "uniqueItems": true
76610          },
76611          {
76612            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
76613            "in": "query",
76614            "name": "limit",
76615            "type": "integer",
76616            "uniqueItems": true
76617          },
76618          {
76619            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
76620            "in": "query",
76621            "name": "resourceVersion",
76622            "type": "string",
76623            "uniqueItems": true
76624          },
76625          {
76626            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
76627            "in": "query",
76628            "name": "timeoutSeconds",
76629            "type": "integer",
76630            "uniqueItems": true
76631          },
76632          {
76633            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
76634            "in": "query",
76635            "name": "watch",
76636            "type": "boolean",
76637            "uniqueItems": true
76638          }
76639        ],
76640        "produces": [
76641          "application/json",
76642          "application/yaml",
76643          "application/vnd.kubernetes.protobuf",
76644          "application/json;stream=watch",
76645          "application/vnd.kubernetes.protobuf;stream=watch"
76646        ],
76647        "responses": {
76648          "200": {
76649            "description": "OK",
76650            "schema": {
76651              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSetList"
76652            }
76653          },
76654          "401": {
76655            "description": "Unauthorized"
76656          }
76657        },
76658        "schemes": [
76659          "https"
76660        ],
76661        "tags": [
76662          "extensions_v1beta1"
76663        ],
76664        "x-kubernetes-action": "list",
76665        "x-kubernetes-group-version-kind": {
76666          "group": "extensions",
76667          "kind": "DaemonSet",
76668          "version": "v1beta1"
76669        }
76670      },
76671      "parameters": [
76672        {
76673          "description": "object name and auth scope, such as for teams and projects",
76674          "in": "path",
76675          "name": "namespace",
76676          "required": true,
76677          "type": "string",
76678          "uniqueItems": true
76679        },
76680        {
76681          "description": "If 'true', then the output is pretty printed.",
76682          "in": "query",
76683          "name": "pretty",
76684          "type": "string",
76685          "uniqueItems": true
76686        }
76687      ],
76688      "post": {
76689        "consumes": [
76690          "*/*"
76691        ],
76692        "description": "create a DaemonSet",
76693        "operationId": "createExtensionsV1beta1NamespacedDaemonSet",
76694        "parameters": [
76695          {
76696            "in": "body",
76697            "name": "body",
76698            "required": true,
76699            "schema": {
76700              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76701            }
76702          },
76703          {
76704            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76705            "in": "query",
76706            "name": "dryRun",
76707            "type": "string",
76708            "uniqueItems": true
76709          },
76710          {
76711            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
76712            "in": "query",
76713            "name": "fieldManager",
76714            "type": "string",
76715            "uniqueItems": true
76716          }
76717        ],
76718        "produces": [
76719          "application/json",
76720          "application/yaml",
76721          "application/vnd.kubernetes.protobuf"
76722        ],
76723        "responses": {
76724          "200": {
76725            "description": "OK",
76726            "schema": {
76727              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76728            }
76729          },
76730          "201": {
76731            "description": "Created",
76732            "schema": {
76733              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76734            }
76735          },
76736          "202": {
76737            "description": "Accepted",
76738            "schema": {
76739              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76740            }
76741          },
76742          "401": {
76743            "description": "Unauthorized"
76744          }
76745        },
76746        "schemes": [
76747          "https"
76748        ],
76749        "tags": [
76750          "extensions_v1beta1"
76751        ],
76752        "x-kubernetes-action": "post",
76753        "x-kubernetes-group-version-kind": {
76754          "group": "extensions",
76755          "kind": "DaemonSet",
76756          "version": "v1beta1"
76757        }
76758      }
76759    },
76760    "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}": {
76761      "delete": {
76762        "consumes": [
76763          "*/*"
76764        ],
76765        "description": "delete a DaemonSet",
76766        "operationId": "deleteExtensionsV1beta1NamespacedDaemonSet",
76767        "parameters": [
76768          {
76769            "in": "body",
76770            "name": "body",
76771            "schema": {
76772              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
76773            }
76774          },
76775          {
76776            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76777            "in": "query",
76778            "name": "dryRun",
76779            "type": "string",
76780            "uniqueItems": true
76781          },
76782          {
76783            "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.",
76784            "in": "query",
76785            "name": "gracePeriodSeconds",
76786            "type": "integer",
76787            "uniqueItems": true
76788          },
76789          {
76790            "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.",
76791            "in": "query",
76792            "name": "orphanDependents",
76793            "type": "boolean",
76794            "uniqueItems": true
76795          },
76796          {
76797            "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.",
76798            "in": "query",
76799            "name": "propagationPolicy",
76800            "type": "string",
76801            "uniqueItems": true
76802          }
76803        ],
76804        "produces": [
76805          "application/json",
76806          "application/yaml",
76807          "application/vnd.kubernetes.protobuf"
76808        ],
76809        "responses": {
76810          "200": {
76811            "description": "OK",
76812            "schema": {
76813              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76814            }
76815          },
76816          "202": {
76817            "description": "Accepted",
76818            "schema": {
76819              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
76820            }
76821          },
76822          "401": {
76823            "description": "Unauthorized"
76824          }
76825        },
76826        "schemes": [
76827          "https"
76828        ],
76829        "tags": [
76830          "extensions_v1beta1"
76831        ],
76832        "x-kubernetes-action": "delete",
76833        "x-kubernetes-group-version-kind": {
76834          "group": "extensions",
76835          "kind": "DaemonSet",
76836          "version": "v1beta1"
76837        }
76838      },
76839      "get": {
76840        "consumes": [
76841          "*/*"
76842        ],
76843        "description": "read the specified DaemonSet",
76844        "operationId": "readExtensionsV1beta1NamespacedDaemonSet",
76845        "parameters": [
76846          {
76847            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
76848            "in": "query",
76849            "name": "exact",
76850            "type": "boolean",
76851            "uniqueItems": true
76852          },
76853          {
76854            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
76855            "in": "query",
76856            "name": "export",
76857            "type": "boolean",
76858            "uniqueItems": true
76859          }
76860        ],
76861        "produces": [
76862          "application/json",
76863          "application/yaml",
76864          "application/vnd.kubernetes.protobuf"
76865        ],
76866        "responses": {
76867          "200": {
76868            "description": "OK",
76869            "schema": {
76870              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76871            }
76872          },
76873          "401": {
76874            "description": "Unauthorized"
76875          }
76876        },
76877        "schemes": [
76878          "https"
76879        ],
76880        "tags": [
76881          "extensions_v1beta1"
76882        ],
76883        "x-kubernetes-action": "get",
76884        "x-kubernetes-group-version-kind": {
76885          "group": "extensions",
76886          "kind": "DaemonSet",
76887          "version": "v1beta1"
76888        }
76889      },
76890      "parameters": [
76891        {
76892          "description": "name of the DaemonSet",
76893          "in": "path",
76894          "name": "name",
76895          "required": true,
76896          "type": "string",
76897          "uniqueItems": true
76898        },
76899        {
76900          "description": "object name and auth scope, such as for teams and projects",
76901          "in": "path",
76902          "name": "namespace",
76903          "required": true,
76904          "type": "string",
76905          "uniqueItems": true
76906        },
76907        {
76908          "description": "If 'true', then the output is pretty printed.",
76909          "in": "query",
76910          "name": "pretty",
76911          "type": "string",
76912          "uniqueItems": true
76913        }
76914      ],
76915      "patch": {
76916        "consumes": [
76917          "application/json-patch+json",
76918          "application/merge-patch+json",
76919          "application/strategic-merge-patch+json"
76920        ],
76921        "description": "partially update the specified DaemonSet",
76922        "operationId": "patchExtensionsV1beta1NamespacedDaemonSet",
76923        "parameters": [
76924          {
76925            "in": "body",
76926            "name": "body",
76927            "required": true,
76928            "schema": {
76929              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
76930            }
76931          },
76932          {
76933            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
76934            "in": "query",
76935            "name": "dryRun",
76936            "type": "string",
76937            "uniqueItems": true
76938          },
76939          {
76940            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
76941            "in": "query",
76942            "name": "fieldManager",
76943            "type": "string",
76944            "uniqueItems": true
76945          },
76946          {
76947            "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.",
76948            "in": "query",
76949            "name": "force",
76950            "type": "boolean",
76951            "uniqueItems": true
76952          }
76953        ],
76954        "produces": [
76955          "application/json",
76956          "application/yaml",
76957          "application/vnd.kubernetes.protobuf"
76958        ],
76959        "responses": {
76960          "200": {
76961            "description": "OK",
76962            "schema": {
76963              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76964            }
76965          },
76966          "401": {
76967            "description": "Unauthorized"
76968          }
76969        },
76970        "schemes": [
76971          "https"
76972        ],
76973        "tags": [
76974          "extensions_v1beta1"
76975        ],
76976        "x-kubernetes-action": "patch",
76977        "x-kubernetes-group-version-kind": {
76978          "group": "extensions",
76979          "kind": "DaemonSet",
76980          "version": "v1beta1"
76981        }
76982      },
76983      "put": {
76984        "consumes": [
76985          "*/*"
76986        ],
76987        "description": "replace the specified DaemonSet",
76988        "operationId": "replaceExtensionsV1beta1NamespacedDaemonSet",
76989        "parameters": [
76990          {
76991            "in": "body",
76992            "name": "body",
76993            "required": true,
76994            "schema": {
76995              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
76996            }
76997          },
76998          {
76999            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77000            "in": "query",
77001            "name": "dryRun",
77002            "type": "string",
77003            "uniqueItems": true
77004          },
77005          {
77006            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77007            "in": "query",
77008            "name": "fieldManager",
77009            "type": "string",
77010            "uniqueItems": true
77011          }
77012        ],
77013        "produces": [
77014          "application/json",
77015          "application/yaml",
77016          "application/vnd.kubernetes.protobuf"
77017        ],
77018        "responses": {
77019          "200": {
77020            "description": "OK",
77021            "schema": {
77022              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77023            }
77024          },
77025          "201": {
77026            "description": "Created",
77027            "schema": {
77028              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77029            }
77030          },
77031          "401": {
77032            "description": "Unauthorized"
77033          }
77034        },
77035        "schemes": [
77036          "https"
77037        ],
77038        "tags": [
77039          "extensions_v1beta1"
77040        ],
77041        "x-kubernetes-action": "put",
77042        "x-kubernetes-group-version-kind": {
77043          "group": "extensions",
77044          "kind": "DaemonSet",
77045          "version": "v1beta1"
77046        }
77047      }
77048    },
77049    "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status": {
77050      "get": {
77051        "consumes": [
77052          "*/*"
77053        ],
77054        "description": "read status of the specified DaemonSet",
77055        "operationId": "readExtensionsV1beta1NamespacedDaemonSetStatus",
77056        "produces": [
77057          "application/json",
77058          "application/yaml",
77059          "application/vnd.kubernetes.protobuf"
77060        ],
77061        "responses": {
77062          "200": {
77063            "description": "OK",
77064            "schema": {
77065              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77066            }
77067          },
77068          "401": {
77069            "description": "Unauthorized"
77070          }
77071        },
77072        "schemes": [
77073          "https"
77074        ],
77075        "tags": [
77076          "extensions_v1beta1"
77077        ],
77078        "x-kubernetes-action": "get",
77079        "x-kubernetes-group-version-kind": {
77080          "group": "extensions",
77081          "kind": "DaemonSet",
77082          "version": "v1beta1"
77083        }
77084      },
77085      "parameters": [
77086        {
77087          "description": "name of the DaemonSet",
77088          "in": "path",
77089          "name": "name",
77090          "required": true,
77091          "type": "string",
77092          "uniqueItems": true
77093        },
77094        {
77095          "description": "object name and auth scope, such as for teams and projects",
77096          "in": "path",
77097          "name": "namespace",
77098          "required": true,
77099          "type": "string",
77100          "uniqueItems": true
77101        },
77102        {
77103          "description": "If 'true', then the output is pretty printed.",
77104          "in": "query",
77105          "name": "pretty",
77106          "type": "string",
77107          "uniqueItems": true
77108        }
77109      ],
77110      "patch": {
77111        "consumes": [
77112          "application/json-patch+json",
77113          "application/merge-patch+json",
77114          "application/strategic-merge-patch+json"
77115        ],
77116        "description": "partially update status of the specified DaemonSet",
77117        "operationId": "patchExtensionsV1beta1NamespacedDaemonSetStatus",
77118        "parameters": [
77119          {
77120            "in": "body",
77121            "name": "body",
77122            "required": true,
77123            "schema": {
77124              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
77125            }
77126          },
77127          {
77128            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77129            "in": "query",
77130            "name": "dryRun",
77131            "type": "string",
77132            "uniqueItems": true
77133          },
77134          {
77135            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
77136            "in": "query",
77137            "name": "fieldManager",
77138            "type": "string",
77139            "uniqueItems": true
77140          },
77141          {
77142            "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.",
77143            "in": "query",
77144            "name": "force",
77145            "type": "boolean",
77146            "uniqueItems": true
77147          }
77148        ],
77149        "produces": [
77150          "application/json",
77151          "application/yaml",
77152          "application/vnd.kubernetes.protobuf"
77153        ],
77154        "responses": {
77155          "200": {
77156            "description": "OK",
77157            "schema": {
77158              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77159            }
77160          },
77161          "401": {
77162            "description": "Unauthorized"
77163          }
77164        },
77165        "schemes": [
77166          "https"
77167        ],
77168        "tags": [
77169          "extensions_v1beta1"
77170        ],
77171        "x-kubernetes-action": "patch",
77172        "x-kubernetes-group-version-kind": {
77173          "group": "extensions",
77174          "kind": "DaemonSet",
77175          "version": "v1beta1"
77176        }
77177      },
77178      "put": {
77179        "consumes": [
77180          "*/*"
77181        ],
77182        "description": "replace status of the specified DaemonSet",
77183        "operationId": "replaceExtensionsV1beta1NamespacedDaemonSetStatus",
77184        "parameters": [
77185          {
77186            "in": "body",
77187            "name": "body",
77188            "required": true,
77189            "schema": {
77190              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77191            }
77192          },
77193          {
77194            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77195            "in": "query",
77196            "name": "dryRun",
77197            "type": "string",
77198            "uniqueItems": true
77199          },
77200          {
77201            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77202            "in": "query",
77203            "name": "fieldManager",
77204            "type": "string",
77205            "uniqueItems": true
77206          }
77207        ],
77208        "produces": [
77209          "application/json",
77210          "application/yaml",
77211          "application/vnd.kubernetes.protobuf"
77212        ],
77213        "responses": {
77214          "200": {
77215            "description": "OK",
77216            "schema": {
77217              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77218            }
77219          },
77220          "201": {
77221            "description": "Created",
77222            "schema": {
77223              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet"
77224            }
77225          },
77226          "401": {
77227            "description": "Unauthorized"
77228          }
77229        },
77230        "schemes": [
77231          "https"
77232        ],
77233        "tags": [
77234          "extensions_v1beta1"
77235        ],
77236        "x-kubernetes-action": "put",
77237        "x-kubernetes-group-version-kind": {
77238          "group": "extensions",
77239          "kind": "DaemonSet",
77240          "version": "v1beta1"
77241        }
77242      }
77243    },
77244    "/apis/extensions/v1beta1/namespaces/{namespace}/deployments": {
77245      "delete": {
77246        "consumes": [
77247          "*/*"
77248        ],
77249        "description": "delete collection of Deployment",
77250        "operationId": "deleteExtensionsV1beta1CollectionNamespacedDeployment",
77251        "parameters": [
77252          {
77253            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
77254            "in": "query",
77255            "name": "allowWatchBookmarks",
77256            "type": "boolean",
77257            "uniqueItems": true
77258          },
77259          {
77260            "in": "body",
77261            "name": "body",
77262            "schema": {
77263              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77264            }
77265          },
77266          {
77267            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77268            "in": "query",
77269            "name": "continue",
77270            "type": "string",
77271            "uniqueItems": true
77272          },
77273          {
77274            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77275            "in": "query",
77276            "name": "dryRun",
77277            "type": "string",
77278            "uniqueItems": true
77279          },
77280          {
77281            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77282            "in": "query",
77283            "name": "fieldSelector",
77284            "type": "string",
77285            "uniqueItems": true
77286          },
77287          {
77288            "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.",
77289            "in": "query",
77290            "name": "gracePeriodSeconds",
77291            "type": "integer",
77292            "uniqueItems": true
77293          },
77294          {
77295            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77296            "in": "query",
77297            "name": "labelSelector",
77298            "type": "string",
77299            "uniqueItems": true
77300          },
77301          {
77302            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77303            "in": "query",
77304            "name": "limit",
77305            "type": "integer",
77306            "uniqueItems": true
77307          },
77308          {
77309            "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.",
77310            "in": "query",
77311            "name": "orphanDependents",
77312            "type": "boolean",
77313            "uniqueItems": true
77314          },
77315          {
77316            "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.",
77317            "in": "query",
77318            "name": "propagationPolicy",
77319            "type": "string",
77320            "uniqueItems": true
77321          },
77322          {
77323            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
77324            "in": "query",
77325            "name": "resourceVersion",
77326            "type": "string",
77327            "uniqueItems": true
77328          },
77329          {
77330            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77331            "in": "query",
77332            "name": "timeoutSeconds",
77333            "type": "integer",
77334            "uniqueItems": true
77335          },
77336          {
77337            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77338            "in": "query",
77339            "name": "watch",
77340            "type": "boolean",
77341            "uniqueItems": true
77342          }
77343        ],
77344        "produces": [
77345          "application/json",
77346          "application/yaml",
77347          "application/vnd.kubernetes.protobuf"
77348        ],
77349        "responses": {
77350          "200": {
77351            "description": "OK",
77352            "schema": {
77353              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77354            }
77355          },
77356          "401": {
77357            "description": "Unauthorized"
77358          }
77359        },
77360        "schemes": [
77361          "https"
77362        ],
77363        "tags": [
77364          "extensions_v1beta1"
77365        ],
77366        "x-kubernetes-action": "deletecollection",
77367        "x-kubernetes-group-version-kind": {
77368          "group": "extensions",
77369          "kind": "Deployment",
77370          "version": "v1beta1"
77371        }
77372      },
77373      "get": {
77374        "consumes": [
77375          "*/*"
77376        ],
77377        "description": "list or watch objects of kind Deployment",
77378        "operationId": "listExtensionsV1beta1NamespacedDeployment",
77379        "parameters": [
77380          {
77381            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
77382            "in": "query",
77383            "name": "allowWatchBookmarks",
77384            "type": "boolean",
77385            "uniqueItems": true
77386          },
77387          {
77388            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
77389            "in": "query",
77390            "name": "continue",
77391            "type": "string",
77392            "uniqueItems": true
77393          },
77394          {
77395            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
77396            "in": "query",
77397            "name": "fieldSelector",
77398            "type": "string",
77399            "uniqueItems": true
77400          },
77401          {
77402            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
77403            "in": "query",
77404            "name": "labelSelector",
77405            "type": "string",
77406            "uniqueItems": true
77407          },
77408          {
77409            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
77410            "in": "query",
77411            "name": "limit",
77412            "type": "integer",
77413            "uniqueItems": true
77414          },
77415          {
77416            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
77417            "in": "query",
77418            "name": "resourceVersion",
77419            "type": "string",
77420            "uniqueItems": true
77421          },
77422          {
77423            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
77424            "in": "query",
77425            "name": "timeoutSeconds",
77426            "type": "integer",
77427            "uniqueItems": true
77428          },
77429          {
77430            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
77431            "in": "query",
77432            "name": "watch",
77433            "type": "boolean",
77434            "uniqueItems": true
77435          }
77436        ],
77437        "produces": [
77438          "application/json",
77439          "application/yaml",
77440          "application/vnd.kubernetes.protobuf",
77441          "application/json;stream=watch",
77442          "application/vnd.kubernetes.protobuf;stream=watch"
77443        ],
77444        "responses": {
77445          "200": {
77446            "description": "OK",
77447            "schema": {
77448              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentList"
77449            }
77450          },
77451          "401": {
77452            "description": "Unauthorized"
77453          }
77454        },
77455        "schemes": [
77456          "https"
77457        ],
77458        "tags": [
77459          "extensions_v1beta1"
77460        ],
77461        "x-kubernetes-action": "list",
77462        "x-kubernetes-group-version-kind": {
77463          "group": "extensions",
77464          "kind": "Deployment",
77465          "version": "v1beta1"
77466        }
77467      },
77468      "parameters": [
77469        {
77470          "description": "object name and auth scope, such as for teams and projects",
77471          "in": "path",
77472          "name": "namespace",
77473          "required": true,
77474          "type": "string",
77475          "uniqueItems": true
77476        },
77477        {
77478          "description": "If 'true', then the output is pretty printed.",
77479          "in": "query",
77480          "name": "pretty",
77481          "type": "string",
77482          "uniqueItems": true
77483        }
77484      ],
77485      "post": {
77486        "consumes": [
77487          "*/*"
77488        ],
77489        "description": "create a Deployment",
77490        "operationId": "createExtensionsV1beta1NamespacedDeployment",
77491        "parameters": [
77492          {
77493            "in": "body",
77494            "name": "body",
77495            "required": true,
77496            "schema": {
77497              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77498            }
77499          },
77500          {
77501            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77502            "in": "query",
77503            "name": "dryRun",
77504            "type": "string",
77505            "uniqueItems": true
77506          },
77507          {
77508            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77509            "in": "query",
77510            "name": "fieldManager",
77511            "type": "string",
77512            "uniqueItems": true
77513          }
77514        ],
77515        "produces": [
77516          "application/json",
77517          "application/yaml",
77518          "application/vnd.kubernetes.protobuf"
77519        ],
77520        "responses": {
77521          "200": {
77522            "description": "OK",
77523            "schema": {
77524              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77525            }
77526          },
77527          "201": {
77528            "description": "Created",
77529            "schema": {
77530              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77531            }
77532          },
77533          "202": {
77534            "description": "Accepted",
77535            "schema": {
77536              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77537            }
77538          },
77539          "401": {
77540            "description": "Unauthorized"
77541          }
77542        },
77543        "schemes": [
77544          "https"
77545        ],
77546        "tags": [
77547          "extensions_v1beta1"
77548        ],
77549        "x-kubernetes-action": "post",
77550        "x-kubernetes-group-version-kind": {
77551          "group": "extensions",
77552          "kind": "Deployment",
77553          "version": "v1beta1"
77554        }
77555      }
77556    },
77557    "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}": {
77558      "delete": {
77559        "consumes": [
77560          "*/*"
77561        ],
77562        "description": "delete a Deployment",
77563        "operationId": "deleteExtensionsV1beta1NamespacedDeployment",
77564        "parameters": [
77565          {
77566            "in": "body",
77567            "name": "body",
77568            "schema": {
77569              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
77570            }
77571          },
77572          {
77573            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77574            "in": "query",
77575            "name": "dryRun",
77576            "type": "string",
77577            "uniqueItems": true
77578          },
77579          {
77580            "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.",
77581            "in": "query",
77582            "name": "gracePeriodSeconds",
77583            "type": "integer",
77584            "uniqueItems": true
77585          },
77586          {
77587            "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.",
77588            "in": "query",
77589            "name": "orphanDependents",
77590            "type": "boolean",
77591            "uniqueItems": true
77592          },
77593          {
77594            "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.",
77595            "in": "query",
77596            "name": "propagationPolicy",
77597            "type": "string",
77598            "uniqueItems": true
77599          }
77600        ],
77601        "produces": [
77602          "application/json",
77603          "application/yaml",
77604          "application/vnd.kubernetes.protobuf"
77605        ],
77606        "responses": {
77607          "200": {
77608            "description": "OK",
77609            "schema": {
77610              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77611            }
77612          },
77613          "202": {
77614            "description": "Accepted",
77615            "schema": {
77616              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77617            }
77618          },
77619          "401": {
77620            "description": "Unauthorized"
77621          }
77622        },
77623        "schemes": [
77624          "https"
77625        ],
77626        "tags": [
77627          "extensions_v1beta1"
77628        ],
77629        "x-kubernetes-action": "delete",
77630        "x-kubernetes-group-version-kind": {
77631          "group": "extensions",
77632          "kind": "Deployment",
77633          "version": "v1beta1"
77634        }
77635      },
77636      "get": {
77637        "consumes": [
77638          "*/*"
77639        ],
77640        "description": "read the specified Deployment",
77641        "operationId": "readExtensionsV1beta1NamespacedDeployment",
77642        "parameters": [
77643          {
77644            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
77645            "in": "query",
77646            "name": "exact",
77647            "type": "boolean",
77648            "uniqueItems": true
77649          },
77650          {
77651            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
77652            "in": "query",
77653            "name": "export",
77654            "type": "boolean",
77655            "uniqueItems": true
77656          }
77657        ],
77658        "produces": [
77659          "application/json",
77660          "application/yaml",
77661          "application/vnd.kubernetes.protobuf"
77662        ],
77663        "responses": {
77664          "200": {
77665            "description": "OK",
77666            "schema": {
77667              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77668            }
77669          },
77670          "401": {
77671            "description": "Unauthorized"
77672          }
77673        },
77674        "schemes": [
77675          "https"
77676        ],
77677        "tags": [
77678          "extensions_v1beta1"
77679        ],
77680        "x-kubernetes-action": "get",
77681        "x-kubernetes-group-version-kind": {
77682          "group": "extensions",
77683          "kind": "Deployment",
77684          "version": "v1beta1"
77685        }
77686      },
77687      "parameters": [
77688        {
77689          "description": "name of the Deployment",
77690          "in": "path",
77691          "name": "name",
77692          "required": true,
77693          "type": "string",
77694          "uniqueItems": true
77695        },
77696        {
77697          "description": "object name and auth scope, such as for teams and projects",
77698          "in": "path",
77699          "name": "namespace",
77700          "required": true,
77701          "type": "string",
77702          "uniqueItems": true
77703        },
77704        {
77705          "description": "If 'true', then the output is pretty printed.",
77706          "in": "query",
77707          "name": "pretty",
77708          "type": "string",
77709          "uniqueItems": true
77710        }
77711      ],
77712      "patch": {
77713        "consumes": [
77714          "application/json-patch+json",
77715          "application/merge-patch+json",
77716          "application/strategic-merge-patch+json"
77717        ],
77718        "description": "partially update the specified Deployment",
77719        "operationId": "patchExtensionsV1beta1NamespacedDeployment",
77720        "parameters": [
77721          {
77722            "in": "body",
77723            "name": "body",
77724            "required": true,
77725            "schema": {
77726              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
77727            }
77728          },
77729          {
77730            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77731            "in": "query",
77732            "name": "dryRun",
77733            "type": "string",
77734            "uniqueItems": true
77735          },
77736          {
77737            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
77738            "in": "query",
77739            "name": "fieldManager",
77740            "type": "string",
77741            "uniqueItems": true
77742          },
77743          {
77744            "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.",
77745            "in": "query",
77746            "name": "force",
77747            "type": "boolean",
77748            "uniqueItems": true
77749          }
77750        ],
77751        "produces": [
77752          "application/json",
77753          "application/yaml",
77754          "application/vnd.kubernetes.protobuf"
77755        ],
77756        "responses": {
77757          "200": {
77758            "description": "OK",
77759            "schema": {
77760              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77761            }
77762          },
77763          "401": {
77764            "description": "Unauthorized"
77765          }
77766        },
77767        "schemes": [
77768          "https"
77769        ],
77770        "tags": [
77771          "extensions_v1beta1"
77772        ],
77773        "x-kubernetes-action": "patch",
77774        "x-kubernetes-group-version-kind": {
77775          "group": "extensions",
77776          "kind": "Deployment",
77777          "version": "v1beta1"
77778        }
77779      },
77780      "put": {
77781        "consumes": [
77782          "*/*"
77783        ],
77784        "description": "replace the specified Deployment",
77785        "operationId": "replaceExtensionsV1beta1NamespacedDeployment",
77786        "parameters": [
77787          {
77788            "in": "body",
77789            "name": "body",
77790            "required": true,
77791            "schema": {
77792              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77793            }
77794          },
77795          {
77796            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77797            "in": "query",
77798            "name": "dryRun",
77799            "type": "string",
77800            "uniqueItems": true
77801          },
77802          {
77803            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77804            "in": "query",
77805            "name": "fieldManager",
77806            "type": "string",
77807            "uniqueItems": true
77808          }
77809        ],
77810        "produces": [
77811          "application/json",
77812          "application/yaml",
77813          "application/vnd.kubernetes.protobuf"
77814        ],
77815        "responses": {
77816          "200": {
77817            "description": "OK",
77818            "schema": {
77819              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77820            }
77821          },
77822          "201": {
77823            "description": "Created",
77824            "schema": {
77825              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
77826            }
77827          },
77828          "401": {
77829            "description": "Unauthorized"
77830          }
77831        },
77832        "schemes": [
77833          "https"
77834        ],
77835        "tags": [
77836          "extensions_v1beta1"
77837        ],
77838        "x-kubernetes-action": "put",
77839        "x-kubernetes-group-version-kind": {
77840          "group": "extensions",
77841          "kind": "Deployment",
77842          "version": "v1beta1"
77843        }
77844      }
77845    },
77846    "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback": {
77847      "parameters": [
77848        {
77849          "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
77850          "in": "query",
77851          "name": "dryRun",
77852          "type": "string",
77853          "uniqueItems": true
77854        },
77855        {
77856          "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
77857          "in": "query",
77858          "name": "fieldManager",
77859          "type": "string",
77860          "uniqueItems": true
77861        },
77862        {
77863          "description": "name of the DeploymentRollback",
77864          "in": "path",
77865          "name": "name",
77866          "required": true,
77867          "type": "string",
77868          "uniqueItems": true
77869        },
77870        {
77871          "description": "object name and auth scope, such as for teams and projects",
77872          "in": "path",
77873          "name": "namespace",
77874          "required": true,
77875          "type": "string",
77876          "uniqueItems": true
77877        },
77878        {
77879          "description": "If 'true', then the output is pretty printed.",
77880          "in": "query",
77881          "name": "pretty",
77882          "type": "string",
77883          "uniqueItems": true
77884        }
77885      ],
77886      "post": {
77887        "consumes": [
77888          "*/*"
77889        ],
77890        "description": "create rollback of a Deployment",
77891        "operationId": "createExtensionsV1beta1NamespacedDeploymentRollback",
77892        "parameters": [
77893          {
77894            "in": "body",
77895            "name": "body",
77896            "required": true,
77897            "schema": {
77898              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentRollback"
77899            }
77900          }
77901        ],
77902        "produces": [
77903          "application/json",
77904          "application/yaml",
77905          "application/vnd.kubernetes.protobuf"
77906        ],
77907        "responses": {
77908          "200": {
77909            "description": "OK",
77910            "schema": {
77911              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77912            }
77913          },
77914          "201": {
77915            "description": "Created",
77916            "schema": {
77917              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77918            }
77919          },
77920          "202": {
77921            "description": "Accepted",
77922            "schema": {
77923              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
77924            }
77925          },
77926          "401": {
77927            "description": "Unauthorized"
77928          }
77929        },
77930        "schemes": [
77931          "https"
77932        ],
77933        "tags": [
77934          "extensions_v1beta1"
77935        ],
77936        "x-kubernetes-action": "post",
77937        "x-kubernetes-group-version-kind": {
77938          "group": "extensions",
77939          "kind": "DeploymentRollback",
77940          "version": "v1beta1"
77941        }
77942      }
77943    },
77944    "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale": {
77945      "get": {
77946        "consumes": [
77947          "*/*"
77948        ],
77949        "description": "read scale of the specified Deployment",
77950        "operationId": "readExtensionsV1beta1NamespacedDeploymentScale",
77951        "produces": [
77952          "application/json",
77953          "application/yaml",
77954          "application/vnd.kubernetes.protobuf"
77955        ],
77956        "responses": {
77957          "200": {
77958            "description": "OK",
77959            "schema": {
77960              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
77961            }
77962          },
77963          "401": {
77964            "description": "Unauthorized"
77965          }
77966        },
77967        "schemes": [
77968          "https"
77969        ],
77970        "tags": [
77971          "extensions_v1beta1"
77972        ],
77973        "x-kubernetes-action": "get",
77974        "x-kubernetes-group-version-kind": {
77975          "group": "extensions",
77976          "kind": "Scale",
77977          "version": "v1beta1"
77978        }
77979      },
77980      "parameters": [
77981        {
77982          "description": "name of the Scale",
77983          "in": "path",
77984          "name": "name",
77985          "required": true,
77986          "type": "string",
77987          "uniqueItems": true
77988        },
77989        {
77990          "description": "object name and auth scope, such as for teams and projects",
77991          "in": "path",
77992          "name": "namespace",
77993          "required": true,
77994          "type": "string",
77995          "uniqueItems": true
77996        },
77997        {
77998          "description": "If 'true', then the output is pretty printed.",
77999          "in": "query",
78000          "name": "pretty",
78001          "type": "string",
78002          "uniqueItems": true
78003        }
78004      ],
78005      "patch": {
78006        "consumes": [
78007          "application/json-patch+json",
78008          "application/merge-patch+json",
78009          "application/strategic-merge-patch+json"
78010        ],
78011        "description": "partially update scale of the specified Deployment",
78012        "operationId": "patchExtensionsV1beta1NamespacedDeploymentScale",
78013        "parameters": [
78014          {
78015            "in": "body",
78016            "name": "body",
78017            "required": true,
78018            "schema": {
78019              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78020            }
78021          },
78022          {
78023            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78024            "in": "query",
78025            "name": "dryRun",
78026            "type": "string",
78027            "uniqueItems": true
78028          },
78029          {
78030            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
78031            "in": "query",
78032            "name": "fieldManager",
78033            "type": "string",
78034            "uniqueItems": true
78035          },
78036          {
78037            "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.",
78038            "in": "query",
78039            "name": "force",
78040            "type": "boolean",
78041            "uniqueItems": true
78042          }
78043        ],
78044        "produces": [
78045          "application/json",
78046          "application/yaml",
78047          "application/vnd.kubernetes.protobuf"
78048        ],
78049        "responses": {
78050          "200": {
78051            "description": "OK",
78052            "schema": {
78053              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
78054            }
78055          },
78056          "401": {
78057            "description": "Unauthorized"
78058          }
78059        },
78060        "schemes": [
78061          "https"
78062        ],
78063        "tags": [
78064          "extensions_v1beta1"
78065        ],
78066        "x-kubernetes-action": "patch",
78067        "x-kubernetes-group-version-kind": {
78068          "group": "extensions",
78069          "kind": "Scale",
78070          "version": "v1beta1"
78071        }
78072      },
78073      "put": {
78074        "consumes": [
78075          "*/*"
78076        ],
78077        "description": "replace scale of the specified Deployment",
78078        "operationId": "replaceExtensionsV1beta1NamespacedDeploymentScale",
78079        "parameters": [
78080          {
78081            "in": "body",
78082            "name": "body",
78083            "required": true,
78084            "schema": {
78085              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
78086            }
78087          },
78088          {
78089            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78090            "in": "query",
78091            "name": "dryRun",
78092            "type": "string",
78093            "uniqueItems": true
78094          },
78095          {
78096            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78097            "in": "query",
78098            "name": "fieldManager",
78099            "type": "string",
78100            "uniqueItems": true
78101          }
78102        ],
78103        "produces": [
78104          "application/json",
78105          "application/yaml",
78106          "application/vnd.kubernetes.protobuf"
78107        ],
78108        "responses": {
78109          "200": {
78110            "description": "OK",
78111            "schema": {
78112              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
78113            }
78114          },
78115          "201": {
78116            "description": "Created",
78117            "schema": {
78118              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
78119            }
78120          },
78121          "401": {
78122            "description": "Unauthorized"
78123          }
78124        },
78125        "schemes": [
78126          "https"
78127        ],
78128        "tags": [
78129          "extensions_v1beta1"
78130        ],
78131        "x-kubernetes-action": "put",
78132        "x-kubernetes-group-version-kind": {
78133          "group": "extensions",
78134          "kind": "Scale",
78135          "version": "v1beta1"
78136        }
78137      }
78138    },
78139    "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status": {
78140      "get": {
78141        "consumes": [
78142          "*/*"
78143        ],
78144        "description": "read status of the specified Deployment",
78145        "operationId": "readExtensionsV1beta1NamespacedDeploymentStatus",
78146        "produces": [
78147          "application/json",
78148          "application/yaml",
78149          "application/vnd.kubernetes.protobuf"
78150        ],
78151        "responses": {
78152          "200": {
78153            "description": "OK",
78154            "schema": {
78155              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
78156            }
78157          },
78158          "401": {
78159            "description": "Unauthorized"
78160          }
78161        },
78162        "schemes": [
78163          "https"
78164        ],
78165        "tags": [
78166          "extensions_v1beta1"
78167        ],
78168        "x-kubernetes-action": "get",
78169        "x-kubernetes-group-version-kind": {
78170          "group": "extensions",
78171          "kind": "Deployment",
78172          "version": "v1beta1"
78173        }
78174      },
78175      "parameters": [
78176        {
78177          "description": "name of the Deployment",
78178          "in": "path",
78179          "name": "name",
78180          "required": true,
78181          "type": "string",
78182          "uniqueItems": true
78183        },
78184        {
78185          "description": "object name and auth scope, such as for teams and projects",
78186          "in": "path",
78187          "name": "namespace",
78188          "required": true,
78189          "type": "string",
78190          "uniqueItems": true
78191        },
78192        {
78193          "description": "If 'true', then the output is pretty printed.",
78194          "in": "query",
78195          "name": "pretty",
78196          "type": "string",
78197          "uniqueItems": true
78198        }
78199      ],
78200      "patch": {
78201        "consumes": [
78202          "application/json-patch+json",
78203          "application/merge-patch+json",
78204          "application/strategic-merge-patch+json"
78205        ],
78206        "description": "partially update status of the specified Deployment",
78207        "operationId": "patchExtensionsV1beta1NamespacedDeploymentStatus",
78208        "parameters": [
78209          {
78210            "in": "body",
78211            "name": "body",
78212            "required": true,
78213            "schema": {
78214              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78215            }
78216          },
78217          {
78218            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78219            "in": "query",
78220            "name": "dryRun",
78221            "type": "string",
78222            "uniqueItems": true
78223          },
78224          {
78225            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
78226            "in": "query",
78227            "name": "fieldManager",
78228            "type": "string",
78229            "uniqueItems": true
78230          },
78231          {
78232            "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.",
78233            "in": "query",
78234            "name": "force",
78235            "type": "boolean",
78236            "uniqueItems": true
78237          }
78238        ],
78239        "produces": [
78240          "application/json",
78241          "application/yaml",
78242          "application/vnd.kubernetes.protobuf"
78243        ],
78244        "responses": {
78245          "200": {
78246            "description": "OK",
78247            "schema": {
78248              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
78249            }
78250          },
78251          "401": {
78252            "description": "Unauthorized"
78253          }
78254        },
78255        "schemes": [
78256          "https"
78257        ],
78258        "tags": [
78259          "extensions_v1beta1"
78260        ],
78261        "x-kubernetes-action": "patch",
78262        "x-kubernetes-group-version-kind": {
78263          "group": "extensions",
78264          "kind": "Deployment",
78265          "version": "v1beta1"
78266        }
78267      },
78268      "put": {
78269        "consumes": [
78270          "*/*"
78271        ],
78272        "description": "replace status of the specified Deployment",
78273        "operationId": "replaceExtensionsV1beta1NamespacedDeploymentStatus",
78274        "parameters": [
78275          {
78276            "in": "body",
78277            "name": "body",
78278            "required": true,
78279            "schema": {
78280              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
78281            }
78282          },
78283          {
78284            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78285            "in": "query",
78286            "name": "dryRun",
78287            "type": "string",
78288            "uniqueItems": true
78289          },
78290          {
78291            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78292            "in": "query",
78293            "name": "fieldManager",
78294            "type": "string",
78295            "uniqueItems": true
78296          }
78297        ],
78298        "produces": [
78299          "application/json",
78300          "application/yaml",
78301          "application/vnd.kubernetes.protobuf"
78302        ],
78303        "responses": {
78304          "200": {
78305            "description": "OK",
78306            "schema": {
78307              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
78308            }
78309          },
78310          "201": {
78311            "description": "Created",
78312            "schema": {
78313              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment"
78314            }
78315          },
78316          "401": {
78317            "description": "Unauthorized"
78318          }
78319        },
78320        "schemes": [
78321          "https"
78322        ],
78323        "tags": [
78324          "extensions_v1beta1"
78325        ],
78326        "x-kubernetes-action": "put",
78327        "x-kubernetes-group-version-kind": {
78328          "group": "extensions",
78329          "kind": "Deployment",
78330          "version": "v1beta1"
78331        }
78332      }
78333    },
78334    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses": {
78335      "delete": {
78336        "consumes": [
78337          "*/*"
78338        ],
78339        "description": "delete collection of Ingress",
78340        "operationId": "deleteExtensionsV1beta1CollectionNamespacedIngress",
78341        "parameters": [
78342          {
78343            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
78344            "in": "query",
78345            "name": "allowWatchBookmarks",
78346            "type": "boolean",
78347            "uniqueItems": true
78348          },
78349          {
78350            "in": "body",
78351            "name": "body",
78352            "schema": {
78353              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78354            }
78355          },
78356          {
78357            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78358            "in": "query",
78359            "name": "continue",
78360            "type": "string",
78361            "uniqueItems": true
78362          },
78363          {
78364            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78365            "in": "query",
78366            "name": "dryRun",
78367            "type": "string",
78368            "uniqueItems": true
78369          },
78370          {
78371            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78372            "in": "query",
78373            "name": "fieldSelector",
78374            "type": "string",
78375            "uniqueItems": true
78376          },
78377          {
78378            "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.",
78379            "in": "query",
78380            "name": "gracePeriodSeconds",
78381            "type": "integer",
78382            "uniqueItems": true
78383          },
78384          {
78385            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78386            "in": "query",
78387            "name": "labelSelector",
78388            "type": "string",
78389            "uniqueItems": true
78390          },
78391          {
78392            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78393            "in": "query",
78394            "name": "limit",
78395            "type": "integer",
78396            "uniqueItems": true
78397          },
78398          {
78399            "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.",
78400            "in": "query",
78401            "name": "orphanDependents",
78402            "type": "boolean",
78403            "uniqueItems": true
78404          },
78405          {
78406            "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.",
78407            "in": "query",
78408            "name": "propagationPolicy",
78409            "type": "string",
78410            "uniqueItems": true
78411          },
78412          {
78413            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
78414            "in": "query",
78415            "name": "resourceVersion",
78416            "type": "string",
78417            "uniqueItems": true
78418          },
78419          {
78420            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78421            "in": "query",
78422            "name": "timeoutSeconds",
78423            "type": "integer",
78424            "uniqueItems": true
78425          },
78426          {
78427            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78428            "in": "query",
78429            "name": "watch",
78430            "type": "boolean",
78431            "uniqueItems": true
78432          }
78433        ],
78434        "produces": [
78435          "application/json",
78436          "application/yaml",
78437          "application/vnd.kubernetes.protobuf"
78438        ],
78439        "responses": {
78440          "200": {
78441            "description": "OK",
78442            "schema": {
78443              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78444            }
78445          },
78446          "401": {
78447            "description": "Unauthorized"
78448          }
78449        },
78450        "schemes": [
78451          "https"
78452        ],
78453        "tags": [
78454          "extensions_v1beta1"
78455        ],
78456        "x-kubernetes-action": "deletecollection",
78457        "x-kubernetes-group-version-kind": {
78458          "group": "extensions",
78459          "kind": "Ingress",
78460          "version": "v1beta1"
78461        }
78462      },
78463      "get": {
78464        "consumes": [
78465          "*/*"
78466        ],
78467        "description": "list or watch objects of kind Ingress",
78468        "operationId": "listExtensionsV1beta1NamespacedIngress",
78469        "parameters": [
78470          {
78471            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
78472            "in": "query",
78473            "name": "allowWatchBookmarks",
78474            "type": "boolean",
78475            "uniqueItems": true
78476          },
78477          {
78478            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
78479            "in": "query",
78480            "name": "continue",
78481            "type": "string",
78482            "uniqueItems": true
78483          },
78484          {
78485            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
78486            "in": "query",
78487            "name": "fieldSelector",
78488            "type": "string",
78489            "uniqueItems": true
78490          },
78491          {
78492            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
78493            "in": "query",
78494            "name": "labelSelector",
78495            "type": "string",
78496            "uniqueItems": true
78497          },
78498          {
78499            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
78500            "in": "query",
78501            "name": "limit",
78502            "type": "integer",
78503            "uniqueItems": true
78504          },
78505          {
78506            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
78507            "in": "query",
78508            "name": "resourceVersion",
78509            "type": "string",
78510            "uniqueItems": true
78511          },
78512          {
78513            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
78514            "in": "query",
78515            "name": "timeoutSeconds",
78516            "type": "integer",
78517            "uniqueItems": true
78518          },
78519          {
78520            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
78521            "in": "query",
78522            "name": "watch",
78523            "type": "boolean",
78524            "uniqueItems": true
78525          }
78526        ],
78527        "produces": [
78528          "application/json",
78529          "application/yaml",
78530          "application/vnd.kubernetes.protobuf",
78531          "application/json;stream=watch",
78532          "application/vnd.kubernetes.protobuf;stream=watch"
78533        ],
78534        "responses": {
78535          "200": {
78536            "description": "OK",
78537            "schema": {
78538              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IngressList"
78539            }
78540          },
78541          "401": {
78542            "description": "Unauthorized"
78543          }
78544        },
78545        "schemes": [
78546          "https"
78547        ],
78548        "tags": [
78549          "extensions_v1beta1"
78550        ],
78551        "x-kubernetes-action": "list",
78552        "x-kubernetes-group-version-kind": {
78553          "group": "extensions",
78554          "kind": "Ingress",
78555          "version": "v1beta1"
78556        }
78557      },
78558      "parameters": [
78559        {
78560          "description": "object name and auth scope, such as for teams and projects",
78561          "in": "path",
78562          "name": "namespace",
78563          "required": true,
78564          "type": "string",
78565          "uniqueItems": true
78566        },
78567        {
78568          "description": "If 'true', then the output is pretty printed.",
78569          "in": "query",
78570          "name": "pretty",
78571          "type": "string",
78572          "uniqueItems": true
78573        }
78574      ],
78575      "post": {
78576        "consumes": [
78577          "*/*"
78578        ],
78579        "description": "create an Ingress",
78580        "operationId": "createExtensionsV1beta1NamespacedIngress",
78581        "parameters": [
78582          {
78583            "in": "body",
78584            "name": "body",
78585            "required": true,
78586            "schema": {
78587              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78588            }
78589          },
78590          {
78591            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78592            "in": "query",
78593            "name": "dryRun",
78594            "type": "string",
78595            "uniqueItems": true
78596          },
78597          {
78598            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78599            "in": "query",
78600            "name": "fieldManager",
78601            "type": "string",
78602            "uniqueItems": true
78603          }
78604        ],
78605        "produces": [
78606          "application/json",
78607          "application/yaml",
78608          "application/vnd.kubernetes.protobuf"
78609        ],
78610        "responses": {
78611          "200": {
78612            "description": "OK",
78613            "schema": {
78614              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78615            }
78616          },
78617          "201": {
78618            "description": "Created",
78619            "schema": {
78620              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78621            }
78622          },
78623          "202": {
78624            "description": "Accepted",
78625            "schema": {
78626              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78627            }
78628          },
78629          "401": {
78630            "description": "Unauthorized"
78631          }
78632        },
78633        "schemes": [
78634          "https"
78635        ],
78636        "tags": [
78637          "extensions_v1beta1"
78638        ],
78639        "x-kubernetes-action": "post",
78640        "x-kubernetes-group-version-kind": {
78641          "group": "extensions",
78642          "kind": "Ingress",
78643          "version": "v1beta1"
78644        }
78645      }
78646    },
78647    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}": {
78648      "delete": {
78649        "consumes": [
78650          "*/*"
78651        ],
78652        "description": "delete an Ingress",
78653        "operationId": "deleteExtensionsV1beta1NamespacedIngress",
78654        "parameters": [
78655          {
78656            "in": "body",
78657            "name": "body",
78658            "schema": {
78659              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
78660            }
78661          },
78662          {
78663            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78664            "in": "query",
78665            "name": "dryRun",
78666            "type": "string",
78667            "uniqueItems": true
78668          },
78669          {
78670            "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.",
78671            "in": "query",
78672            "name": "gracePeriodSeconds",
78673            "type": "integer",
78674            "uniqueItems": true
78675          },
78676          {
78677            "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.",
78678            "in": "query",
78679            "name": "orphanDependents",
78680            "type": "boolean",
78681            "uniqueItems": true
78682          },
78683          {
78684            "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.",
78685            "in": "query",
78686            "name": "propagationPolicy",
78687            "type": "string",
78688            "uniqueItems": true
78689          }
78690        ],
78691        "produces": [
78692          "application/json",
78693          "application/yaml",
78694          "application/vnd.kubernetes.protobuf"
78695        ],
78696        "responses": {
78697          "200": {
78698            "description": "OK",
78699            "schema": {
78700              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78701            }
78702          },
78703          "202": {
78704            "description": "Accepted",
78705            "schema": {
78706              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
78707            }
78708          },
78709          "401": {
78710            "description": "Unauthorized"
78711          }
78712        },
78713        "schemes": [
78714          "https"
78715        ],
78716        "tags": [
78717          "extensions_v1beta1"
78718        ],
78719        "x-kubernetes-action": "delete",
78720        "x-kubernetes-group-version-kind": {
78721          "group": "extensions",
78722          "kind": "Ingress",
78723          "version": "v1beta1"
78724        }
78725      },
78726      "get": {
78727        "consumes": [
78728          "*/*"
78729        ],
78730        "description": "read the specified Ingress",
78731        "operationId": "readExtensionsV1beta1NamespacedIngress",
78732        "parameters": [
78733          {
78734            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
78735            "in": "query",
78736            "name": "exact",
78737            "type": "boolean",
78738            "uniqueItems": true
78739          },
78740          {
78741            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
78742            "in": "query",
78743            "name": "export",
78744            "type": "boolean",
78745            "uniqueItems": true
78746          }
78747        ],
78748        "produces": [
78749          "application/json",
78750          "application/yaml",
78751          "application/vnd.kubernetes.protobuf"
78752        ],
78753        "responses": {
78754          "200": {
78755            "description": "OK",
78756            "schema": {
78757              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78758            }
78759          },
78760          "401": {
78761            "description": "Unauthorized"
78762          }
78763        },
78764        "schemes": [
78765          "https"
78766        ],
78767        "tags": [
78768          "extensions_v1beta1"
78769        ],
78770        "x-kubernetes-action": "get",
78771        "x-kubernetes-group-version-kind": {
78772          "group": "extensions",
78773          "kind": "Ingress",
78774          "version": "v1beta1"
78775        }
78776      },
78777      "parameters": [
78778        {
78779          "description": "name of the Ingress",
78780          "in": "path",
78781          "name": "name",
78782          "required": true,
78783          "type": "string",
78784          "uniqueItems": true
78785        },
78786        {
78787          "description": "object name and auth scope, such as for teams and projects",
78788          "in": "path",
78789          "name": "namespace",
78790          "required": true,
78791          "type": "string",
78792          "uniqueItems": true
78793        },
78794        {
78795          "description": "If 'true', then the output is pretty printed.",
78796          "in": "query",
78797          "name": "pretty",
78798          "type": "string",
78799          "uniqueItems": true
78800        }
78801      ],
78802      "patch": {
78803        "consumes": [
78804          "application/json-patch+json",
78805          "application/merge-patch+json",
78806          "application/strategic-merge-patch+json"
78807        ],
78808        "description": "partially update the specified Ingress",
78809        "operationId": "patchExtensionsV1beta1NamespacedIngress",
78810        "parameters": [
78811          {
78812            "in": "body",
78813            "name": "body",
78814            "required": true,
78815            "schema": {
78816              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
78817            }
78818          },
78819          {
78820            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78821            "in": "query",
78822            "name": "dryRun",
78823            "type": "string",
78824            "uniqueItems": true
78825          },
78826          {
78827            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
78828            "in": "query",
78829            "name": "fieldManager",
78830            "type": "string",
78831            "uniqueItems": true
78832          },
78833          {
78834            "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.",
78835            "in": "query",
78836            "name": "force",
78837            "type": "boolean",
78838            "uniqueItems": true
78839          }
78840        ],
78841        "produces": [
78842          "application/json",
78843          "application/yaml",
78844          "application/vnd.kubernetes.protobuf"
78845        ],
78846        "responses": {
78847          "200": {
78848            "description": "OK",
78849            "schema": {
78850              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78851            }
78852          },
78853          "401": {
78854            "description": "Unauthorized"
78855          }
78856        },
78857        "schemes": [
78858          "https"
78859        ],
78860        "tags": [
78861          "extensions_v1beta1"
78862        ],
78863        "x-kubernetes-action": "patch",
78864        "x-kubernetes-group-version-kind": {
78865          "group": "extensions",
78866          "kind": "Ingress",
78867          "version": "v1beta1"
78868        }
78869      },
78870      "put": {
78871        "consumes": [
78872          "*/*"
78873        ],
78874        "description": "replace the specified Ingress",
78875        "operationId": "replaceExtensionsV1beta1NamespacedIngress",
78876        "parameters": [
78877          {
78878            "in": "body",
78879            "name": "body",
78880            "required": true,
78881            "schema": {
78882              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78883            }
78884          },
78885          {
78886            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
78887            "in": "query",
78888            "name": "dryRun",
78889            "type": "string",
78890            "uniqueItems": true
78891          },
78892          {
78893            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
78894            "in": "query",
78895            "name": "fieldManager",
78896            "type": "string",
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.api.extensions.v1beta1.Ingress"
78910            }
78911          },
78912          "201": {
78913            "description": "Created",
78914            "schema": {
78915              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78916            }
78917          },
78918          "401": {
78919            "description": "Unauthorized"
78920          }
78921        },
78922        "schemes": [
78923          "https"
78924        ],
78925        "tags": [
78926          "extensions_v1beta1"
78927        ],
78928        "x-kubernetes-action": "put",
78929        "x-kubernetes-group-version-kind": {
78930          "group": "extensions",
78931          "kind": "Ingress",
78932          "version": "v1beta1"
78933        }
78934      }
78935    },
78936    "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
78937      "get": {
78938        "consumes": [
78939          "*/*"
78940        ],
78941        "description": "read status of the specified Ingress",
78942        "operationId": "readExtensionsV1beta1NamespacedIngressStatus",
78943        "produces": [
78944          "application/json",
78945          "application/yaml",
78946          "application/vnd.kubernetes.protobuf"
78947        ],
78948        "responses": {
78949          "200": {
78950            "description": "OK",
78951            "schema": {
78952              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
78953            }
78954          },
78955          "401": {
78956            "description": "Unauthorized"
78957          }
78958        },
78959        "schemes": [
78960          "https"
78961        ],
78962        "tags": [
78963          "extensions_v1beta1"
78964        ],
78965        "x-kubernetes-action": "get",
78966        "x-kubernetes-group-version-kind": {
78967          "group": "extensions",
78968          "kind": "Ingress",
78969          "version": "v1beta1"
78970        }
78971      },
78972      "parameters": [
78973        {
78974          "description": "name of the Ingress",
78975          "in": "path",
78976          "name": "name",
78977          "required": true,
78978          "type": "string",
78979          "uniqueItems": true
78980        },
78981        {
78982          "description": "object name and auth scope, such as for teams and projects",
78983          "in": "path",
78984          "name": "namespace",
78985          "required": true,
78986          "type": "string",
78987          "uniqueItems": true
78988        },
78989        {
78990          "description": "If 'true', then the output is pretty printed.",
78991          "in": "query",
78992          "name": "pretty",
78993          "type": "string",
78994          "uniqueItems": true
78995        }
78996      ],
78997      "patch": {
78998        "consumes": [
78999          "application/json-patch+json",
79000          "application/merge-patch+json",
79001          "application/strategic-merge-patch+json"
79002        ],
79003        "description": "partially update status of the specified Ingress",
79004        "operationId": "patchExtensionsV1beta1NamespacedIngressStatus",
79005        "parameters": [
79006          {
79007            "in": "body",
79008            "name": "body",
79009            "required": true,
79010            "schema": {
79011              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
79012            }
79013          },
79014          {
79015            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79016            "in": "query",
79017            "name": "dryRun",
79018            "type": "string",
79019            "uniqueItems": true
79020          },
79021          {
79022            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
79023            "in": "query",
79024            "name": "fieldManager",
79025            "type": "string",
79026            "uniqueItems": true
79027          },
79028          {
79029            "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.",
79030            "in": "query",
79031            "name": "force",
79032            "type": "boolean",
79033            "uniqueItems": true
79034          }
79035        ],
79036        "produces": [
79037          "application/json",
79038          "application/yaml",
79039          "application/vnd.kubernetes.protobuf"
79040        ],
79041        "responses": {
79042          "200": {
79043            "description": "OK",
79044            "schema": {
79045              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
79046            }
79047          },
79048          "401": {
79049            "description": "Unauthorized"
79050          }
79051        },
79052        "schemes": [
79053          "https"
79054        ],
79055        "tags": [
79056          "extensions_v1beta1"
79057        ],
79058        "x-kubernetes-action": "patch",
79059        "x-kubernetes-group-version-kind": {
79060          "group": "extensions",
79061          "kind": "Ingress",
79062          "version": "v1beta1"
79063        }
79064      },
79065      "put": {
79066        "consumes": [
79067          "*/*"
79068        ],
79069        "description": "replace status of the specified Ingress",
79070        "operationId": "replaceExtensionsV1beta1NamespacedIngressStatus",
79071        "parameters": [
79072          {
79073            "in": "body",
79074            "name": "body",
79075            "required": true,
79076            "schema": {
79077              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
79078            }
79079          },
79080          {
79081            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79082            "in": "query",
79083            "name": "dryRun",
79084            "type": "string",
79085            "uniqueItems": true
79086          },
79087          {
79088            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79089            "in": "query",
79090            "name": "fieldManager",
79091            "type": "string",
79092            "uniqueItems": true
79093          }
79094        ],
79095        "produces": [
79096          "application/json",
79097          "application/yaml",
79098          "application/vnd.kubernetes.protobuf"
79099        ],
79100        "responses": {
79101          "200": {
79102            "description": "OK",
79103            "schema": {
79104              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
79105            }
79106          },
79107          "201": {
79108            "description": "Created",
79109            "schema": {
79110              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress"
79111            }
79112          },
79113          "401": {
79114            "description": "Unauthorized"
79115          }
79116        },
79117        "schemes": [
79118          "https"
79119        ],
79120        "tags": [
79121          "extensions_v1beta1"
79122        ],
79123        "x-kubernetes-action": "put",
79124        "x-kubernetes-group-version-kind": {
79125          "group": "extensions",
79126          "kind": "Ingress",
79127          "version": "v1beta1"
79128        }
79129      }
79130    },
79131    "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies": {
79132      "delete": {
79133        "consumes": [
79134          "*/*"
79135        ],
79136        "description": "delete collection of NetworkPolicy",
79137        "operationId": "deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy",
79138        "parameters": [
79139          {
79140            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
79141            "in": "query",
79142            "name": "allowWatchBookmarks",
79143            "type": "boolean",
79144            "uniqueItems": true
79145          },
79146          {
79147            "in": "body",
79148            "name": "body",
79149            "schema": {
79150              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79151            }
79152          },
79153          {
79154            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79155            "in": "query",
79156            "name": "continue",
79157            "type": "string",
79158            "uniqueItems": true
79159          },
79160          {
79161            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79162            "in": "query",
79163            "name": "dryRun",
79164            "type": "string",
79165            "uniqueItems": true
79166          },
79167          {
79168            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79169            "in": "query",
79170            "name": "fieldSelector",
79171            "type": "string",
79172            "uniqueItems": true
79173          },
79174          {
79175            "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.",
79176            "in": "query",
79177            "name": "gracePeriodSeconds",
79178            "type": "integer",
79179            "uniqueItems": true
79180          },
79181          {
79182            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79183            "in": "query",
79184            "name": "labelSelector",
79185            "type": "string",
79186            "uniqueItems": true
79187          },
79188          {
79189            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79190            "in": "query",
79191            "name": "limit",
79192            "type": "integer",
79193            "uniqueItems": true
79194          },
79195          {
79196            "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.",
79197            "in": "query",
79198            "name": "orphanDependents",
79199            "type": "boolean",
79200            "uniqueItems": true
79201          },
79202          {
79203            "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.",
79204            "in": "query",
79205            "name": "propagationPolicy",
79206            "type": "string",
79207            "uniqueItems": true
79208          },
79209          {
79210            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
79211            "in": "query",
79212            "name": "resourceVersion",
79213            "type": "string",
79214            "uniqueItems": true
79215          },
79216          {
79217            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79218            "in": "query",
79219            "name": "timeoutSeconds",
79220            "type": "integer",
79221            "uniqueItems": true
79222          },
79223          {
79224            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79225            "in": "query",
79226            "name": "watch",
79227            "type": "boolean",
79228            "uniqueItems": true
79229          }
79230        ],
79231        "produces": [
79232          "application/json",
79233          "application/yaml",
79234          "application/vnd.kubernetes.protobuf"
79235        ],
79236        "responses": {
79237          "200": {
79238            "description": "OK",
79239            "schema": {
79240              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79241            }
79242          },
79243          "401": {
79244            "description": "Unauthorized"
79245          }
79246        },
79247        "schemes": [
79248          "https"
79249        ],
79250        "tags": [
79251          "extensions_v1beta1"
79252        ],
79253        "x-kubernetes-action": "deletecollection",
79254        "x-kubernetes-group-version-kind": {
79255          "group": "extensions",
79256          "kind": "NetworkPolicy",
79257          "version": "v1beta1"
79258        }
79259      },
79260      "get": {
79261        "consumes": [
79262          "*/*"
79263        ],
79264        "description": "list or watch objects of kind NetworkPolicy",
79265        "operationId": "listExtensionsV1beta1NamespacedNetworkPolicy",
79266        "parameters": [
79267          {
79268            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
79269            "in": "query",
79270            "name": "allowWatchBookmarks",
79271            "type": "boolean",
79272            "uniqueItems": true
79273          },
79274          {
79275            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79276            "in": "query",
79277            "name": "continue",
79278            "type": "string",
79279            "uniqueItems": true
79280          },
79281          {
79282            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79283            "in": "query",
79284            "name": "fieldSelector",
79285            "type": "string",
79286            "uniqueItems": true
79287          },
79288          {
79289            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79290            "in": "query",
79291            "name": "labelSelector",
79292            "type": "string",
79293            "uniqueItems": true
79294          },
79295          {
79296            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79297            "in": "query",
79298            "name": "limit",
79299            "type": "integer",
79300            "uniqueItems": true
79301          },
79302          {
79303            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
79304            "in": "query",
79305            "name": "resourceVersion",
79306            "type": "string",
79307            "uniqueItems": true
79308          },
79309          {
79310            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79311            "in": "query",
79312            "name": "timeoutSeconds",
79313            "type": "integer",
79314            "uniqueItems": true
79315          },
79316          {
79317            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79318            "in": "query",
79319            "name": "watch",
79320            "type": "boolean",
79321            "uniqueItems": true
79322          }
79323        ],
79324        "produces": [
79325          "application/json",
79326          "application/yaml",
79327          "application/vnd.kubernetes.protobuf",
79328          "application/json;stream=watch",
79329          "application/vnd.kubernetes.protobuf;stream=watch"
79330        ],
79331        "responses": {
79332          "200": {
79333            "description": "OK",
79334            "schema": {
79335              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyList"
79336            }
79337          },
79338          "401": {
79339            "description": "Unauthorized"
79340          }
79341        },
79342        "schemes": [
79343          "https"
79344        ],
79345        "tags": [
79346          "extensions_v1beta1"
79347        ],
79348        "x-kubernetes-action": "list",
79349        "x-kubernetes-group-version-kind": {
79350          "group": "extensions",
79351          "kind": "NetworkPolicy",
79352          "version": "v1beta1"
79353        }
79354      },
79355      "parameters": [
79356        {
79357          "description": "object name and auth scope, such as for teams and projects",
79358          "in": "path",
79359          "name": "namespace",
79360          "required": true,
79361          "type": "string",
79362          "uniqueItems": true
79363        },
79364        {
79365          "description": "If 'true', then the output is pretty printed.",
79366          "in": "query",
79367          "name": "pretty",
79368          "type": "string",
79369          "uniqueItems": true
79370        }
79371      ],
79372      "post": {
79373        "consumes": [
79374          "*/*"
79375        ],
79376        "description": "create a NetworkPolicy",
79377        "operationId": "createExtensionsV1beta1NamespacedNetworkPolicy",
79378        "parameters": [
79379          {
79380            "in": "body",
79381            "name": "body",
79382            "required": true,
79383            "schema": {
79384              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79385            }
79386          },
79387          {
79388            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79389            "in": "query",
79390            "name": "dryRun",
79391            "type": "string",
79392            "uniqueItems": true
79393          },
79394          {
79395            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79396            "in": "query",
79397            "name": "fieldManager",
79398            "type": "string",
79399            "uniqueItems": true
79400          }
79401        ],
79402        "produces": [
79403          "application/json",
79404          "application/yaml",
79405          "application/vnd.kubernetes.protobuf"
79406        ],
79407        "responses": {
79408          "200": {
79409            "description": "OK",
79410            "schema": {
79411              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79412            }
79413          },
79414          "201": {
79415            "description": "Created",
79416            "schema": {
79417              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79418            }
79419          },
79420          "202": {
79421            "description": "Accepted",
79422            "schema": {
79423              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79424            }
79425          },
79426          "401": {
79427            "description": "Unauthorized"
79428          }
79429        },
79430        "schemes": [
79431          "https"
79432        ],
79433        "tags": [
79434          "extensions_v1beta1"
79435        ],
79436        "x-kubernetes-action": "post",
79437        "x-kubernetes-group-version-kind": {
79438          "group": "extensions",
79439          "kind": "NetworkPolicy",
79440          "version": "v1beta1"
79441        }
79442      }
79443    },
79444    "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}": {
79445      "delete": {
79446        "consumes": [
79447          "*/*"
79448        ],
79449        "description": "delete a NetworkPolicy",
79450        "operationId": "deleteExtensionsV1beta1NamespacedNetworkPolicy",
79451        "parameters": [
79452          {
79453            "in": "body",
79454            "name": "body",
79455            "schema": {
79456              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79457            }
79458          },
79459          {
79460            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79461            "in": "query",
79462            "name": "dryRun",
79463            "type": "string",
79464            "uniqueItems": true
79465          },
79466          {
79467            "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.",
79468            "in": "query",
79469            "name": "gracePeriodSeconds",
79470            "type": "integer",
79471            "uniqueItems": true
79472          },
79473          {
79474            "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.",
79475            "in": "query",
79476            "name": "orphanDependents",
79477            "type": "boolean",
79478            "uniqueItems": true
79479          },
79480          {
79481            "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.",
79482            "in": "query",
79483            "name": "propagationPolicy",
79484            "type": "string",
79485            "uniqueItems": true
79486          }
79487        ],
79488        "produces": [
79489          "application/json",
79490          "application/yaml",
79491          "application/vnd.kubernetes.protobuf"
79492        ],
79493        "responses": {
79494          "200": {
79495            "description": "OK",
79496            "schema": {
79497              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79498            }
79499          },
79500          "202": {
79501            "description": "Accepted",
79502            "schema": {
79503              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79504            }
79505          },
79506          "401": {
79507            "description": "Unauthorized"
79508          }
79509        },
79510        "schemes": [
79511          "https"
79512        ],
79513        "tags": [
79514          "extensions_v1beta1"
79515        ],
79516        "x-kubernetes-action": "delete",
79517        "x-kubernetes-group-version-kind": {
79518          "group": "extensions",
79519          "kind": "NetworkPolicy",
79520          "version": "v1beta1"
79521        }
79522      },
79523      "get": {
79524        "consumes": [
79525          "*/*"
79526        ],
79527        "description": "read the specified NetworkPolicy",
79528        "operationId": "readExtensionsV1beta1NamespacedNetworkPolicy",
79529        "parameters": [
79530          {
79531            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
79532            "in": "query",
79533            "name": "exact",
79534            "type": "boolean",
79535            "uniqueItems": true
79536          },
79537          {
79538            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
79539            "in": "query",
79540            "name": "export",
79541            "type": "boolean",
79542            "uniqueItems": true
79543          }
79544        ],
79545        "produces": [
79546          "application/json",
79547          "application/yaml",
79548          "application/vnd.kubernetes.protobuf"
79549        ],
79550        "responses": {
79551          "200": {
79552            "description": "OK",
79553            "schema": {
79554              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79555            }
79556          },
79557          "401": {
79558            "description": "Unauthorized"
79559          }
79560        },
79561        "schemes": [
79562          "https"
79563        ],
79564        "tags": [
79565          "extensions_v1beta1"
79566        ],
79567        "x-kubernetes-action": "get",
79568        "x-kubernetes-group-version-kind": {
79569          "group": "extensions",
79570          "kind": "NetworkPolicy",
79571          "version": "v1beta1"
79572        }
79573      },
79574      "parameters": [
79575        {
79576          "description": "name of the NetworkPolicy",
79577          "in": "path",
79578          "name": "name",
79579          "required": true,
79580          "type": "string",
79581          "uniqueItems": true
79582        },
79583        {
79584          "description": "object name and auth scope, such as for teams and projects",
79585          "in": "path",
79586          "name": "namespace",
79587          "required": true,
79588          "type": "string",
79589          "uniqueItems": true
79590        },
79591        {
79592          "description": "If 'true', then the output is pretty printed.",
79593          "in": "query",
79594          "name": "pretty",
79595          "type": "string",
79596          "uniqueItems": true
79597        }
79598      ],
79599      "patch": {
79600        "consumes": [
79601          "application/json-patch+json",
79602          "application/merge-patch+json",
79603          "application/strategic-merge-patch+json"
79604        ],
79605        "description": "partially update the specified NetworkPolicy",
79606        "operationId": "patchExtensionsV1beta1NamespacedNetworkPolicy",
79607        "parameters": [
79608          {
79609            "in": "body",
79610            "name": "body",
79611            "required": true,
79612            "schema": {
79613              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
79614            }
79615          },
79616          {
79617            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79618            "in": "query",
79619            "name": "dryRun",
79620            "type": "string",
79621            "uniqueItems": true
79622          },
79623          {
79624            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
79625            "in": "query",
79626            "name": "fieldManager",
79627            "type": "string",
79628            "uniqueItems": true
79629          },
79630          {
79631            "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.",
79632            "in": "query",
79633            "name": "force",
79634            "type": "boolean",
79635            "uniqueItems": true
79636          }
79637        ],
79638        "produces": [
79639          "application/json",
79640          "application/yaml",
79641          "application/vnd.kubernetes.protobuf"
79642        ],
79643        "responses": {
79644          "200": {
79645            "description": "OK",
79646            "schema": {
79647              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79648            }
79649          },
79650          "401": {
79651            "description": "Unauthorized"
79652          }
79653        },
79654        "schemes": [
79655          "https"
79656        ],
79657        "tags": [
79658          "extensions_v1beta1"
79659        ],
79660        "x-kubernetes-action": "patch",
79661        "x-kubernetes-group-version-kind": {
79662          "group": "extensions",
79663          "kind": "NetworkPolicy",
79664          "version": "v1beta1"
79665        }
79666      },
79667      "put": {
79668        "consumes": [
79669          "*/*"
79670        ],
79671        "description": "replace the specified NetworkPolicy",
79672        "operationId": "replaceExtensionsV1beta1NamespacedNetworkPolicy",
79673        "parameters": [
79674          {
79675            "in": "body",
79676            "name": "body",
79677            "required": true,
79678            "schema": {
79679              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79680            }
79681          },
79682          {
79683            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79684            "in": "query",
79685            "name": "dryRun",
79686            "type": "string",
79687            "uniqueItems": true
79688          },
79689          {
79690            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79691            "in": "query",
79692            "name": "fieldManager",
79693            "type": "string",
79694            "uniqueItems": true
79695          }
79696        ],
79697        "produces": [
79698          "application/json",
79699          "application/yaml",
79700          "application/vnd.kubernetes.protobuf"
79701        ],
79702        "responses": {
79703          "200": {
79704            "description": "OK",
79705            "schema": {
79706              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79707            }
79708          },
79709          "201": {
79710            "description": "Created",
79711            "schema": {
79712              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy"
79713            }
79714          },
79715          "401": {
79716            "description": "Unauthorized"
79717          }
79718        },
79719        "schemes": [
79720          "https"
79721        ],
79722        "tags": [
79723          "extensions_v1beta1"
79724        ],
79725        "x-kubernetes-action": "put",
79726        "x-kubernetes-group-version-kind": {
79727          "group": "extensions",
79728          "kind": "NetworkPolicy",
79729          "version": "v1beta1"
79730        }
79731      }
79732    },
79733    "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets": {
79734      "delete": {
79735        "consumes": [
79736          "*/*"
79737        ],
79738        "description": "delete collection of ReplicaSet",
79739        "operationId": "deleteExtensionsV1beta1CollectionNamespacedReplicaSet",
79740        "parameters": [
79741          {
79742            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
79743            "in": "query",
79744            "name": "allowWatchBookmarks",
79745            "type": "boolean",
79746            "uniqueItems": true
79747          },
79748          {
79749            "in": "body",
79750            "name": "body",
79751            "schema": {
79752              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
79753            }
79754          },
79755          {
79756            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79757            "in": "query",
79758            "name": "continue",
79759            "type": "string",
79760            "uniqueItems": true
79761          },
79762          {
79763            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79764            "in": "query",
79765            "name": "dryRun",
79766            "type": "string",
79767            "uniqueItems": true
79768          },
79769          {
79770            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79771            "in": "query",
79772            "name": "fieldSelector",
79773            "type": "string",
79774            "uniqueItems": true
79775          },
79776          {
79777            "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.",
79778            "in": "query",
79779            "name": "gracePeriodSeconds",
79780            "type": "integer",
79781            "uniqueItems": true
79782          },
79783          {
79784            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79785            "in": "query",
79786            "name": "labelSelector",
79787            "type": "string",
79788            "uniqueItems": true
79789          },
79790          {
79791            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79792            "in": "query",
79793            "name": "limit",
79794            "type": "integer",
79795            "uniqueItems": true
79796          },
79797          {
79798            "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.",
79799            "in": "query",
79800            "name": "orphanDependents",
79801            "type": "boolean",
79802            "uniqueItems": true
79803          },
79804          {
79805            "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.",
79806            "in": "query",
79807            "name": "propagationPolicy",
79808            "type": "string",
79809            "uniqueItems": true
79810          },
79811          {
79812            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
79813            "in": "query",
79814            "name": "resourceVersion",
79815            "type": "string",
79816            "uniqueItems": true
79817          },
79818          {
79819            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79820            "in": "query",
79821            "name": "timeoutSeconds",
79822            "type": "integer",
79823            "uniqueItems": true
79824          },
79825          {
79826            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79827            "in": "query",
79828            "name": "watch",
79829            "type": "boolean",
79830            "uniqueItems": true
79831          }
79832        ],
79833        "produces": [
79834          "application/json",
79835          "application/yaml",
79836          "application/vnd.kubernetes.protobuf"
79837        ],
79838        "responses": {
79839          "200": {
79840            "description": "OK",
79841            "schema": {
79842              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
79843            }
79844          },
79845          "401": {
79846            "description": "Unauthorized"
79847          }
79848        },
79849        "schemes": [
79850          "https"
79851        ],
79852        "tags": [
79853          "extensions_v1beta1"
79854        ],
79855        "x-kubernetes-action": "deletecollection",
79856        "x-kubernetes-group-version-kind": {
79857          "group": "extensions",
79858          "kind": "ReplicaSet",
79859          "version": "v1beta1"
79860        }
79861      },
79862      "get": {
79863        "consumes": [
79864          "*/*"
79865        ],
79866        "description": "list or watch objects of kind ReplicaSet",
79867        "operationId": "listExtensionsV1beta1NamespacedReplicaSet",
79868        "parameters": [
79869          {
79870            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
79871            "in": "query",
79872            "name": "allowWatchBookmarks",
79873            "type": "boolean",
79874            "uniqueItems": true
79875          },
79876          {
79877            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
79878            "in": "query",
79879            "name": "continue",
79880            "type": "string",
79881            "uniqueItems": true
79882          },
79883          {
79884            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
79885            "in": "query",
79886            "name": "fieldSelector",
79887            "type": "string",
79888            "uniqueItems": true
79889          },
79890          {
79891            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
79892            "in": "query",
79893            "name": "labelSelector",
79894            "type": "string",
79895            "uniqueItems": true
79896          },
79897          {
79898            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
79899            "in": "query",
79900            "name": "limit",
79901            "type": "integer",
79902            "uniqueItems": true
79903          },
79904          {
79905            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
79906            "in": "query",
79907            "name": "resourceVersion",
79908            "type": "string",
79909            "uniqueItems": true
79910          },
79911          {
79912            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
79913            "in": "query",
79914            "name": "timeoutSeconds",
79915            "type": "integer",
79916            "uniqueItems": true
79917          },
79918          {
79919            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
79920            "in": "query",
79921            "name": "watch",
79922            "type": "boolean",
79923            "uniqueItems": true
79924          }
79925        ],
79926        "produces": [
79927          "application/json",
79928          "application/yaml",
79929          "application/vnd.kubernetes.protobuf",
79930          "application/json;stream=watch",
79931          "application/vnd.kubernetes.protobuf;stream=watch"
79932        ],
79933        "responses": {
79934          "200": {
79935            "description": "OK",
79936            "schema": {
79937              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetList"
79938            }
79939          },
79940          "401": {
79941            "description": "Unauthorized"
79942          }
79943        },
79944        "schemes": [
79945          "https"
79946        ],
79947        "tags": [
79948          "extensions_v1beta1"
79949        ],
79950        "x-kubernetes-action": "list",
79951        "x-kubernetes-group-version-kind": {
79952          "group": "extensions",
79953          "kind": "ReplicaSet",
79954          "version": "v1beta1"
79955        }
79956      },
79957      "parameters": [
79958        {
79959          "description": "object name and auth scope, such as for teams and projects",
79960          "in": "path",
79961          "name": "namespace",
79962          "required": true,
79963          "type": "string",
79964          "uniqueItems": true
79965        },
79966        {
79967          "description": "If 'true', then the output is pretty printed.",
79968          "in": "query",
79969          "name": "pretty",
79970          "type": "string",
79971          "uniqueItems": true
79972        }
79973      ],
79974      "post": {
79975        "consumes": [
79976          "*/*"
79977        ],
79978        "description": "create a ReplicaSet",
79979        "operationId": "createExtensionsV1beta1NamespacedReplicaSet",
79980        "parameters": [
79981          {
79982            "in": "body",
79983            "name": "body",
79984            "required": true,
79985            "schema": {
79986              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
79987            }
79988          },
79989          {
79990            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
79991            "in": "query",
79992            "name": "dryRun",
79993            "type": "string",
79994            "uniqueItems": true
79995          },
79996          {
79997            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
79998            "in": "query",
79999            "name": "fieldManager",
80000            "type": "string",
80001            "uniqueItems": true
80002          }
80003        ],
80004        "produces": [
80005          "application/json",
80006          "application/yaml",
80007          "application/vnd.kubernetes.protobuf"
80008        ],
80009        "responses": {
80010          "200": {
80011            "description": "OK",
80012            "schema": {
80013              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80014            }
80015          },
80016          "201": {
80017            "description": "Created",
80018            "schema": {
80019              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80020            }
80021          },
80022          "202": {
80023            "description": "Accepted",
80024            "schema": {
80025              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80026            }
80027          },
80028          "401": {
80029            "description": "Unauthorized"
80030          }
80031        },
80032        "schemes": [
80033          "https"
80034        ],
80035        "tags": [
80036          "extensions_v1beta1"
80037        ],
80038        "x-kubernetes-action": "post",
80039        "x-kubernetes-group-version-kind": {
80040          "group": "extensions",
80041          "kind": "ReplicaSet",
80042          "version": "v1beta1"
80043        }
80044      }
80045    },
80046    "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}": {
80047      "delete": {
80048        "consumes": [
80049          "*/*"
80050        ],
80051        "description": "delete a ReplicaSet",
80052        "operationId": "deleteExtensionsV1beta1NamespacedReplicaSet",
80053        "parameters": [
80054          {
80055            "in": "body",
80056            "name": "body",
80057            "schema": {
80058              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
80059            }
80060          },
80061          {
80062            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80063            "in": "query",
80064            "name": "dryRun",
80065            "type": "string",
80066            "uniqueItems": true
80067          },
80068          {
80069            "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.",
80070            "in": "query",
80071            "name": "gracePeriodSeconds",
80072            "type": "integer",
80073            "uniqueItems": true
80074          },
80075          {
80076            "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.",
80077            "in": "query",
80078            "name": "orphanDependents",
80079            "type": "boolean",
80080            "uniqueItems": true
80081          },
80082          {
80083            "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.",
80084            "in": "query",
80085            "name": "propagationPolicy",
80086            "type": "string",
80087            "uniqueItems": true
80088          }
80089        ],
80090        "produces": [
80091          "application/json",
80092          "application/yaml",
80093          "application/vnd.kubernetes.protobuf"
80094        ],
80095        "responses": {
80096          "200": {
80097            "description": "OK",
80098            "schema": {
80099              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80100            }
80101          },
80102          "202": {
80103            "description": "Accepted",
80104            "schema": {
80105              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
80106            }
80107          },
80108          "401": {
80109            "description": "Unauthorized"
80110          }
80111        },
80112        "schemes": [
80113          "https"
80114        ],
80115        "tags": [
80116          "extensions_v1beta1"
80117        ],
80118        "x-kubernetes-action": "delete",
80119        "x-kubernetes-group-version-kind": {
80120          "group": "extensions",
80121          "kind": "ReplicaSet",
80122          "version": "v1beta1"
80123        }
80124      },
80125      "get": {
80126        "consumes": [
80127          "*/*"
80128        ],
80129        "description": "read the specified ReplicaSet",
80130        "operationId": "readExtensionsV1beta1NamespacedReplicaSet",
80131        "parameters": [
80132          {
80133            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
80134            "in": "query",
80135            "name": "exact",
80136            "type": "boolean",
80137            "uniqueItems": true
80138          },
80139          {
80140            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
80141            "in": "query",
80142            "name": "export",
80143            "type": "boolean",
80144            "uniqueItems": true
80145          }
80146        ],
80147        "produces": [
80148          "application/json",
80149          "application/yaml",
80150          "application/vnd.kubernetes.protobuf"
80151        ],
80152        "responses": {
80153          "200": {
80154            "description": "OK",
80155            "schema": {
80156              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80157            }
80158          },
80159          "401": {
80160            "description": "Unauthorized"
80161          }
80162        },
80163        "schemes": [
80164          "https"
80165        ],
80166        "tags": [
80167          "extensions_v1beta1"
80168        ],
80169        "x-kubernetes-action": "get",
80170        "x-kubernetes-group-version-kind": {
80171          "group": "extensions",
80172          "kind": "ReplicaSet",
80173          "version": "v1beta1"
80174        }
80175      },
80176      "parameters": [
80177        {
80178          "description": "name of the ReplicaSet",
80179          "in": "path",
80180          "name": "name",
80181          "required": true,
80182          "type": "string",
80183          "uniqueItems": true
80184        },
80185        {
80186          "description": "object name and auth scope, such as for teams and projects",
80187          "in": "path",
80188          "name": "namespace",
80189          "required": true,
80190          "type": "string",
80191          "uniqueItems": true
80192        },
80193        {
80194          "description": "If 'true', then the output is pretty printed.",
80195          "in": "query",
80196          "name": "pretty",
80197          "type": "string",
80198          "uniqueItems": true
80199        }
80200      ],
80201      "patch": {
80202        "consumes": [
80203          "application/json-patch+json",
80204          "application/merge-patch+json",
80205          "application/strategic-merge-patch+json"
80206        ],
80207        "description": "partially update the specified ReplicaSet",
80208        "operationId": "patchExtensionsV1beta1NamespacedReplicaSet",
80209        "parameters": [
80210          {
80211            "in": "body",
80212            "name": "body",
80213            "required": true,
80214            "schema": {
80215              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80216            }
80217          },
80218          {
80219            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80220            "in": "query",
80221            "name": "dryRun",
80222            "type": "string",
80223            "uniqueItems": true
80224          },
80225          {
80226            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
80227            "in": "query",
80228            "name": "fieldManager",
80229            "type": "string",
80230            "uniqueItems": true
80231          },
80232          {
80233            "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.",
80234            "in": "query",
80235            "name": "force",
80236            "type": "boolean",
80237            "uniqueItems": true
80238          }
80239        ],
80240        "produces": [
80241          "application/json",
80242          "application/yaml",
80243          "application/vnd.kubernetes.protobuf"
80244        ],
80245        "responses": {
80246          "200": {
80247            "description": "OK",
80248            "schema": {
80249              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80250            }
80251          },
80252          "401": {
80253            "description": "Unauthorized"
80254          }
80255        },
80256        "schemes": [
80257          "https"
80258        ],
80259        "tags": [
80260          "extensions_v1beta1"
80261        ],
80262        "x-kubernetes-action": "patch",
80263        "x-kubernetes-group-version-kind": {
80264          "group": "extensions",
80265          "kind": "ReplicaSet",
80266          "version": "v1beta1"
80267        }
80268      },
80269      "put": {
80270        "consumes": [
80271          "*/*"
80272        ],
80273        "description": "replace the specified ReplicaSet",
80274        "operationId": "replaceExtensionsV1beta1NamespacedReplicaSet",
80275        "parameters": [
80276          {
80277            "in": "body",
80278            "name": "body",
80279            "required": true,
80280            "schema": {
80281              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80282            }
80283          },
80284          {
80285            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80286            "in": "query",
80287            "name": "dryRun",
80288            "type": "string",
80289            "uniqueItems": true
80290          },
80291          {
80292            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80293            "in": "query",
80294            "name": "fieldManager",
80295            "type": "string",
80296            "uniqueItems": true
80297          }
80298        ],
80299        "produces": [
80300          "application/json",
80301          "application/yaml",
80302          "application/vnd.kubernetes.protobuf"
80303        ],
80304        "responses": {
80305          "200": {
80306            "description": "OK",
80307            "schema": {
80308              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80309            }
80310          },
80311          "201": {
80312            "description": "Created",
80313            "schema": {
80314              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80315            }
80316          },
80317          "401": {
80318            "description": "Unauthorized"
80319          }
80320        },
80321        "schemes": [
80322          "https"
80323        ],
80324        "tags": [
80325          "extensions_v1beta1"
80326        ],
80327        "x-kubernetes-action": "put",
80328        "x-kubernetes-group-version-kind": {
80329          "group": "extensions",
80330          "kind": "ReplicaSet",
80331          "version": "v1beta1"
80332        }
80333      }
80334    },
80335    "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale": {
80336      "get": {
80337        "consumes": [
80338          "*/*"
80339        ],
80340        "description": "read scale of the specified ReplicaSet",
80341        "operationId": "readExtensionsV1beta1NamespacedReplicaSetScale",
80342        "produces": [
80343          "application/json",
80344          "application/yaml",
80345          "application/vnd.kubernetes.protobuf"
80346        ],
80347        "responses": {
80348          "200": {
80349            "description": "OK",
80350            "schema": {
80351              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80352            }
80353          },
80354          "401": {
80355            "description": "Unauthorized"
80356          }
80357        },
80358        "schemes": [
80359          "https"
80360        ],
80361        "tags": [
80362          "extensions_v1beta1"
80363        ],
80364        "x-kubernetes-action": "get",
80365        "x-kubernetes-group-version-kind": {
80366          "group": "extensions",
80367          "kind": "Scale",
80368          "version": "v1beta1"
80369        }
80370      },
80371      "parameters": [
80372        {
80373          "description": "name of the Scale",
80374          "in": "path",
80375          "name": "name",
80376          "required": true,
80377          "type": "string",
80378          "uniqueItems": true
80379        },
80380        {
80381          "description": "object name and auth scope, such as for teams and projects",
80382          "in": "path",
80383          "name": "namespace",
80384          "required": true,
80385          "type": "string",
80386          "uniqueItems": true
80387        },
80388        {
80389          "description": "If 'true', then the output is pretty printed.",
80390          "in": "query",
80391          "name": "pretty",
80392          "type": "string",
80393          "uniqueItems": true
80394        }
80395      ],
80396      "patch": {
80397        "consumes": [
80398          "application/json-patch+json",
80399          "application/merge-patch+json",
80400          "application/strategic-merge-patch+json"
80401        ],
80402        "description": "partially update scale of the specified ReplicaSet",
80403        "operationId": "patchExtensionsV1beta1NamespacedReplicaSetScale",
80404        "parameters": [
80405          {
80406            "in": "body",
80407            "name": "body",
80408            "required": true,
80409            "schema": {
80410              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80411            }
80412          },
80413          {
80414            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80415            "in": "query",
80416            "name": "dryRun",
80417            "type": "string",
80418            "uniqueItems": true
80419          },
80420          {
80421            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
80422            "in": "query",
80423            "name": "fieldManager",
80424            "type": "string",
80425            "uniqueItems": true
80426          },
80427          {
80428            "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.",
80429            "in": "query",
80430            "name": "force",
80431            "type": "boolean",
80432            "uniqueItems": true
80433          }
80434        ],
80435        "produces": [
80436          "application/json",
80437          "application/yaml",
80438          "application/vnd.kubernetes.protobuf"
80439        ],
80440        "responses": {
80441          "200": {
80442            "description": "OK",
80443            "schema": {
80444              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80445            }
80446          },
80447          "401": {
80448            "description": "Unauthorized"
80449          }
80450        },
80451        "schemes": [
80452          "https"
80453        ],
80454        "tags": [
80455          "extensions_v1beta1"
80456        ],
80457        "x-kubernetes-action": "patch",
80458        "x-kubernetes-group-version-kind": {
80459          "group": "extensions",
80460          "kind": "Scale",
80461          "version": "v1beta1"
80462        }
80463      },
80464      "put": {
80465        "consumes": [
80466          "*/*"
80467        ],
80468        "description": "replace scale of the specified ReplicaSet",
80469        "operationId": "replaceExtensionsV1beta1NamespacedReplicaSetScale",
80470        "parameters": [
80471          {
80472            "in": "body",
80473            "name": "body",
80474            "required": true,
80475            "schema": {
80476              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80477            }
80478          },
80479          {
80480            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80481            "in": "query",
80482            "name": "dryRun",
80483            "type": "string",
80484            "uniqueItems": true
80485          },
80486          {
80487            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80488            "in": "query",
80489            "name": "fieldManager",
80490            "type": "string",
80491            "uniqueItems": true
80492          }
80493        ],
80494        "produces": [
80495          "application/json",
80496          "application/yaml",
80497          "application/vnd.kubernetes.protobuf"
80498        ],
80499        "responses": {
80500          "200": {
80501            "description": "OK",
80502            "schema": {
80503              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80504            }
80505          },
80506          "201": {
80507            "description": "Created",
80508            "schema": {
80509              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80510            }
80511          },
80512          "401": {
80513            "description": "Unauthorized"
80514          }
80515        },
80516        "schemes": [
80517          "https"
80518        ],
80519        "tags": [
80520          "extensions_v1beta1"
80521        ],
80522        "x-kubernetes-action": "put",
80523        "x-kubernetes-group-version-kind": {
80524          "group": "extensions",
80525          "kind": "Scale",
80526          "version": "v1beta1"
80527        }
80528      }
80529    },
80530    "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status": {
80531      "get": {
80532        "consumes": [
80533          "*/*"
80534        ],
80535        "description": "read status of the specified ReplicaSet",
80536        "operationId": "readExtensionsV1beta1NamespacedReplicaSetStatus",
80537        "produces": [
80538          "application/json",
80539          "application/yaml",
80540          "application/vnd.kubernetes.protobuf"
80541        ],
80542        "responses": {
80543          "200": {
80544            "description": "OK",
80545            "schema": {
80546              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80547            }
80548          },
80549          "401": {
80550            "description": "Unauthorized"
80551          }
80552        },
80553        "schemes": [
80554          "https"
80555        ],
80556        "tags": [
80557          "extensions_v1beta1"
80558        ],
80559        "x-kubernetes-action": "get",
80560        "x-kubernetes-group-version-kind": {
80561          "group": "extensions",
80562          "kind": "ReplicaSet",
80563          "version": "v1beta1"
80564        }
80565      },
80566      "parameters": [
80567        {
80568          "description": "name of the ReplicaSet",
80569          "in": "path",
80570          "name": "name",
80571          "required": true,
80572          "type": "string",
80573          "uniqueItems": true
80574        },
80575        {
80576          "description": "object name and auth scope, such as for teams and projects",
80577          "in": "path",
80578          "name": "namespace",
80579          "required": true,
80580          "type": "string",
80581          "uniqueItems": true
80582        },
80583        {
80584          "description": "If 'true', then the output is pretty printed.",
80585          "in": "query",
80586          "name": "pretty",
80587          "type": "string",
80588          "uniqueItems": true
80589        }
80590      ],
80591      "patch": {
80592        "consumes": [
80593          "application/json-patch+json",
80594          "application/merge-patch+json",
80595          "application/strategic-merge-patch+json"
80596        ],
80597        "description": "partially update status of the specified ReplicaSet",
80598        "operationId": "patchExtensionsV1beta1NamespacedReplicaSetStatus",
80599        "parameters": [
80600          {
80601            "in": "body",
80602            "name": "body",
80603            "required": true,
80604            "schema": {
80605              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80606            }
80607          },
80608          {
80609            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80610            "in": "query",
80611            "name": "dryRun",
80612            "type": "string",
80613            "uniqueItems": true
80614          },
80615          {
80616            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
80617            "in": "query",
80618            "name": "fieldManager",
80619            "type": "string",
80620            "uniqueItems": true
80621          },
80622          {
80623            "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.",
80624            "in": "query",
80625            "name": "force",
80626            "type": "boolean",
80627            "uniqueItems": true
80628          }
80629        ],
80630        "produces": [
80631          "application/json",
80632          "application/yaml",
80633          "application/vnd.kubernetes.protobuf"
80634        ],
80635        "responses": {
80636          "200": {
80637            "description": "OK",
80638            "schema": {
80639              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80640            }
80641          },
80642          "401": {
80643            "description": "Unauthorized"
80644          }
80645        },
80646        "schemes": [
80647          "https"
80648        ],
80649        "tags": [
80650          "extensions_v1beta1"
80651        ],
80652        "x-kubernetes-action": "patch",
80653        "x-kubernetes-group-version-kind": {
80654          "group": "extensions",
80655          "kind": "ReplicaSet",
80656          "version": "v1beta1"
80657        }
80658      },
80659      "put": {
80660        "consumes": [
80661          "*/*"
80662        ],
80663        "description": "replace status of the specified ReplicaSet",
80664        "operationId": "replaceExtensionsV1beta1NamespacedReplicaSetStatus",
80665        "parameters": [
80666          {
80667            "in": "body",
80668            "name": "body",
80669            "required": true,
80670            "schema": {
80671              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80672            }
80673          },
80674          {
80675            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80676            "in": "query",
80677            "name": "dryRun",
80678            "type": "string",
80679            "uniqueItems": true
80680          },
80681          {
80682            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80683            "in": "query",
80684            "name": "fieldManager",
80685            "type": "string",
80686            "uniqueItems": true
80687          }
80688        ],
80689        "produces": [
80690          "application/json",
80691          "application/yaml",
80692          "application/vnd.kubernetes.protobuf"
80693        ],
80694        "responses": {
80695          "200": {
80696            "description": "OK",
80697            "schema": {
80698              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80699            }
80700          },
80701          "201": {
80702            "description": "Created",
80703            "schema": {
80704              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet"
80705            }
80706          },
80707          "401": {
80708            "description": "Unauthorized"
80709          }
80710        },
80711        "schemes": [
80712          "https"
80713        ],
80714        "tags": [
80715          "extensions_v1beta1"
80716        ],
80717        "x-kubernetes-action": "put",
80718        "x-kubernetes-group-version-kind": {
80719          "group": "extensions",
80720          "kind": "ReplicaSet",
80721          "version": "v1beta1"
80722        }
80723      }
80724    },
80725    "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
80726      "get": {
80727        "consumes": [
80728          "*/*"
80729        ],
80730        "description": "read scale of the specified ReplicationControllerDummy",
80731        "operationId": "readExtensionsV1beta1NamespacedReplicationControllerDummyScale",
80732        "produces": [
80733          "application/json",
80734          "application/yaml",
80735          "application/vnd.kubernetes.protobuf"
80736        ],
80737        "responses": {
80738          "200": {
80739            "description": "OK",
80740            "schema": {
80741              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80742            }
80743          },
80744          "401": {
80745            "description": "Unauthorized"
80746          }
80747        },
80748        "schemes": [
80749          "https"
80750        ],
80751        "tags": [
80752          "extensions_v1beta1"
80753        ],
80754        "x-kubernetes-action": "get",
80755        "x-kubernetes-group-version-kind": {
80756          "group": "extensions",
80757          "kind": "Scale",
80758          "version": "v1beta1"
80759        }
80760      },
80761      "parameters": [
80762        {
80763          "description": "name of the Scale",
80764          "in": "path",
80765          "name": "name",
80766          "required": true,
80767          "type": "string",
80768          "uniqueItems": true
80769        },
80770        {
80771          "description": "object name and auth scope, such as for teams and projects",
80772          "in": "path",
80773          "name": "namespace",
80774          "required": true,
80775          "type": "string",
80776          "uniqueItems": true
80777        },
80778        {
80779          "description": "If 'true', then the output is pretty printed.",
80780          "in": "query",
80781          "name": "pretty",
80782          "type": "string",
80783          "uniqueItems": true
80784        }
80785      ],
80786      "patch": {
80787        "consumes": [
80788          "application/json-patch+json",
80789          "application/merge-patch+json",
80790          "application/strategic-merge-patch+json"
80791        ],
80792        "description": "partially update scale of the specified ReplicationControllerDummy",
80793        "operationId": "patchExtensionsV1beta1NamespacedReplicationControllerDummyScale",
80794        "parameters": [
80795          {
80796            "in": "body",
80797            "name": "body",
80798            "required": true,
80799            "schema": {
80800              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
80801            }
80802          },
80803          {
80804            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80805            "in": "query",
80806            "name": "dryRun",
80807            "type": "string",
80808            "uniqueItems": true
80809          },
80810          {
80811            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
80812            "in": "query",
80813            "name": "fieldManager",
80814            "type": "string",
80815            "uniqueItems": true
80816          },
80817          {
80818            "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.",
80819            "in": "query",
80820            "name": "force",
80821            "type": "boolean",
80822            "uniqueItems": true
80823          }
80824        ],
80825        "produces": [
80826          "application/json",
80827          "application/yaml",
80828          "application/vnd.kubernetes.protobuf"
80829        ],
80830        "responses": {
80831          "200": {
80832            "description": "OK",
80833            "schema": {
80834              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80835            }
80836          },
80837          "401": {
80838            "description": "Unauthorized"
80839          }
80840        },
80841        "schemes": [
80842          "https"
80843        ],
80844        "tags": [
80845          "extensions_v1beta1"
80846        ],
80847        "x-kubernetes-action": "patch",
80848        "x-kubernetes-group-version-kind": {
80849          "group": "extensions",
80850          "kind": "Scale",
80851          "version": "v1beta1"
80852        }
80853      },
80854      "put": {
80855        "consumes": [
80856          "*/*"
80857        ],
80858        "description": "replace scale of the specified ReplicationControllerDummy",
80859        "operationId": "replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale",
80860        "parameters": [
80861          {
80862            "in": "body",
80863            "name": "body",
80864            "required": true,
80865            "schema": {
80866              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80867            }
80868          },
80869          {
80870            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
80871            "in": "query",
80872            "name": "dryRun",
80873            "type": "string",
80874            "uniqueItems": true
80875          },
80876          {
80877            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
80878            "in": "query",
80879            "name": "fieldManager",
80880            "type": "string",
80881            "uniqueItems": true
80882          }
80883        ],
80884        "produces": [
80885          "application/json",
80886          "application/yaml",
80887          "application/vnd.kubernetes.protobuf"
80888        ],
80889        "responses": {
80890          "200": {
80891            "description": "OK",
80892            "schema": {
80893              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80894            }
80895          },
80896          "201": {
80897            "description": "Created",
80898            "schema": {
80899              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale"
80900            }
80901          },
80902          "401": {
80903            "description": "Unauthorized"
80904          }
80905        },
80906        "schemes": [
80907          "https"
80908        ],
80909        "tags": [
80910          "extensions_v1beta1"
80911        ],
80912        "x-kubernetes-action": "put",
80913        "x-kubernetes-group-version-kind": {
80914          "group": "extensions",
80915          "kind": "Scale",
80916          "version": "v1beta1"
80917        }
80918      }
80919    },
80920    "/apis/extensions/v1beta1/networkpolicies": {
80921      "get": {
80922        "consumes": [
80923          "*/*"
80924        ],
80925        "description": "list or watch objects of kind NetworkPolicy",
80926        "operationId": "listExtensionsV1beta1NetworkPolicyForAllNamespaces",
80927        "produces": [
80928          "application/json",
80929          "application/yaml",
80930          "application/vnd.kubernetes.protobuf",
80931          "application/json;stream=watch",
80932          "application/vnd.kubernetes.protobuf;stream=watch"
80933        ],
80934        "responses": {
80935          "200": {
80936            "description": "OK",
80937            "schema": {
80938              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicyList"
80939            }
80940          },
80941          "401": {
80942            "description": "Unauthorized"
80943          }
80944        },
80945        "schemes": [
80946          "https"
80947        ],
80948        "tags": [
80949          "extensions_v1beta1"
80950        ],
80951        "x-kubernetes-action": "list",
80952        "x-kubernetes-group-version-kind": {
80953          "group": "extensions",
80954          "kind": "NetworkPolicy",
80955          "version": "v1beta1"
80956        }
80957      },
80958      "parameters": [
80959        {
80960          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
80961          "in": "query",
80962          "name": "allowWatchBookmarks",
80963          "type": "boolean",
80964          "uniqueItems": true
80965        },
80966        {
80967          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
80968          "in": "query",
80969          "name": "continue",
80970          "type": "string",
80971          "uniqueItems": true
80972        },
80973        {
80974          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
80975          "in": "query",
80976          "name": "fieldSelector",
80977          "type": "string",
80978          "uniqueItems": true
80979        },
80980        {
80981          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
80982          "in": "query",
80983          "name": "labelSelector",
80984          "type": "string",
80985          "uniqueItems": true
80986        },
80987        {
80988          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
80989          "in": "query",
80990          "name": "limit",
80991          "type": "integer",
80992          "uniqueItems": true
80993        },
80994        {
80995          "description": "If 'true', then the output is pretty printed.",
80996          "in": "query",
80997          "name": "pretty",
80998          "type": "string",
80999          "uniqueItems": true
81000        },
81001        {
81002          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
81003          "in": "query",
81004          "name": "resourceVersion",
81005          "type": "string",
81006          "uniqueItems": true
81007        },
81008        {
81009          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81010          "in": "query",
81011          "name": "timeoutSeconds",
81012          "type": "integer",
81013          "uniqueItems": true
81014        },
81015        {
81016          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81017          "in": "query",
81018          "name": "watch",
81019          "type": "boolean",
81020          "uniqueItems": true
81021        }
81022      ]
81023    },
81024    "/apis/extensions/v1beta1/podsecuritypolicies": {
81025      "delete": {
81026        "consumes": [
81027          "*/*"
81028        ],
81029        "description": "delete collection of PodSecurityPolicy",
81030        "operationId": "deleteExtensionsV1beta1CollectionPodSecurityPolicy",
81031        "parameters": [
81032          {
81033            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
81034            "in": "query",
81035            "name": "allowWatchBookmarks",
81036            "type": "boolean",
81037            "uniqueItems": true
81038          },
81039          {
81040            "in": "body",
81041            "name": "body",
81042            "schema": {
81043              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
81044            }
81045          },
81046          {
81047            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81048            "in": "query",
81049            "name": "continue",
81050            "type": "string",
81051            "uniqueItems": true
81052          },
81053          {
81054            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81055            "in": "query",
81056            "name": "dryRun",
81057            "type": "string",
81058            "uniqueItems": true
81059          },
81060          {
81061            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81062            "in": "query",
81063            "name": "fieldSelector",
81064            "type": "string",
81065            "uniqueItems": true
81066          },
81067          {
81068            "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.",
81069            "in": "query",
81070            "name": "gracePeriodSeconds",
81071            "type": "integer",
81072            "uniqueItems": true
81073          },
81074          {
81075            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81076            "in": "query",
81077            "name": "labelSelector",
81078            "type": "string",
81079            "uniqueItems": true
81080          },
81081          {
81082            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81083            "in": "query",
81084            "name": "limit",
81085            "type": "integer",
81086            "uniqueItems": true
81087          },
81088          {
81089            "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.",
81090            "in": "query",
81091            "name": "orphanDependents",
81092            "type": "boolean",
81093            "uniqueItems": true
81094          },
81095          {
81096            "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.",
81097            "in": "query",
81098            "name": "propagationPolicy",
81099            "type": "string",
81100            "uniqueItems": true
81101          },
81102          {
81103            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
81104            "in": "query",
81105            "name": "resourceVersion",
81106            "type": "string",
81107            "uniqueItems": true
81108          },
81109          {
81110            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81111            "in": "query",
81112            "name": "timeoutSeconds",
81113            "type": "integer",
81114            "uniqueItems": true
81115          },
81116          {
81117            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81118            "in": "query",
81119            "name": "watch",
81120            "type": "boolean",
81121            "uniqueItems": true
81122          }
81123        ],
81124        "produces": [
81125          "application/json",
81126          "application/yaml",
81127          "application/vnd.kubernetes.protobuf"
81128        ],
81129        "responses": {
81130          "200": {
81131            "description": "OK",
81132            "schema": {
81133              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81134            }
81135          },
81136          "401": {
81137            "description": "Unauthorized"
81138          }
81139        },
81140        "schemes": [
81141          "https"
81142        ],
81143        "tags": [
81144          "extensions_v1beta1"
81145        ],
81146        "x-kubernetes-action": "deletecollection",
81147        "x-kubernetes-group-version-kind": {
81148          "group": "extensions",
81149          "kind": "PodSecurityPolicy",
81150          "version": "v1beta1"
81151        }
81152      },
81153      "get": {
81154        "consumes": [
81155          "*/*"
81156        ],
81157        "description": "list or watch objects of kind PodSecurityPolicy",
81158        "operationId": "listExtensionsV1beta1PodSecurityPolicy",
81159        "parameters": [
81160          {
81161            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
81162            "in": "query",
81163            "name": "allowWatchBookmarks",
81164            "type": "boolean",
81165            "uniqueItems": true
81166          },
81167          {
81168            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81169            "in": "query",
81170            "name": "continue",
81171            "type": "string",
81172            "uniqueItems": true
81173          },
81174          {
81175            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81176            "in": "query",
81177            "name": "fieldSelector",
81178            "type": "string",
81179            "uniqueItems": true
81180          },
81181          {
81182            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81183            "in": "query",
81184            "name": "labelSelector",
81185            "type": "string",
81186            "uniqueItems": true
81187          },
81188          {
81189            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81190            "in": "query",
81191            "name": "limit",
81192            "type": "integer",
81193            "uniqueItems": true
81194          },
81195          {
81196            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
81197            "in": "query",
81198            "name": "resourceVersion",
81199            "type": "string",
81200            "uniqueItems": true
81201          },
81202          {
81203            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81204            "in": "query",
81205            "name": "timeoutSeconds",
81206            "type": "integer",
81207            "uniqueItems": true
81208          },
81209          {
81210            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81211            "in": "query",
81212            "name": "watch",
81213            "type": "boolean",
81214            "uniqueItems": true
81215          }
81216        ],
81217        "produces": [
81218          "application/json",
81219          "application/yaml",
81220          "application/vnd.kubernetes.protobuf",
81221          "application/json;stream=watch",
81222          "application/vnd.kubernetes.protobuf;stream=watch"
81223        ],
81224        "responses": {
81225          "200": {
81226            "description": "OK",
81227            "schema": {
81228              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicyList"
81229            }
81230          },
81231          "401": {
81232            "description": "Unauthorized"
81233          }
81234        },
81235        "schemes": [
81236          "https"
81237        ],
81238        "tags": [
81239          "extensions_v1beta1"
81240        ],
81241        "x-kubernetes-action": "list",
81242        "x-kubernetes-group-version-kind": {
81243          "group": "extensions",
81244          "kind": "PodSecurityPolicy",
81245          "version": "v1beta1"
81246        }
81247      },
81248      "parameters": [
81249        {
81250          "description": "If 'true', then the output is pretty printed.",
81251          "in": "query",
81252          "name": "pretty",
81253          "type": "string",
81254          "uniqueItems": true
81255        }
81256      ],
81257      "post": {
81258        "consumes": [
81259          "*/*"
81260        ],
81261        "description": "create a PodSecurityPolicy",
81262        "operationId": "createExtensionsV1beta1PodSecurityPolicy",
81263        "parameters": [
81264          {
81265            "in": "body",
81266            "name": "body",
81267            "required": true,
81268            "schema": {
81269              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81270            }
81271          },
81272          {
81273            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81274            "in": "query",
81275            "name": "dryRun",
81276            "type": "string",
81277            "uniqueItems": true
81278          },
81279          {
81280            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
81281            "in": "query",
81282            "name": "fieldManager",
81283            "type": "string",
81284            "uniqueItems": true
81285          }
81286        ],
81287        "produces": [
81288          "application/json",
81289          "application/yaml",
81290          "application/vnd.kubernetes.protobuf"
81291        ],
81292        "responses": {
81293          "200": {
81294            "description": "OK",
81295            "schema": {
81296              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81297            }
81298          },
81299          "201": {
81300            "description": "Created",
81301            "schema": {
81302              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81303            }
81304          },
81305          "202": {
81306            "description": "Accepted",
81307            "schema": {
81308              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81309            }
81310          },
81311          "401": {
81312            "description": "Unauthorized"
81313          }
81314        },
81315        "schemes": [
81316          "https"
81317        ],
81318        "tags": [
81319          "extensions_v1beta1"
81320        ],
81321        "x-kubernetes-action": "post",
81322        "x-kubernetes-group-version-kind": {
81323          "group": "extensions",
81324          "kind": "PodSecurityPolicy",
81325          "version": "v1beta1"
81326        }
81327      }
81328    },
81329    "/apis/extensions/v1beta1/podsecuritypolicies/{name}": {
81330      "delete": {
81331        "consumes": [
81332          "*/*"
81333        ],
81334        "description": "delete a PodSecurityPolicy",
81335        "operationId": "deleteExtensionsV1beta1PodSecurityPolicy",
81336        "parameters": [
81337          {
81338            "in": "body",
81339            "name": "body",
81340            "schema": {
81341              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
81342            }
81343          },
81344          {
81345            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81346            "in": "query",
81347            "name": "dryRun",
81348            "type": "string",
81349            "uniqueItems": true
81350          },
81351          {
81352            "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.",
81353            "in": "query",
81354            "name": "gracePeriodSeconds",
81355            "type": "integer",
81356            "uniqueItems": true
81357          },
81358          {
81359            "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.",
81360            "in": "query",
81361            "name": "orphanDependents",
81362            "type": "boolean",
81363            "uniqueItems": true
81364          },
81365          {
81366            "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.",
81367            "in": "query",
81368            "name": "propagationPolicy",
81369            "type": "string",
81370            "uniqueItems": true
81371          }
81372        ],
81373        "produces": [
81374          "application/json",
81375          "application/yaml",
81376          "application/vnd.kubernetes.protobuf"
81377        ],
81378        "responses": {
81379          "200": {
81380            "description": "OK",
81381            "schema": {
81382              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81383            }
81384          },
81385          "202": {
81386            "description": "Accepted",
81387            "schema": {
81388              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
81389            }
81390          },
81391          "401": {
81392            "description": "Unauthorized"
81393          }
81394        },
81395        "schemes": [
81396          "https"
81397        ],
81398        "tags": [
81399          "extensions_v1beta1"
81400        ],
81401        "x-kubernetes-action": "delete",
81402        "x-kubernetes-group-version-kind": {
81403          "group": "extensions",
81404          "kind": "PodSecurityPolicy",
81405          "version": "v1beta1"
81406        }
81407      },
81408      "get": {
81409        "consumes": [
81410          "*/*"
81411        ],
81412        "description": "read the specified PodSecurityPolicy",
81413        "operationId": "readExtensionsV1beta1PodSecurityPolicy",
81414        "parameters": [
81415          {
81416            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
81417            "in": "query",
81418            "name": "exact",
81419            "type": "boolean",
81420            "uniqueItems": true
81421          },
81422          {
81423            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
81424            "in": "query",
81425            "name": "export",
81426            "type": "boolean",
81427            "uniqueItems": true
81428          }
81429        ],
81430        "produces": [
81431          "application/json",
81432          "application/yaml",
81433          "application/vnd.kubernetes.protobuf"
81434        ],
81435        "responses": {
81436          "200": {
81437            "description": "OK",
81438            "schema": {
81439              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81440            }
81441          },
81442          "401": {
81443            "description": "Unauthorized"
81444          }
81445        },
81446        "schemes": [
81447          "https"
81448        ],
81449        "tags": [
81450          "extensions_v1beta1"
81451        ],
81452        "x-kubernetes-action": "get",
81453        "x-kubernetes-group-version-kind": {
81454          "group": "extensions",
81455          "kind": "PodSecurityPolicy",
81456          "version": "v1beta1"
81457        }
81458      },
81459      "parameters": [
81460        {
81461          "description": "name of the PodSecurityPolicy",
81462          "in": "path",
81463          "name": "name",
81464          "required": true,
81465          "type": "string",
81466          "uniqueItems": true
81467        },
81468        {
81469          "description": "If 'true', then the output is pretty printed.",
81470          "in": "query",
81471          "name": "pretty",
81472          "type": "string",
81473          "uniqueItems": true
81474        }
81475      ],
81476      "patch": {
81477        "consumes": [
81478          "application/json-patch+json",
81479          "application/merge-patch+json",
81480          "application/strategic-merge-patch+json"
81481        ],
81482        "description": "partially update the specified PodSecurityPolicy",
81483        "operationId": "patchExtensionsV1beta1PodSecurityPolicy",
81484        "parameters": [
81485          {
81486            "in": "body",
81487            "name": "body",
81488            "required": true,
81489            "schema": {
81490              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
81491            }
81492          },
81493          {
81494            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81495            "in": "query",
81496            "name": "dryRun",
81497            "type": "string",
81498            "uniqueItems": true
81499          },
81500          {
81501            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
81502            "in": "query",
81503            "name": "fieldManager",
81504            "type": "string",
81505            "uniqueItems": true
81506          },
81507          {
81508            "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.",
81509            "in": "query",
81510            "name": "force",
81511            "type": "boolean",
81512            "uniqueItems": true
81513          }
81514        ],
81515        "produces": [
81516          "application/json",
81517          "application/yaml",
81518          "application/vnd.kubernetes.protobuf"
81519        ],
81520        "responses": {
81521          "200": {
81522            "description": "OK",
81523            "schema": {
81524              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81525            }
81526          },
81527          "401": {
81528            "description": "Unauthorized"
81529          }
81530        },
81531        "schemes": [
81532          "https"
81533        ],
81534        "tags": [
81535          "extensions_v1beta1"
81536        ],
81537        "x-kubernetes-action": "patch",
81538        "x-kubernetes-group-version-kind": {
81539          "group": "extensions",
81540          "kind": "PodSecurityPolicy",
81541          "version": "v1beta1"
81542        }
81543      },
81544      "put": {
81545        "consumes": [
81546          "*/*"
81547        ],
81548        "description": "replace the specified PodSecurityPolicy",
81549        "operationId": "replaceExtensionsV1beta1PodSecurityPolicy",
81550        "parameters": [
81551          {
81552            "in": "body",
81553            "name": "body",
81554            "required": true,
81555            "schema": {
81556              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81557            }
81558          },
81559          {
81560            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
81561            "in": "query",
81562            "name": "dryRun",
81563            "type": "string",
81564            "uniqueItems": true
81565          },
81566          {
81567            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
81568            "in": "query",
81569            "name": "fieldManager",
81570            "type": "string",
81571            "uniqueItems": true
81572          }
81573        ],
81574        "produces": [
81575          "application/json",
81576          "application/yaml",
81577          "application/vnd.kubernetes.protobuf"
81578        ],
81579        "responses": {
81580          "200": {
81581            "description": "OK",
81582            "schema": {
81583              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81584            }
81585          },
81586          "201": {
81587            "description": "Created",
81588            "schema": {
81589              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy"
81590            }
81591          },
81592          "401": {
81593            "description": "Unauthorized"
81594          }
81595        },
81596        "schemes": [
81597          "https"
81598        ],
81599        "tags": [
81600          "extensions_v1beta1"
81601        ],
81602        "x-kubernetes-action": "put",
81603        "x-kubernetes-group-version-kind": {
81604          "group": "extensions",
81605          "kind": "PodSecurityPolicy",
81606          "version": "v1beta1"
81607        }
81608      }
81609    },
81610    "/apis/extensions/v1beta1/replicasets": {
81611      "get": {
81612        "consumes": [
81613          "*/*"
81614        ],
81615        "description": "list or watch objects of kind ReplicaSet",
81616        "operationId": "listExtensionsV1beta1ReplicaSetForAllNamespaces",
81617        "produces": [
81618          "application/json",
81619          "application/yaml",
81620          "application/vnd.kubernetes.protobuf",
81621          "application/json;stream=watch",
81622          "application/vnd.kubernetes.protobuf;stream=watch"
81623        ],
81624        "responses": {
81625          "200": {
81626            "description": "OK",
81627            "schema": {
81628              "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSetList"
81629            }
81630          },
81631          "401": {
81632            "description": "Unauthorized"
81633          }
81634        },
81635        "schemes": [
81636          "https"
81637        ],
81638        "tags": [
81639          "extensions_v1beta1"
81640        ],
81641        "x-kubernetes-action": "list",
81642        "x-kubernetes-group-version-kind": {
81643          "group": "extensions",
81644          "kind": "ReplicaSet",
81645          "version": "v1beta1"
81646        }
81647      },
81648      "parameters": [
81649        {
81650          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
81651          "in": "query",
81652          "name": "allowWatchBookmarks",
81653          "type": "boolean",
81654          "uniqueItems": true
81655        },
81656        {
81657          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81658          "in": "query",
81659          "name": "continue",
81660          "type": "string",
81661          "uniqueItems": true
81662        },
81663        {
81664          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81665          "in": "query",
81666          "name": "fieldSelector",
81667          "type": "string",
81668          "uniqueItems": true
81669        },
81670        {
81671          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81672          "in": "query",
81673          "name": "labelSelector",
81674          "type": "string",
81675          "uniqueItems": true
81676        },
81677        {
81678          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81679          "in": "query",
81680          "name": "limit",
81681          "type": "integer",
81682          "uniqueItems": true
81683        },
81684        {
81685          "description": "If 'true', then the output is pretty printed.",
81686          "in": "query",
81687          "name": "pretty",
81688          "type": "string",
81689          "uniqueItems": true
81690        },
81691        {
81692          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
81693          "in": "query",
81694          "name": "resourceVersion",
81695          "type": "string",
81696          "uniqueItems": true
81697        },
81698        {
81699          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81700          "in": "query",
81701          "name": "timeoutSeconds",
81702          "type": "integer",
81703          "uniqueItems": true
81704        },
81705        {
81706          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81707          "in": "query",
81708          "name": "watch",
81709          "type": "boolean",
81710          "uniqueItems": true
81711        }
81712      ]
81713    },
81714    "/apis/extensions/v1beta1/watch/daemonsets": {
81715      "get": {
81716        "consumes": [
81717          "*/*"
81718        ],
81719        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
81720        "operationId": "watchExtensionsV1beta1DaemonSetListForAllNamespaces",
81721        "produces": [
81722          "application/json",
81723          "application/yaml",
81724          "application/vnd.kubernetes.protobuf",
81725          "application/json;stream=watch",
81726          "application/vnd.kubernetes.protobuf;stream=watch"
81727        ],
81728        "responses": {
81729          "200": {
81730            "description": "OK",
81731            "schema": {
81732              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81733            }
81734          },
81735          "401": {
81736            "description": "Unauthorized"
81737          }
81738        },
81739        "schemes": [
81740          "https"
81741        ],
81742        "tags": [
81743          "extensions_v1beta1"
81744        ],
81745        "x-kubernetes-action": "watchlist",
81746        "x-kubernetes-group-version-kind": {
81747          "group": "extensions",
81748          "kind": "DaemonSet",
81749          "version": "v1beta1"
81750        }
81751      },
81752      "parameters": [
81753        {
81754          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
81755          "in": "query",
81756          "name": "allowWatchBookmarks",
81757          "type": "boolean",
81758          "uniqueItems": true
81759        },
81760        {
81761          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81762          "in": "query",
81763          "name": "continue",
81764          "type": "string",
81765          "uniqueItems": true
81766        },
81767        {
81768          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81769          "in": "query",
81770          "name": "fieldSelector",
81771          "type": "string",
81772          "uniqueItems": true
81773        },
81774        {
81775          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81776          "in": "query",
81777          "name": "labelSelector",
81778          "type": "string",
81779          "uniqueItems": true
81780        },
81781        {
81782          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81783          "in": "query",
81784          "name": "limit",
81785          "type": "integer",
81786          "uniqueItems": true
81787        },
81788        {
81789          "description": "If 'true', then the output is pretty printed.",
81790          "in": "query",
81791          "name": "pretty",
81792          "type": "string",
81793          "uniqueItems": true
81794        },
81795        {
81796          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
81797          "in": "query",
81798          "name": "resourceVersion",
81799          "type": "string",
81800          "uniqueItems": true
81801        },
81802        {
81803          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81804          "in": "query",
81805          "name": "timeoutSeconds",
81806          "type": "integer",
81807          "uniqueItems": true
81808        },
81809        {
81810          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81811          "in": "query",
81812          "name": "watch",
81813          "type": "boolean",
81814          "uniqueItems": true
81815        }
81816      ]
81817    },
81818    "/apis/extensions/v1beta1/watch/deployments": {
81819      "get": {
81820        "consumes": [
81821          "*/*"
81822        ],
81823        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
81824        "operationId": "watchExtensionsV1beta1DeploymentListForAllNamespaces",
81825        "produces": [
81826          "application/json",
81827          "application/yaml",
81828          "application/vnd.kubernetes.protobuf",
81829          "application/json;stream=watch",
81830          "application/vnd.kubernetes.protobuf;stream=watch"
81831        ],
81832        "responses": {
81833          "200": {
81834            "description": "OK",
81835            "schema": {
81836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81837            }
81838          },
81839          "401": {
81840            "description": "Unauthorized"
81841          }
81842        },
81843        "schemes": [
81844          "https"
81845        ],
81846        "tags": [
81847          "extensions_v1beta1"
81848        ],
81849        "x-kubernetes-action": "watchlist",
81850        "x-kubernetes-group-version-kind": {
81851          "group": "extensions",
81852          "kind": "Deployment",
81853          "version": "v1beta1"
81854        }
81855      },
81856      "parameters": [
81857        {
81858          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
81859          "in": "query",
81860          "name": "allowWatchBookmarks",
81861          "type": "boolean",
81862          "uniqueItems": true
81863        },
81864        {
81865          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81866          "in": "query",
81867          "name": "continue",
81868          "type": "string",
81869          "uniqueItems": true
81870        },
81871        {
81872          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81873          "in": "query",
81874          "name": "fieldSelector",
81875          "type": "string",
81876          "uniqueItems": true
81877        },
81878        {
81879          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81880          "in": "query",
81881          "name": "labelSelector",
81882          "type": "string",
81883          "uniqueItems": true
81884        },
81885        {
81886          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81887          "in": "query",
81888          "name": "limit",
81889          "type": "integer",
81890          "uniqueItems": true
81891        },
81892        {
81893          "description": "If 'true', then the output is pretty printed.",
81894          "in": "query",
81895          "name": "pretty",
81896          "type": "string",
81897          "uniqueItems": true
81898        },
81899        {
81900          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
81901          "in": "query",
81902          "name": "resourceVersion",
81903          "type": "string",
81904          "uniqueItems": true
81905        },
81906        {
81907          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
81908          "in": "query",
81909          "name": "timeoutSeconds",
81910          "type": "integer",
81911          "uniqueItems": true
81912        },
81913        {
81914          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
81915          "in": "query",
81916          "name": "watch",
81917          "type": "boolean",
81918          "uniqueItems": true
81919        }
81920      ]
81921    },
81922    "/apis/extensions/v1beta1/watch/ingresses": {
81923      "get": {
81924        "consumes": [
81925          "*/*"
81926        ],
81927        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
81928        "operationId": "watchExtensionsV1beta1IngressListForAllNamespaces",
81929        "produces": [
81930          "application/json",
81931          "application/yaml",
81932          "application/vnd.kubernetes.protobuf",
81933          "application/json;stream=watch",
81934          "application/vnd.kubernetes.protobuf;stream=watch"
81935        ],
81936        "responses": {
81937          "200": {
81938            "description": "OK",
81939            "schema": {
81940              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
81941            }
81942          },
81943          "401": {
81944            "description": "Unauthorized"
81945          }
81946        },
81947        "schemes": [
81948          "https"
81949        ],
81950        "tags": [
81951          "extensions_v1beta1"
81952        ],
81953        "x-kubernetes-action": "watchlist",
81954        "x-kubernetes-group-version-kind": {
81955          "group": "extensions",
81956          "kind": "Ingress",
81957          "version": "v1beta1"
81958        }
81959      },
81960      "parameters": [
81961        {
81962          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
81963          "in": "query",
81964          "name": "allowWatchBookmarks",
81965          "type": "boolean",
81966          "uniqueItems": true
81967        },
81968        {
81969          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
81970          "in": "query",
81971          "name": "continue",
81972          "type": "string",
81973          "uniqueItems": true
81974        },
81975        {
81976          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
81977          "in": "query",
81978          "name": "fieldSelector",
81979          "type": "string",
81980          "uniqueItems": true
81981        },
81982        {
81983          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
81984          "in": "query",
81985          "name": "labelSelector",
81986          "type": "string",
81987          "uniqueItems": true
81988        },
81989        {
81990          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
81991          "in": "query",
81992          "name": "limit",
81993          "type": "integer",
81994          "uniqueItems": true
81995        },
81996        {
81997          "description": "If 'true', then the output is pretty printed.",
81998          "in": "query",
81999          "name": "pretty",
82000          "type": "string",
82001          "uniqueItems": true
82002        },
82003        {
82004          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82005          "in": "query",
82006          "name": "resourceVersion",
82007          "type": "string",
82008          "uniqueItems": true
82009        },
82010        {
82011          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82012          "in": "query",
82013          "name": "timeoutSeconds",
82014          "type": "integer",
82015          "uniqueItems": true
82016        },
82017        {
82018          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82019          "in": "query",
82020          "name": "watch",
82021          "type": "boolean",
82022          "uniqueItems": true
82023        }
82024      ]
82025    },
82026    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets": {
82027      "get": {
82028        "consumes": [
82029          "*/*"
82030        ],
82031        "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.",
82032        "operationId": "watchExtensionsV1beta1NamespacedDaemonSetList",
82033        "produces": [
82034          "application/json",
82035          "application/yaml",
82036          "application/vnd.kubernetes.protobuf",
82037          "application/json;stream=watch",
82038          "application/vnd.kubernetes.protobuf;stream=watch"
82039        ],
82040        "responses": {
82041          "200": {
82042            "description": "OK",
82043            "schema": {
82044              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82045            }
82046          },
82047          "401": {
82048            "description": "Unauthorized"
82049          }
82050        },
82051        "schemes": [
82052          "https"
82053        ],
82054        "tags": [
82055          "extensions_v1beta1"
82056        ],
82057        "x-kubernetes-action": "watchlist",
82058        "x-kubernetes-group-version-kind": {
82059          "group": "extensions",
82060          "kind": "DaemonSet",
82061          "version": "v1beta1"
82062        }
82063      },
82064      "parameters": [
82065        {
82066          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82067          "in": "query",
82068          "name": "allowWatchBookmarks",
82069          "type": "boolean",
82070          "uniqueItems": true
82071        },
82072        {
82073          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82074          "in": "query",
82075          "name": "continue",
82076          "type": "string",
82077          "uniqueItems": true
82078        },
82079        {
82080          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82081          "in": "query",
82082          "name": "fieldSelector",
82083          "type": "string",
82084          "uniqueItems": true
82085        },
82086        {
82087          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82088          "in": "query",
82089          "name": "labelSelector",
82090          "type": "string",
82091          "uniqueItems": true
82092        },
82093        {
82094          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82095          "in": "query",
82096          "name": "limit",
82097          "type": "integer",
82098          "uniqueItems": true
82099        },
82100        {
82101          "description": "object name and auth scope, such as for teams and projects",
82102          "in": "path",
82103          "name": "namespace",
82104          "required": true,
82105          "type": "string",
82106          "uniqueItems": true
82107        },
82108        {
82109          "description": "If 'true', then the output is pretty printed.",
82110          "in": "query",
82111          "name": "pretty",
82112          "type": "string",
82113          "uniqueItems": true
82114        },
82115        {
82116          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82117          "in": "query",
82118          "name": "resourceVersion",
82119          "type": "string",
82120          "uniqueItems": true
82121        },
82122        {
82123          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82124          "in": "query",
82125          "name": "timeoutSeconds",
82126          "type": "integer",
82127          "uniqueItems": true
82128        },
82129        {
82130          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82131          "in": "query",
82132          "name": "watch",
82133          "type": "boolean",
82134          "uniqueItems": true
82135        }
82136      ]
82137    },
82138    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets/{name}": {
82139      "get": {
82140        "consumes": [
82141          "*/*"
82142        ],
82143        "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.",
82144        "operationId": "watchExtensionsV1beta1NamespacedDaemonSet",
82145        "produces": [
82146          "application/json",
82147          "application/yaml",
82148          "application/vnd.kubernetes.protobuf",
82149          "application/json;stream=watch",
82150          "application/vnd.kubernetes.protobuf;stream=watch"
82151        ],
82152        "responses": {
82153          "200": {
82154            "description": "OK",
82155            "schema": {
82156              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82157            }
82158          },
82159          "401": {
82160            "description": "Unauthorized"
82161          }
82162        },
82163        "schemes": [
82164          "https"
82165        ],
82166        "tags": [
82167          "extensions_v1beta1"
82168        ],
82169        "x-kubernetes-action": "watch",
82170        "x-kubernetes-group-version-kind": {
82171          "group": "extensions",
82172          "kind": "DaemonSet",
82173          "version": "v1beta1"
82174        }
82175      },
82176      "parameters": [
82177        {
82178          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82179          "in": "query",
82180          "name": "allowWatchBookmarks",
82181          "type": "boolean",
82182          "uniqueItems": true
82183        },
82184        {
82185          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82186          "in": "query",
82187          "name": "continue",
82188          "type": "string",
82189          "uniqueItems": true
82190        },
82191        {
82192          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82193          "in": "query",
82194          "name": "fieldSelector",
82195          "type": "string",
82196          "uniqueItems": true
82197        },
82198        {
82199          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82200          "in": "query",
82201          "name": "labelSelector",
82202          "type": "string",
82203          "uniqueItems": true
82204        },
82205        {
82206          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82207          "in": "query",
82208          "name": "limit",
82209          "type": "integer",
82210          "uniqueItems": true
82211        },
82212        {
82213          "description": "name of the DaemonSet",
82214          "in": "path",
82215          "name": "name",
82216          "required": true,
82217          "type": "string",
82218          "uniqueItems": true
82219        },
82220        {
82221          "description": "object name and auth scope, such as for teams and projects",
82222          "in": "path",
82223          "name": "namespace",
82224          "required": true,
82225          "type": "string",
82226          "uniqueItems": true
82227        },
82228        {
82229          "description": "If 'true', then the output is pretty printed.",
82230          "in": "query",
82231          "name": "pretty",
82232          "type": "string",
82233          "uniqueItems": true
82234        },
82235        {
82236          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82237          "in": "query",
82238          "name": "resourceVersion",
82239          "type": "string",
82240          "uniqueItems": true
82241        },
82242        {
82243          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82244          "in": "query",
82245          "name": "timeoutSeconds",
82246          "type": "integer",
82247          "uniqueItems": true
82248        },
82249        {
82250          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82251          "in": "query",
82252          "name": "watch",
82253          "type": "boolean",
82254          "uniqueItems": true
82255        }
82256      ]
82257    },
82258    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments": {
82259      "get": {
82260        "consumes": [
82261          "*/*"
82262        ],
82263        "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.",
82264        "operationId": "watchExtensionsV1beta1NamespacedDeploymentList",
82265        "produces": [
82266          "application/json",
82267          "application/yaml",
82268          "application/vnd.kubernetes.protobuf",
82269          "application/json;stream=watch",
82270          "application/vnd.kubernetes.protobuf;stream=watch"
82271        ],
82272        "responses": {
82273          "200": {
82274            "description": "OK",
82275            "schema": {
82276              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82277            }
82278          },
82279          "401": {
82280            "description": "Unauthorized"
82281          }
82282        },
82283        "schemes": [
82284          "https"
82285        ],
82286        "tags": [
82287          "extensions_v1beta1"
82288        ],
82289        "x-kubernetes-action": "watchlist",
82290        "x-kubernetes-group-version-kind": {
82291          "group": "extensions",
82292          "kind": "Deployment",
82293          "version": "v1beta1"
82294        }
82295      },
82296      "parameters": [
82297        {
82298          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82299          "in": "query",
82300          "name": "allowWatchBookmarks",
82301          "type": "boolean",
82302          "uniqueItems": true
82303        },
82304        {
82305          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82306          "in": "query",
82307          "name": "continue",
82308          "type": "string",
82309          "uniqueItems": true
82310        },
82311        {
82312          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82313          "in": "query",
82314          "name": "fieldSelector",
82315          "type": "string",
82316          "uniqueItems": true
82317        },
82318        {
82319          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82320          "in": "query",
82321          "name": "labelSelector",
82322          "type": "string",
82323          "uniqueItems": true
82324        },
82325        {
82326          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82327          "in": "query",
82328          "name": "limit",
82329          "type": "integer",
82330          "uniqueItems": true
82331        },
82332        {
82333          "description": "object name and auth scope, such as for teams and projects",
82334          "in": "path",
82335          "name": "namespace",
82336          "required": true,
82337          "type": "string",
82338          "uniqueItems": true
82339        },
82340        {
82341          "description": "If 'true', then the output is pretty printed.",
82342          "in": "query",
82343          "name": "pretty",
82344          "type": "string",
82345          "uniqueItems": true
82346        },
82347        {
82348          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82349          "in": "query",
82350          "name": "resourceVersion",
82351          "type": "string",
82352          "uniqueItems": true
82353        },
82354        {
82355          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82356          "in": "query",
82357          "name": "timeoutSeconds",
82358          "type": "integer",
82359          "uniqueItems": true
82360        },
82361        {
82362          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82363          "in": "query",
82364          "name": "watch",
82365          "type": "boolean",
82366          "uniqueItems": true
82367        }
82368      ]
82369    },
82370    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}": {
82371      "get": {
82372        "consumes": [
82373          "*/*"
82374        ],
82375        "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.",
82376        "operationId": "watchExtensionsV1beta1NamespacedDeployment",
82377        "produces": [
82378          "application/json",
82379          "application/yaml",
82380          "application/vnd.kubernetes.protobuf",
82381          "application/json;stream=watch",
82382          "application/vnd.kubernetes.protobuf;stream=watch"
82383        ],
82384        "responses": {
82385          "200": {
82386            "description": "OK",
82387            "schema": {
82388              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82389            }
82390          },
82391          "401": {
82392            "description": "Unauthorized"
82393          }
82394        },
82395        "schemes": [
82396          "https"
82397        ],
82398        "tags": [
82399          "extensions_v1beta1"
82400        ],
82401        "x-kubernetes-action": "watch",
82402        "x-kubernetes-group-version-kind": {
82403          "group": "extensions",
82404          "kind": "Deployment",
82405          "version": "v1beta1"
82406        }
82407      },
82408      "parameters": [
82409        {
82410          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82411          "in": "query",
82412          "name": "allowWatchBookmarks",
82413          "type": "boolean",
82414          "uniqueItems": true
82415        },
82416        {
82417          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82418          "in": "query",
82419          "name": "continue",
82420          "type": "string",
82421          "uniqueItems": true
82422        },
82423        {
82424          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82425          "in": "query",
82426          "name": "fieldSelector",
82427          "type": "string",
82428          "uniqueItems": true
82429        },
82430        {
82431          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82432          "in": "query",
82433          "name": "labelSelector",
82434          "type": "string",
82435          "uniqueItems": true
82436        },
82437        {
82438          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82439          "in": "query",
82440          "name": "limit",
82441          "type": "integer",
82442          "uniqueItems": true
82443        },
82444        {
82445          "description": "name of the Deployment",
82446          "in": "path",
82447          "name": "name",
82448          "required": true,
82449          "type": "string",
82450          "uniqueItems": true
82451        },
82452        {
82453          "description": "object name and auth scope, such as for teams and projects",
82454          "in": "path",
82455          "name": "namespace",
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          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82469          "in": "query",
82470          "name": "resourceVersion",
82471          "type": "string",
82472          "uniqueItems": true
82473        },
82474        {
82475          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82476          "in": "query",
82477          "name": "timeoutSeconds",
82478          "type": "integer",
82479          "uniqueItems": true
82480        },
82481        {
82482          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82483          "in": "query",
82484          "name": "watch",
82485          "type": "boolean",
82486          "uniqueItems": true
82487        }
82488      ]
82489    },
82490    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses": {
82491      "get": {
82492        "consumes": [
82493          "*/*"
82494        ],
82495        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
82496        "operationId": "watchExtensionsV1beta1NamespacedIngressList",
82497        "produces": [
82498          "application/json",
82499          "application/yaml",
82500          "application/vnd.kubernetes.protobuf",
82501          "application/json;stream=watch",
82502          "application/vnd.kubernetes.protobuf;stream=watch"
82503        ],
82504        "responses": {
82505          "200": {
82506            "description": "OK",
82507            "schema": {
82508              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82509            }
82510          },
82511          "401": {
82512            "description": "Unauthorized"
82513          }
82514        },
82515        "schemes": [
82516          "https"
82517        ],
82518        "tags": [
82519          "extensions_v1beta1"
82520        ],
82521        "x-kubernetes-action": "watchlist",
82522        "x-kubernetes-group-version-kind": {
82523          "group": "extensions",
82524          "kind": "Ingress",
82525          "version": "v1beta1"
82526        }
82527      },
82528      "parameters": [
82529        {
82530          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82531          "in": "query",
82532          "name": "allowWatchBookmarks",
82533          "type": "boolean",
82534          "uniqueItems": true
82535        },
82536        {
82537          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82538          "in": "query",
82539          "name": "continue",
82540          "type": "string",
82541          "uniqueItems": true
82542        },
82543        {
82544          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82545          "in": "query",
82546          "name": "fieldSelector",
82547          "type": "string",
82548          "uniqueItems": true
82549        },
82550        {
82551          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82552          "in": "query",
82553          "name": "labelSelector",
82554          "type": "string",
82555          "uniqueItems": true
82556        },
82557        {
82558          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82559          "in": "query",
82560          "name": "limit",
82561          "type": "integer",
82562          "uniqueItems": true
82563        },
82564        {
82565          "description": "object name and auth scope, such as for teams and projects",
82566          "in": "path",
82567          "name": "namespace",
82568          "required": true,
82569          "type": "string",
82570          "uniqueItems": true
82571        },
82572        {
82573          "description": "If 'true', then the output is pretty printed.",
82574          "in": "query",
82575          "name": "pretty",
82576          "type": "string",
82577          "uniqueItems": true
82578        },
82579        {
82580          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82581          "in": "query",
82582          "name": "resourceVersion",
82583          "type": "string",
82584          "uniqueItems": true
82585        },
82586        {
82587          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82588          "in": "query",
82589          "name": "timeoutSeconds",
82590          "type": "integer",
82591          "uniqueItems": true
82592        },
82593        {
82594          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82595          "in": "query",
82596          "name": "watch",
82597          "type": "boolean",
82598          "uniqueItems": true
82599        }
82600      ]
82601    },
82602    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
82603      "get": {
82604        "consumes": [
82605          "*/*"
82606        ],
82607        "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.",
82608        "operationId": "watchExtensionsV1beta1NamespacedIngress",
82609        "produces": [
82610          "application/json",
82611          "application/yaml",
82612          "application/vnd.kubernetes.protobuf",
82613          "application/json;stream=watch",
82614          "application/vnd.kubernetes.protobuf;stream=watch"
82615        ],
82616        "responses": {
82617          "200": {
82618            "description": "OK",
82619            "schema": {
82620              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82621            }
82622          },
82623          "401": {
82624            "description": "Unauthorized"
82625          }
82626        },
82627        "schemes": [
82628          "https"
82629        ],
82630        "tags": [
82631          "extensions_v1beta1"
82632        ],
82633        "x-kubernetes-action": "watch",
82634        "x-kubernetes-group-version-kind": {
82635          "group": "extensions",
82636          "kind": "Ingress",
82637          "version": "v1beta1"
82638        }
82639      },
82640      "parameters": [
82641        {
82642          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82643          "in": "query",
82644          "name": "allowWatchBookmarks",
82645          "type": "boolean",
82646          "uniqueItems": true
82647        },
82648        {
82649          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82650          "in": "query",
82651          "name": "continue",
82652          "type": "string",
82653          "uniqueItems": true
82654        },
82655        {
82656          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82657          "in": "query",
82658          "name": "fieldSelector",
82659          "type": "string",
82660          "uniqueItems": true
82661        },
82662        {
82663          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82664          "in": "query",
82665          "name": "labelSelector",
82666          "type": "string",
82667          "uniqueItems": true
82668        },
82669        {
82670          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82671          "in": "query",
82672          "name": "limit",
82673          "type": "integer",
82674          "uniqueItems": true
82675        },
82676        {
82677          "description": "name of the Ingress",
82678          "in": "path",
82679          "name": "name",
82680          "required": true,
82681          "type": "string",
82682          "uniqueItems": true
82683        },
82684        {
82685          "description": "object name and auth scope, such as for teams and projects",
82686          "in": "path",
82687          "name": "namespace",
82688          "required": true,
82689          "type": "string",
82690          "uniqueItems": true
82691        },
82692        {
82693          "description": "If 'true', then the output is pretty printed.",
82694          "in": "query",
82695          "name": "pretty",
82696          "type": "string",
82697          "uniqueItems": true
82698        },
82699        {
82700          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82701          "in": "query",
82702          "name": "resourceVersion",
82703          "type": "string",
82704          "uniqueItems": true
82705        },
82706        {
82707          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82708          "in": "query",
82709          "name": "timeoutSeconds",
82710          "type": "integer",
82711          "uniqueItems": true
82712        },
82713        {
82714          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82715          "in": "query",
82716          "name": "watch",
82717          "type": "boolean",
82718          "uniqueItems": true
82719        }
82720      ]
82721    },
82722    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies": {
82723      "get": {
82724        "consumes": [
82725          "*/*"
82726        ],
82727        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
82728        "operationId": "watchExtensionsV1beta1NamespacedNetworkPolicyList",
82729        "produces": [
82730          "application/json",
82731          "application/yaml",
82732          "application/vnd.kubernetes.protobuf",
82733          "application/json;stream=watch",
82734          "application/vnd.kubernetes.protobuf;stream=watch"
82735        ],
82736        "responses": {
82737          "200": {
82738            "description": "OK",
82739            "schema": {
82740              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82741            }
82742          },
82743          "401": {
82744            "description": "Unauthorized"
82745          }
82746        },
82747        "schemes": [
82748          "https"
82749        ],
82750        "tags": [
82751          "extensions_v1beta1"
82752        ],
82753        "x-kubernetes-action": "watchlist",
82754        "x-kubernetes-group-version-kind": {
82755          "group": "extensions",
82756          "kind": "NetworkPolicy",
82757          "version": "v1beta1"
82758        }
82759      },
82760      "parameters": [
82761        {
82762          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82763          "in": "query",
82764          "name": "allowWatchBookmarks",
82765          "type": "boolean",
82766          "uniqueItems": true
82767        },
82768        {
82769          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82770          "in": "query",
82771          "name": "continue",
82772          "type": "string",
82773          "uniqueItems": true
82774        },
82775        {
82776          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82777          "in": "query",
82778          "name": "fieldSelector",
82779          "type": "string",
82780          "uniqueItems": true
82781        },
82782        {
82783          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82784          "in": "query",
82785          "name": "labelSelector",
82786          "type": "string",
82787          "uniqueItems": true
82788        },
82789        {
82790          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82791          "in": "query",
82792          "name": "limit",
82793          "type": "integer",
82794          "uniqueItems": true
82795        },
82796        {
82797          "description": "object name and auth scope, such as for teams and projects",
82798          "in": "path",
82799          "name": "namespace",
82800          "required": true,
82801          "type": "string",
82802          "uniqueItems": true
82803        },
82804        {
82805          "description": "If 'true', then the output is pretty printed.",
82806          "in": "query",
82807          "name": "pretty",
82808          "type": "string",
82809          "uniqueItems": true
82810        },
82811        {
82812          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82813          "in": "query",
82814          "name": "resourceVersion",
82815          "type": "string",
82816          "uniqueItems": true
82817        },
82818        {
82819          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82820          "in": "query",
82821          "name": "timeoutSeconds",
82822          "type": "integer",
82823          "uniqueItems": true
82824        },
82825        {
82826          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82827          "in": "query",
82828          "name": "watch",
82829          "type": "boolean",
82830          "uniqueItems": true
82831        }
82832      ]
82833    },
82834    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}": {
82835      "get": {
82836        "consumes": [
82837          "*/*"
82838        ],
82839        "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.",
82840        "operationId": "watchExtensionsV1beta1NamespacedNetworkPolicy",
82841        "produces": [
82842          "application/json",
82843          "application/yaml",
82844          "application/vnd.kubernetes.protobuf",
82845          "application/json;stream=watch",
82846          "application/vnd.kubernetes.protobuf;stream=watch"
82847        ],
82848        "responses": {
82849          "200": {
82850            "description": "OK",
82851            "schema": {
82852              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82853            }
82854          },
82855          "401": {
82856            "description": "Unauthorized"
82857          }
82858        },
82859        "schemes": [
82860          "https"
82861        ],
82862        "tags": [
82863          "extensions_v1beta1"
82864        ],
82865        "x-kubernetes-action": "watch",
82866        "x-kubernetes-group-version-kind": {
82867          "group": "extensions",
82868          "kind": "NetworkPolicy",
82869          "version": "v1beta1"
82870        }
82871      },
82872      "parameters": [
82873        {
82874          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82875          "in": "query",
82876          "name": "allowWatchBookmarks",
82877          "type": "boolean",
82878          "uniqueItems": true
82879        },
82880        {
82881          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
82882          "in": "query",
82883          "name": "continue",
82884          "type": "string",
82885          "uniqueItems": true
82886        },
82887        {
82888          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
82889          "in": "query",
82890          "name": "fieldSelector",
82891          "type": "string",
82892          "uniqueItems": true
82893        },
82894        {
82895          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
82896          "in": "query",
82897          "name": "labelSelector",
82898          "type": "string",
82899          "uniqueItems": true
82900        },
82901        {
82902          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
82903          "in": "query",
82904          "name": "limit",
82905          "type": "integer",
82906          "uniqueItems": true
82907        },
82908        {
82909          "description": "name of the NetworkPolicy",
82910          "in": "path",
82911          "name": "name",
82912          "required": true,
82913          "type": "string",
82914          "uniqueItems": true
82915        },
82916        {
82917          "description": "object name and auth scope, such as for teams and projects",
82918          "in": "path",
82919          "name": "namespace",
82920          "required": true,
82921          "type": "string",
82922          "uniqueItems": true
82923        },
82924        {
82925          "description": "If 'true', then the output is pretty printed.",
82926          "in": "query",
82927          "name": "pretty",
82928          "type": "string",
82929          "uniqueItems": true
82930        },
82931        {
82932          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
82933          "in": "query",
82934          "name": "resourceVersion",
82935          "type": "string",
82936          "uniqueItems": true
82937        },
82938        {
82939          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
82940          "in": "query",
82941          "name": "timeoutSeconds",
82942          "type": "integer",
82943          "uniqueItems": true
82944        },
82945        {
82946          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
82947          "in": "query",
82948          "name": "watch",
82949          "type": "boolean",
82950          "uniqueItems": true
82951        }
82952      ]
82953    },
82954    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets": {
82955      "get": {
82956        "consumes": [
82957          "*/*"
82958        ],
82959        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
82960        "operationId": "watchExtensionsV1beta1NamespacedReplicaSetList",
82961        "produces": [
82962          "application/json",
82963          "application/yaml",
82964          "application/vnd.kubernetes.protobuf",
82965          "application/json;stream=watch",
82966          "application/vnd.kubernetes.protobuf;stream=watch"
82967        ],
82968        "responses": {
82969          "200": {
82970            "description": "OK",
82971            "schema": {
82972              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
82973            }
82974          },
82975          "401": {
82976            "description": "Unauthorized"
82977          }
82978        },
82979        "schemes": [
82980          "https"
82981        ],
82982        "tags": [
82983          "extensions_v1beta1"
82984        ],
82985        "x-kubernetes-action": "watchlist",
82986        "x-kubernetes-group-version-kind": {
82987          "group": "extensions",
82988          "kind": "ReplicaSet",
82989          "version": "v1beta1"
82990        }
82991      },
82992      "parameters": [
82993        {
82994          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
82995          "in": "query",
82996          "name": "allowWatchBookmarks",
82997          "type": "boolean",
82998          "uniqueItems": true
82999        },
83000        {
83001          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83002          "in": "query",
83003          "name": "continue",
83004          "type": "string",
83005          "uniqueItems": true
83006        },
83007        {
83008          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83009          "in": "query",
83010          "name": "fieldSelector",
83011          "type": "string",
83012          "uniqueItems": true
83013        },
83014        {
83015          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83016          "in": "query",
83017          "name": "labelSelector",
83018          "type": "string",
83019          "uniqueItems": true
83020        },
83021        {
83022          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83023          "in": "query",
83024          "name": "limit",
83025          "type": "integer",
83026          "uniqueItems": true
83027        },
83028        {
83029          "description": "object name and auth scope, such as for teams and projects",
83030          "in": "path",
83031          "name": "namespace",
83032          "required": true,
83033          "type": "string",
83034          "uniqueItems": true
83035        },
83036        {
83037          "description": "If 'true', then the output is pretty printed.",
83038          "in": "query",
83039          "name": "pretty",
83040          "type": "string",
83041          "uniqueItems": true
83042        },
83043        {
83044          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83045          "in": "query",
83046          "name": "resourceVersion",
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    },
83066    "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}": {
83067      "get": {
83068        "consumes": [
83069          "*/*"
83070        ],
83071        "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.",
83072        "operationId": "watchExtensionsV1beta1NamespacedReplicaSet",
83073        "produces": [
83074          "application/json",
83075          "application/yaml",
83076          "application/vnd.kubernetes.protobuf",
83077          "application/json;stream=watch",
83078          "application/vnd.kubernetes.protobuf;stream=watch"
83079        ],
83080        "responses": {
83081          "200": {
83082            "description": "OK",
83083            "schema": {
83084              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83085            }
83086          },
83087          "401": {
83088            "description": "Unauthorized"
83089          }
83090        },
83091        "schemes": [
83092          "https"
83093        ],
83094        "tags": [
83095          "extensions_v1beta1"
83096        ],
83097        "x-kubernetes-action": "watch",
83098        "x-kubernetes-group-version-kind": {
83099          "group": "extensions",
83100          "kind": "ReplicaSet",
83101          "version": "v1beta1"
83102        }
83103      },
83104      "parameters": [
83105        {
83106          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83107          "in": "query",
83108          "name": "allowWatchBookmarks",
83109          "type": "boolean",
83110          "uniqueItems": true
83111        },
83112        {
83113          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83114          "in": "query",
83115          "name": "continue",
83116          "type": "string",
83117          "uniqueItems": true
83118        },
83119        {
83120          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83121          "in": "query",
83122          "name": "fieldSelector",
83123          "type": "string",
83124          "uniqueItems": true
83125        },
83126        {
83127          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83128          "in": "query",
83129          "name": "labelSelector",
83130          "type": "string",
83131          "uniqueItems": true
83132        },
83133        {
83134          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83135          "in": "query",
83136          "name": "limit",
83137          "type": "integer",
83138          "uniqueItems": true
83139        },
83140        {
83141          "description": "name of the ReplicaSet",
83142          "in": "path",
83143          "name": "name",
83144          "required": true,
83145          "type": "string",
83146          "uniqueItems": true
83147        },
83148        {
83149          "description": "object name and auth scope, such as for teams and projects",
83150          "in": "path",
83151          "name": "namespace",
83152          "required": true,
83153          "type": "string",
83154          "uniqueItems": true
83155        },
83156        {
83157          "description": "If 'true', then the output is pretty printed.",
83158          "in": "query",
83159          "name": "pretty",
83160          "type": "string",
83161          "uniqueItems": true
83162        },
83163        {
83164          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83165          "in": "query",
83166          "name": "resourceVersion",
83167          "type": "string",
83168          "uniqueItems": true
83169        },
83170        {
83171          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83172          "in": "query",
83173          "name": "timeoutSeconds",
83174          "type": "integer",
83175          "uniqueItems": true
83176        },
83177        {
83178          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83179          "in": "query",
83180          "name": "watch",
83181          "type": "boolean",
83182          "uniqueItems": true
83183        }
83184      ]
83185    },
83186    "/apis/extensions/v1beta1/watch/networkpolicies": {
83187      "get": {
83188        "consumes": [
83189          "*/*"
83190        ],
83191        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
83192        "operationId": "watchExtensionsV1beta1NetworkPolicyListForAllNamespaces",
83193        "produces": [
83194          "application/json",
83195          "application/yaml",
83196          "application/vnd.kubernetes.protobuf",
83197          "application/json;stream=watch",
83198          "application/vnd.kubernetes.protobuf;stream=watch"
83199        ],
83200        "responses": {
83201          "200": {
83202            "description": "OK",
83203            "schema": {
83204              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83205            }
83206          },
83207          "401": {
83208            "description": "Unauthorized"
83209          }
83210        },
83211        "schemes": [
83212          "https"
83213        ],
83214        "tags": [
83215          "extensions_v1beta1"
83216        ],
83217        "x-kubernetes-action": "watchlist",
83218        "x-kubernetes-group-version-kind": {
83219          "group": "extensions",
83220          "kind": "NetworkPolicy",
83221          "version": "v1beta1"
83222        }
83223      },
83224      "parameters": [
83225        {
83226          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83227          "in": "query",
83228          "name": "allowWatchBookmarks",
83229          "type": "boolean",
83230          "uniqueItems": true
83231        },
83232        {
83233          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83234          "in": "query",
83235          "name": "continue",
83236          "type": "string",
83237          "uniqueItems": true
83238        },
83239        {
83240          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83241          "in": "query",
83242          "name": "fieldSelector",
83243          "type": "string",
83244          "uniqueItems": true
83245        },
83246        {
83247          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83248          "in": "query",
83249          "name": "labelSelector",
83250          "type": "string",
83251          "uniqueItems": true
83252        },
83253        {
83254          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83255          "in": "query",
83256          "name": "limit",
83257          "type": "integer",
83258          "uniqueItems": true
83259        },
83260        {
83261          "description": "If 'true', then the output is pretty printed.",
83262          "in": "query",
83263          "name": "pretty",
83264          "type": "string",
83265          "uniqueItems": true
83266        },
83267        {
83268          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83269          "in": "query",
83270          "name": "resourceVersion",
83271          "type": "string",
83272          "uniqueItems": true
83273        },
83274        {
83275          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83276          "in": "query",
83277          "name": "timeoutSeconds",
83278          "type": "integer",
83279          "uniqueItems": true
83280        },
83281        {
83282          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83283          "in": "query",
83284          "name": "watch",
83285          "type": "boolean",
83286          "uniqueItems": true
83287        }
83288      ]
83289    },
83290    "/apis/extensions/v1beta1/watch/podsecuritypolicies": {
83291      "get": {
83292        "consumes": [
83293          "*/*"
83294        ],
83295        "description": "watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
83296        "operationId": "watchExtensionsV1beta1PodSecurityPolicyList",
83297        "produces": [
83298          "application/json",
83299          "application/yaml",
83300          "application/vnd.kubernetes.protobuf",
83301          "application/json;stream=watch",
83302          "application/vnd.kubernetes.protobuf;stream=watch"
83303        ],
83304        "responses": {
83305          "200": {
83306            "description": "OK",
83307            "schema": {
83308              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83309            }
83310          },
83311          "401": {
83312            "description": "Unauthorized"
83313          }
83314        },
83315        "schemes": [
83316          "https"
83317        ],
83318        "tags": [
83319          "extensions_v1beta1"
83320        ],
83321        "x-kubernetes-action": "watchlist",
83322        "x-kubernetes-group-version-kind": {
83323          "group": "extensions",
83324          "kind": "PodSecurityPolicy",
83325          "version": "v1beta1"
83326        }
83327      },
83328      "parameters": [
83329        {
83330          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83331          "in": "query",
83332          "name": "allowWatchBookmarks",
83333          "type": "boolean",
83334          "uniqueItems": true
83335        },
83336        {
83337          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83338          "in": "query",
83339          "name": "continue",
83340          "type": "string",
83341          "uniqueItems": true
83342        },
83343        {
83344          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83345          "in": "query",
83346          "name": "fieldSelector",
83347          "type": "string",
83348          "uniqueItems": true
83349        },
83350        {
83351          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83352          "in": "query",
83353          "name": "labelSelector",
83354          "type": "string",
83355          "uniqueItems": true
83356        },
83357        {
83358          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83359          "in": "query",
83360          "name": "limit",
83361          "type": "integer",
83362          "uniqueItems": true
83363        },
83364        {
83365          "description": "If 'true', then the output is pretty printed.",
83366          "in": "query",
83367          "name": "pretty",
83368          "type": "string",
83369          "uniqueItems": true
83370        },
83371        {
83372          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83373          "in": "query",
83374          "name": "resourceVersion",
83375          "type": "string",
83376          "uniqueItems": true
83377        },
83378        {
83379          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83380          "in": "query",
83381          "name": "timeoutSeconds",
83382          "type": "integer",
83383          "uniqueItems": true
83384        },
83385        {
83386          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83387          "in": "query",
83388          "name": "watch",
83389          "type": "boolean",
83390          "uniqueItems": true
83391        }
83392      ]
83393    },
83394    "/apis/extensions/v1beta1/watch/podsecuritypolicies/{name}": {
83395      "get": {
83396        "consumes": [
83397          "*/*"
83398        ],
83399        "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.",
83400        "operationId": "watchExtensionsV1beta1PodSecurityPolicy",
83401        "produces": [
83402          "application/json",
83403          "application/yaml",
83404          "application/vnd.kubernetes.protobuf",
83405          "application/json;stream=watch",
83406          "application/vnd.kubernetes.protobuf;stream=watch"
83407        ],
83408        "responses": {
83409          "200": {
83410            "description": "OK",
83411            "schema": {
83412              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83413            }
83414          },
83415          "401": {
83416            "description": "Unauthorized"
83417          }
83418        },
83419        "schemes": [
83420          "https"
83421        ],
83422        "tags": [
83423          "extensions_v1beta1"
83424        ],
83425        "x-kubernetes-action": "watch",
83426        "x-kubernetes-group-version-kind": {
83427          "group": "extensions",
83428          "kind": "PodSecurityPolicy",
83429          "version": "v1beta1"
83430        }
83431      },
83432      "parameters": [
83433        {
83434          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83435          "in": "query",
83436          "name": "allowWatchBookmarks",
83437          "type": "boolean",
83438          "uniqueItems": true
83439        },
83440        {
83441          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83442          "in": "query",
83443          "name": "continue",
83444          "type": "string",
83445          "uniqueItems": true
83446        },
83447        {
83448          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83449          "in": "query",
83450          "name": "fieldSelector",
83451          "type": "string",
83452          "uniqueItems": true
83453        },
83454        {
83455          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83456          "in": "query",
83457          "name": "labelSelector",
83458          "type": "string",
83459          "uniqueItems": true
83460        },
83461        {
83462          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83463          "in": "query",
83464          "name": "limit",
83465          "type": "integer",
83466          "uniqueItems": true
83467        },
83468        {
83469          "description": "name of the PodSecurityPolicy",
83470          "in": "path",
83471          "name": "name",
83472          "required": true,
83473          "type": "string",
83474          "uniqueItems": true
83475        },
83476        {
83477          "description": "If 'true', then the output is pretty printed.",
83478          "in": "query",
83479          "name": "pretty",
83480          "type": "string",
83481          "uniqueItems": true
83482        },
83483        {
83484          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83485          "in": "query",
83486          "name": "resourceVersion",
83487          "type": "string",
83488          "uniqueItems": true
83489        },
83490        {
83491          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83492          "in": "query",
83493          "name": "timeoutSeconds",
83494          "type": "integer",
83495          "uniqueItems": true
83496        },
83497        {
83498          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83499          "in": "query",
83500          "name": "watch",
83501          "type": "boolean",
83502          "uniqueItems": true
83503        }
83504      ]
83505    },
83506    "/apis/extensions/v1beta1/watch/replicasets": {
83507      "get": {
83508        "consumes": [
83509          "*/*"
83510        ],
83511        "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.",
83512        "operationId": "watchExtensionsV1beta1ReplicaSetListForAllNamespaces",
83513        "produces": [
83514          "application/json",
83515          "application/yaml",
83516          "application/vnd.kubernetes.protobuf",
83517          "application/json;stream=watch",
83518          "application/vnd.kubernetes.protobuf;stream=watch"
83519        ],
83520        "responses": {
83521          "200": {
83522            "description": "OK",
83523            "schema": {
83524              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
83525            }
83526          },
83527          "401": {
83528            "description": "Unauthorized"
83529          }
83530        },
83531        "schemes": [
83532          "https"
83533        ],
83534        "tags": [
83535          "extensions_v1beta1"
83536        ],
83537        "x-kubernetes-action": "watchlist",
83538        "x-kubernetes-group-version-kind": {
83539          "group": "extensions",
83540          "kind": "ReplicaSet",
83541          "version": "v1beta1"
83542        }
83543      },
83544      "parameters": [
83545        {
83546          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83547          "in": "query",
83548          "name": "allowWatchBookmarks",
83549          "type": "boolean",
83550          "uniqueItems": true
83551        },
83552        {
83553          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83554          "in": "query",
83555          "name": "continue",
83556          "type": "string",
83557          "uniqueItems": true
83558        },
83559        {
83560          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83561          "in": "query",
83562          "name": "fieldSelector",
83563          "type": "string",
83564          "uniqueItems": true
83565        },
83566        {
83567          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83568          "in": "query",
83569          "name": "labelSelector",
83570          "type": "string",
83571          "uniqueItems": true
83572        },
83573        {
83574          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83575          "in": "query",
83576          "name": "limit",
83577          "type": "integer",
83578          "uniqueItems": true
83579        },
83580        {
83581          "description": "If 'true', then the output is pretty printed.",
83582          "in": "query",
83583          "name": "pretty",
83584          "type": "string",
83585          "uniqueItems": true
83586        },
83587        {
83588          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83589          "in": "query",
83590          "name": "resourceVersion",
83591          "type": "string",
83592          "uniqueItems": true
83593        },
83594        {
83595          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83596          "in": "query",
83597          "name": "timeoutSeconds",
83598          "type": "integer",
83599          "uniqueItems": true
83600        },
83601        {
83602          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83603          "in": "query",
83604          "name": "watch",
83605          "type": "boolean",
83606          "uniqueItems": true
83607        }
83608      ]
83609    },
83610    "/apis/networking.k8s.io/": {
83611      "get": {
83612        "consumes": [
83613          "application/json",
83614          "application/yaml",
83615          "application/vnd.kubernetes.protobuf"
83616        ],
83617        "description": "get information of a group",
83618        "operationId": "getNetworkingAPIGroup",
83619        "produces": [
83620          "application/json",
83621          "application/yaml",
83622          "application/vnd.kubernetes.protobuf"
83623        ],
83624        "responses": {
83625          "200": {
83626            "description": "OK",
83627            "schema": {
83628              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
83629            }
83630          },
83631          "401": {
83632            "description": "Unauthorized"
83633          }
83634        },
83635        "schemes": [
83636          "https"
83637        ],
83638        "tags": [
83639          "networking"
83640        ]
83641      }
83642    },
83643    "/apis/networking.k8s.io/v1/": {
83644      "get": {
83645        "consumes": [
83646          "application/json",
83647          "application/yaml",
83648          "application/vnd.kubernetes.protobuf"
83649        ],
83650        "description": "get available resources",
83651        "operationId": "getNetworkingV1APIResources",
83652        "produces": [
83653          "application/json",
83654          "application/yaml",
83655          "application/vnd.kubernetes.protobuf"
83656        ],
83657        "responses": {
83658          "200": {
83659            "description": "OK",
83660            "schema": {
83661              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
83662            }
83663          },
83664          "401": {
83665            "description": "Unauthorized"
83666          }
83667        },
83668        "schemes": [
83669          "https"
83670        ],
83671        "tags": [
83672          "networking_v1"
83673        ]
83674      }
83675    },
83676    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies": {
83677      "delete": {
83678        "consumes": [
83679          "*/*"
83680        ],
83681        "description": "delete collection of NetworkPolicy",
83682        "operationId": "deleteNetworkingV1CollectionNamespacedNetworkPolicy",
83683        "parameters": [
83684          {
83685            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83686            "in": "query",
83687            "name": "allowWatchBookmarks",
83688            "type": "boolean",
83689            "uniqueItems": true
83690          },
83691          {
83692            "in": "body",
83693            "name": "body",
83694            "schema": {
83695              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
83696            }
83697          },
83698          {
83699            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83700            "in": "query",
83701            "name": "continue",
83702            "type": "string",
83703            "uniqueItems": true
83704          },
83705          {
83706            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83707            "in": "query",
83708            "name": "dryRun",
83709            "type": "string",
83710            "uniqueItems": true
83711          },
83712          {
83713            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83714            "in": "query",
83715            "name": "fieldSelector",
83716            "type": "string",
83717            "uniqueItems": true
83718          },
83719          {
83720            "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.",
83721            "in": "query",
83722            "name": "gracePeriodSeconds",
83723            "type": "integer",
83724            "uniqueItems": true
83725          },
83726          {
83727            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83728            "in": "query",
83729            "name": "labelSelector",
83730            "type": "string",
83731            "uniqueItems": true
83732          },
83733          {
83734            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83735            "in": "query",
83736            "name": "limit",
83737            "type": "integer",
83738            "uniqueItems": true
83739          },
83740          {
83741            "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.",
83742            "in": "query",
83743            "name": "orphanDependents",
83744            "type": "boolean",
83745            "uniqueItems": true
83746          },
83747          {
83748            "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.",
83749            "in": "query",
83750            "name": "propagationPolicy",
83751            "type": "string",
83752            "uniqueItems": true
83753          },
83754          {
83755            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83756            "in": "query",
83757            "name": "resourceVersion",
83758            "type": "string",
83759            "uniqueItems": true
83760          },
83761          {
83762            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83763            "in": "query",
83764            "name": "timeoutSeconds",
83765            "type": "integer",
83766            "uniqueItems": true
83767          },
83768          {
83769            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83770            "in": "query",
83771            "name": "watch",
83772            "type": "boolean",
83773            "uniqueItems": true
83774          }
83775        ],
83776        "produces": [
83777          "application/json",
83778          "application/yaml",
83779          "application/vnd.kubernetes.protobuf"
83780        ],
83781        "responses": {
83782          "200": {
83783            "description": "OK",
83784            "schema": {
83785              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
83786            }
83787          },
83788          "401": {
83789            "description": "Unauthorized"
83790          }
83791        },
83792        "schemes": [
83793          "https"
83794        ],
83795        "tags": [
83796          "networking_v1"
83797        ],
83798        "x-kubernetes-action": "deletecollection",
83799        "x-kubernetes-group-version-kind": {
83800          "group": "networking.k8s.io",
83801          "kind": "NetworkPolicy",
83802          "version": "v1"
83803        }
83804      },
83805      "get": {
83806        "consumes": [
83807          "*/*"
83808        ],
83809        "description": "list or watch objects of kind NetworkPolicy",
83810        "operationId": "listNetworkingV1NamespacedNetworkPolicy",
83811        "parameters": [
83812          {
83813            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
83814            "in": "query",
83815            "name": "allowWatchBookmarks",
83816            "type": "boolean",
83817            "uniqueItems": true
83818          },
83819          {
83820            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
83821            "in": "query",
83822            "name": "continue",
83823            "type": "string",
83824            "uniqueItems": true
83825          },
83826          {
83827            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
83828            "in": "query",
83829            "name": "fieldSelector",
83830            "type": "string",
83831            "uniqueItems": true
83832          },
83833          {
83834            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
83835            "in": "query",
83836            "name": "labelSelector",
83837            "type": "string",
83838            "uniqueItems": true
83839          },
83840          {
83841            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
83842            "in": "query",
83843            "name": "limit",
83844            "type": "integer",
83845            "uniqueItems": true
83846          },
83847          {
83848            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
83849            "in": "query",
83850            "name": "resourceVersion",
83851            "type": "string",
83852            "uniqueItems": true
83853          },
83854          {
83855            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
83856            "in": "query",
83857            "name": "timeoutSeconds",
83858            "type": "integer",
83859            "uniqueItems": true
83860          },
83861          {
83862            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
83863            "in": "query",
83864            "name": "watch",
83865            "type": "boolean",
83866            "uniqueItems": true
83867          }
83868        ],
83869        "produces": [
83870          "application/json",
83871          "application/yaml",
83872          "application/vnd.kubernetes.protobuf",
83873          "application/json;stream=watch",
83874          "application/vnd.kubernetes.protobuf;stream=watch"
83875        ],
83876        "responses": {
83877          "200": {
83878            "description": "OK",
83879            "schema": {
83880              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
83881            }
83882          },
83883          "401": {
83884            "description": "Unauthorized"
83885          }
83886        },
83887        "schemes": [
83888          "https"
83889        ],
83890        "tags": [
83891          "networking_v1"
83892        ],
83893        "x-kubernetes-action": "list",
83894        "x-kubernetes-group-version-kind": {
83895          "group": "networking.k8s.io",
83896          "kind": "NetworkPolicy",
83897          "version": "v1"
83898        }
83899      },
83900      "parameters": [
83901        {
83902          "description": "object name and auth scope, such as for teams and projects",
83903          "in": "path",
83904          "name": "namespace",
83905          "required": true,
83906          "type": "string",
83907          "uniqueItems": true
83908        },
83909        {
83910          "description": "If 'true', then the output is pretty printed.",
83911          "in": "query",
83912          "name": "pretty",
83913          "type": "string",
83914          "uniqueItems": true
83915        }
83916      ],
83917      "post": {
83918        "consumes": [
83919          "*/*"
83920        ],
83921        "description": "create a NetworkPolicy",
83922        "operationId": "createNetworkingV1NamespacedNetworkPolicy",
83923        "parameters": [
83924          {
83925            "in": "body",
83926            "name": "body",
83927            "required": true,
83928            "schema": {
83929              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
83930            }
83931          },
83932          {
83933            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
83934            "in": "query",
83935            "name": "dryRun",
83936            "type": "string",
83937            "uniqueItems": true
83938          },
83939          {
83940            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
83941            "in": "query",
83942            "name": "fieldManager",
83943            "type": "string",
83944            "uniqueItems": true
83945          }
83946        ],
83947        "produces": [
83948          "application/json",
83949          "application/yaml",
83950          "application/vnd.kubernetes.protobuf"
83951        ],
83952        "responses": {
83953          "200": {
83954            "description": "OK",
83955            "schema": {
83956              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
83957            }
83958          },
83959          "201": {
83960            "description": "Created",
83961            "schema": {
83962              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
83963            }
83964          },
83965          "202": {
83966            "description": "Accepted",
83967            "schema": {
83968              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
83969            }
83970          },
83971          "401": {
83972            "description": "Unauthorized"
83973          }
83974        },
83975        "schemes": [
83976          "https"
83977        ],
83978        "tags": [
83979          "networking_v1"
83980        ],
83981        "x-kubernetes-action": "post",
83982        "x-kubernetes-group-version-kind": {
83983          "group": "networking.k8s.io",
83984          "kind": "NetworkPolicy",
83985          "version": "v1"
83986        }
83987      }
83988    },
83989    "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}": {
83990      "delete": {
83991        "consumes": [
83992          "*/*"
83993        ],
83994        "description": "delete a NetworkPolicy",
83995        "operationId": "deleteNetworkingV1NamespacedNetworkPolicy",
83996        "parameters": [
83997          {
83998            "in": "body",
83999            "name": "body",
84000            "schema": {
84001              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84002            }
84003          },
84004          {
84005            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84006            "in": "query",
84007            "name": "dryRun",
84008            "type": "string",
84009            "uniqueItems": true
84010          },
84011          {
84012            "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.",
84013            "in": "query",
84014            "name": "gracePeriodSeconds",
84015            "type": "integer",
84016            "uniqueItems": true
84017          },
84018          {
84019            "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.",
84020            "in": "query",
84021            "name": "orphanDependents",
84022            "type": "boolean",
84023            "uniqueItems": true
84024          },
84025          {
84026            "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.",
84027            "in": "query",
84028            "name": "propagationPolicy",
84029            "type": "string",
84030            "uniqueItems": true
84031          }
84032        ],
84033        "produces": [
84034          "application/json",
84035          "application/yaml",
84036          "application/vnd.kubernetes.protobuf"
84037        ],
84038        "responses": {
84039          "200": {
84040            "description": "OK",
84041            "schema": {
84042              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84043            }
84044          },
84045          "202": {
84046            "description": "Accepted",
84047            "schema": {
84048              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84049            }
84050          },
84051          "401": {
84052            "description": "Unauthorized"
84053          }
84054        },
84055        "schemes": [
84056          "https"
84057        ],
84058        "tags": [
84059          "networking_v1"
84060        ],
84061        "x-kubernetes-action": "delete",
84062        "x-kubernetes-group-version-kind": {
84063          "group": "networking.k8s.io",
84064          "kind": "NetworkPolicy",
84065          "version": "v1"
84066        }
84067      },
84068      "get": {
84069        "consumes": [
84070          "*/*"
84071        ],
84072        "description": "read the specified NetworkPolicy",
84073        "operationId": "readNetworkingV1NamespacedNetworkPolicy",
84074        "parameters": [
84075          {
84076            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
84077            "in": "query",
84078            "name": "exact",
84079            "type": "boolean",
84080            "uniqueItems": true
84081          },
84082          {
84083            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
84084            "in": "query",
84085            "name": "export",
84086            "type": "boolean",
84087            "uniqueItems": true
84088          }
84089        ],
84090        "produces": [
84091          "application/json",
84092          "application/yaml",
84093          "application/vnd.kubernetes.protobuf"
84094        ],
84095        "responses": {
84096          "200": {
84097            "description": "OK",
84098            "schema": {
84099              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
84100            }
84101          },
84102          "401": {
84103            "description": "Unauthorized"
84104          }
84105        },
84106        "schemes": [
84107          "https"
84108        ],
84109        "tags": [
84110          "networking_v1"
84111        ],
84112        "x-kubernetes-action": "get",
84113        "x-kubernetes-group-version-kind": {
84114          "group": "networking.k8s.io",
84115          "kind": "NetworkPolicy",
84116          "version": "v1"
84117        }
84118      },
84119      "parameters": [
84120        {
84121          "description": "name of the NetworkPolicy",
84122          "in": "path",
84123          "name": "name",
84124          "required": true,
84125          "type": "string",
84126          "uniqueItems": true
84127        },
84128        {
84129          "description": "object name and auth scope, such as for teams and projects",
84130          "in": "path",
84131          "name": "namespace",
84132          "required": true,
84133          "type": "string",
84134          "uniqueItems": true
84135        },
84136        {
84137          "description": "If 'true', then the output is pretty printed.",
84138          "in": "query",
84139          "name": "pretty",
84140          "type": "string",
84141          "uniqueItems": true
84142        }
84143      ],
84144      "patch": {
84145        "consumes": [
84146          "application/json-patch+json",
84147          "application/merge-patch+json",
84148          "application/strategic-merge-patch+json"
84149        ],
84150        "description": "partially update the specified NetworkPolicy",
84151        "operationId": "patchNetworkingV1NamespacedNetworkPolicy",
84152        "parameters": [
84153          {
84154            "in": "body",
84155            "name": "body",
84156            "required": true,
84157            "schema": {
84158              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
84159            }
84160          },
84161          {
84162            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84163            "in": "query",
84164            "name": "dryRun",
84165            "type": "string",
84166            "uniqueItems": true
84167          },
84168          {
84169            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
84170            "in": "query",
84171            "name": "fieldManager",
84172            "type": "string",
84173            "uniqueItems": true
84174          },
84175          {
84176            "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.",
84177            "in": "query",
84178            "name": "force",
84179            "type": "boolean",
84180            "uniqueItems": true
84181          }
84182        ],
84183        "produces": [
84184          "application/json",
84185          "application/yaml",
84186          "application/vnd.kubernetes.protobuf"
84187        ],
84188        "responses": {
84189          "200": {
84190            "description": "OK",
84191            "schema": {
84192              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
84193            }
84194          },
84195          "401": {
84196            "description": "Unauthorized"
84197          }
84198        },
84199        "schemes": [
84200          "https"
84201        ],
84202        "tags": [
84203          "networking_v1"
84204        ],
84205        "x-kubernetes-action": "patch",
84206        "x-kubernetes-group-version-kind": {
84207          "group": "networking.k8s.io",
84208          "kind": "NetworkPolicy",
84209          "version": "v1"
84210        }
84211      },
84212      "put": {
84213        "consumes": [
84214          "*/*"
84215        ],
84216        "description": "replace the specified NetworkPolicy",
84217        "operationId": "replaceNetworkingV1NamespacedNetworkPolicy",
84218        "parameters": [
84219          {
84220            "in": "body",
84221            "name": "body",
84222            "required": true,
84223            "schema": {
84224              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
84225            }
84226          },
84227          {
84228            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84229            "in": "query",
84230            "name": "dryRun",
84231            "type": "string",
84232            "uniqueItems": true
84233          },
84234          {
84235            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
84236            "in": "query",
84237            "name": "fieldManager",
84238            "type": "string",
84239            "uniqueItems": true
84240          }
84241        ],
84242        "produces": [
84243          "application/json",
84244          "application/yaml",
84245          "application/vnd.kubernetes.protobuf"
84246        ],
84247        "responses": {
84248          "200": {
84249            "description": "OK",
84250            "schema": {
84251              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
84252            }
84253          },
84254          "201": {
84255            "description": "Created",
84256            "schema": {
84257              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy"
84258            }
84259          },
84260          "401": {
84261            "description": "Unauthorized"
84262          }
84263        },
84264        "schemes": [
84265          "https"
84266        ],
84267        "tags": [
84268          "networking_v1"
84269        ],
84270        "x-kubernetes-action": "put",
84271        "x-kubernetes-group-version-kind": {
84272          "group": "networking.k8s.io",
84273          "kind": "NetworkPolicy",
84274          "version": "v1"
84275        }
84276      }
84277    },
84278    "/apis/networking.k8s.io/v1/networkpolicies": {
84279      "get": {
84280        "consumes": [
84281          "*/*"
84282        ],
84283        "description": "list or watch objects of kind NetworkPolicy",
84284        "operationId": "listNetworkingV1NetworkPolicyForAllNamespaces",
84285        "produces": [
84286          "application/json",
84287          "application/yaml",
84288          "application/vnd.kubernetes.protobuf",
84289          "application/json;stream=watch",
84290          "application/vnd.kubernetes.protobuf;stream=watch"
84291        ],
84292        "responses": {
84293          "200": {
84294            "description": "OK",
84295            "schema": {
84296              "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicyList"
84297            }
84298          },
84299          "401": {
84300            "description": "Unauthorized"
84301          }
84302        },
84303        "schemes": [
84304          "https"
84305        ],
84306        "tags": [
84307          "networking_v1"
84308        ],
84309        "x-kubernetes-action": "list",
84310        "x-kubernetes-group-version-kind": {
84311          "group": "networking.k8s.io",
84312          "kind": "NetworkPolicy",
84313          "version": "v1"
84314        }
84315      },
84316      "parameters": [
84317        {
84318          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84319          "in": "query",
84320          "name": "allowWatchBookmarks",
84321          "type": "boolean",
84322          "uniqueItems": true
84323        },
84324        {
84325          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84326          "in": "query",
84327          "name": "continue",
84328          "type": "string",
84329          "uniqueItems": true
84330        },
84331        {
84332          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84333          "in": "query",
84334          "name": "fieldSelector",
84335          "type": "string",
84336          "uniqueItems": true
84337        },
84338        {
84339          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84340          "in": "query",
84341          "name": "labelSelector",
84342          "type": "string",
84343          "uniqueItems": true
84344        },
84345        {
84346          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84347          "in": "query",
84348          "name": "limit",
84349          "type": "integer",
84350          "uniqueItems": true
84351        },
84352        {
84353          "description": "If 'true', then the output is pretty printed.",
84354          "in": "query",
84355          "name": "pretty",
84356          "type": "string",
84357          "uniqueItems": true
84358        },
84359        {
84360          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
84361          "in": "query",
84362          "name": "resourceVersion",
84363          "type": "string",
84364          "uniqueItems": true
84365        },
84366        {
84367          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84368          "in": "query",
84369          "name": "timeoutSeconds",
84370          "type": "integer",
84371          "uniqueItems": true
84372        },
84373        {
84374          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84375          "in": "query",
84376          "name": "watch",
84377          "type": "boolean",
84378          "uniqueItems": true
84379        }
84380      ]
84381    },
84382    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies": {
84383      "get": {
84384        "consumes": [
84385          "*/*"
84386        ],
84387        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
84388        "operationId": "watchNetworkingV1NamespacedNetworkPolicyList",
84389        "produces": [
84390          "application/json",
84391          "application/yaml",
84392          "application/vnd.kubernetes.protobuf",
84393          "application/json;stream=watch",
84394          "application/vnd.kubernetes.protobuf;stream=watch"
84395        ],
84396        "responses": {
84397          "200": {
84398            "description": "OK",
84399            "schema": {
84400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84401            }
84402          },
84403          "401": {
84404            "description": "Unauthorized"
84405          }
84406        },
84407        "schemes": [
84408          "https"
84409        ],
84410        "tags": [
84411          "networking_v1"
84412        ],
84413        "x-kubernetes-action": "watchlist",
84414        "x-kubernetes-group-version-kind": {
84415          "group": "networking.k8s.io",
84416          "kind": "NetworkPolicy",
84417          "version": "v1"
84418        }
84419      },
84420      "parameters": [
84421        {
84422          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84423          "in": "query",
84424          "name": "allowWatchBookmarks",
84425          "type": "boolean",
84426          "uniqueItems": true
84427        },
84428        {
84429          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84430          "in": "query",
84431          "name": "continue",
84432          "type": "string",
84433          "uniqueItems": true
84434        },
84435        {
84436          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84437          "in": "query",
84438          "name": "fieldSelector",
84439          "type": "string",
84440          "uniqueItems": true
84441        },
84442        {
84443          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84444          "in": "query",
84445          "name": "labelSelector",
84446          "type": "string",
84447          "uniqueItems": true
84448        },
84449        {
84450          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84451          "in": "query",
84452          "name": "limit",
84453          "type": "integer",
84454          "uniqueItems": true
84455        },
84456        {
84457          "description": "object name and auth scope, such as for teams and projects",
84458          "in": "path",
84459          "name": "namespace",
84460          "required": true,
84461          "type": "string",
84462          "uniqueItems": true
84463        },
84464        {
84465          "description": "If 'true', then the output is pretty printed.",
84466          "in": "query",
84467          "name": "pretty",
84468          "type": "string",
84469          "uniqueItems": true
84470        },
84471        {
84472          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
84473          "in": "query",
84474          "name": "resourceVersion",
84475          "type": "string",
84476          "uniqueItems": true
84477        },
84478        {
84479          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84480          "in": "query",
84481          "name": "timeoutSeconds",
84482          "type": "integer",
84483          "uniqueItems": true
84484        },
84485        {
84486          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84487          "in": "query",
84488          "name": "watch",
84489          "type": "boolean",
84490          "uniqueItems": true
84491        }
84492      ]
84493    },
84494    "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}": {
84495      "get": {
84496        "consumes": [
84497          "*/*"
84498        ],
84499        "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.",
84500        "operationId": "watchNetworkingV1NamespacedNetworkPolicy",
84501        "produces": [
84502          "application/json",
84503          "application/yaml",
84504          "application/vnd.kubernetes.protobuf",
84505          "application/json;stream=watch",
84506          "application/vnd.kubernetes.protobuf;stream=watch"
84507        ],
84508        "responses": {
84509          "200": {
84510            "description": "OK",
84511            "schema": {
84512              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84513            }
84514          },
84515          "401": {
84516            "description": "Unauthorized"
84517          }
84518        },
84519        "schemes": [
84520          "https"
84521        ],
84522        "tags": [
84523          "networking_v1"
84524        ],
84525        "x-kubernetes-action": "watch",
84526        "x-kubernetes-group-version-kind": {
84527          "group": "networking.k8s.io",
84528          "kind": "NetworkPolicy",
84529          "version": "v1"
84530        }
84531      },
84532      "parameters": [
84533        {
84534          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84535          "in": "query",
84536          "name": "allowWatchBookmarks",
84537          "type": "boolean",
84538          "uniqueItems": true
84539        },
84540        {
84541          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84542          "in": "query",
84543          "name": "continue",
84544          "type": "string",
84545          "uniqueItems": true
84546        },
84547        {
84548          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84549          "in": "query",
84550          "name": "fieldSelector",
84551          "type": "string",
84552          "uniqueItems": true
84553        },
84554        {
84555          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84556          "in": "query",
84557          "name": "labelSelector",
84558          "type": "string",
84559          "uniqueItems": true
84560        },
84561        {
84562          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84563          "in": "query",
84564          "name": "limit",
84565          "type": "integer",
84566          "uniqueItems": true
84567        },
84568        {
84569          "description": "name of the NetworkPolicy",
84570          "in": "path",
84571          "name": "name",
84572          "required": true,
84573          "type": "string",
84574          "uniqueItems": true
84575        },
84576        {
84577          "description": "object name and auth scope, such as for teams and projects",
84578          "in": "path",
84579          "name": "namespace",
84580          "required": true,
84581          "type": "string",
84582          "uniqueItems": true
84583        },
84584        {
84585          "description": "If 'true', then the output is pretty printed.",
84586          "in": "query",
84587          "name": "pretty",
84588          "type": "string",
84589          "uniqueItems": true
84590        },
84591        {
84592          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
84593          "in": "query",
84594          "name": "resourceVersion",
84595          "type": "string",
84596          "uniqueItems": true
84597        },
84598        {
84599          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84600          "in": "query",
84601          "name": "timeoutSeconds",
84602          "type": "integer",
84603          "uniqueItems": true
84604        },
84605        {
84606          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84607          "in": "query",
84608          "name": "watch",
84609          "type": "boolean",
84610          "uniqueItems": true
84611        }
84612      ]
84613    },
84614    "/apis/networking.k8s.io/v1/watch/networkpolicies": {
84615      "get": {
84616        "consumes": [
84617          "*/*"
84618        ],
84619        "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
84620        "operationId": "watchNetworkingV1NetworkPolicyListForAllNamespaces",
84621        "produces": [
84622          "application/json",
84623          "application/yaml",
84624          "application/vnd.kubernetes.protobuf",
84625          "application/json;stream=watch",
84626          "application/vnd.kubernetes.protobuf;stream=watch"
84627        ],
84628        "responses": {
84629          "200": {
84630            "description": "OK",
84631            "schema": {
84632              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
84633            }
84634          },
84635          "401": {
84636            "description": "Unauthorized"
84637          }
84638        },
84639        "schemes": [
84640          "https"
84641        ],
84642        "tags": [
84643          "networking_v1"
84644        ],
84645        "x-kubernetes-action": "watchlist",
84646        "x-kubernetes-group-version-kind": {
84647          "group": "networking.k8s.io",
84648          "kind": "NetworkPolicy",
84649          "version": "v1"
84650        }
84651      },
84652      "parameters": [
84653        {
84654          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84655          "in": "query",
84656          "name": "allowWatchBookmarks",
84657          "type": "boolean",
84658          "uniqueItems": true
84659        },
84660        {
84661          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84662          "in": "query",
84663          "name": "continue",
84664          "type": "string",
84665          "uniqueItems": true
84666        },
84667        {
84668          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84669          "in": "query",
84670          "name": "fieldSelector",
84671          "type": "string",
84672          "uniqueItems": true
84673        },
84674        {
84675          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84676          "in": "query",
84677          "name": "labelSelector",
84678          "type": "string",
84679          "uniqueItems": true
84680        },
84681        {
84682          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84683          "in": "query",
84684          "name": "limit",
84685          "type": "integer",
84686          "uniqueItems": true
84687        },
84688        {
84689          "description": "If 'true', then the output is pretty printed.",
84690          "in": "query",
84691          "name": "pretty",
84692          "type": "string",
84693          "uniqueItems": true
84694        },
84695        {
84696          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
84697          "in": "query",
84698          "name": "resourceVersion",
84699          "type": "string",
84700          "uniqueItems": true
84701        },
84702        {
84703          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84704          "in": "query",
84705          "name": "timeoutSeconds",
84706          "type": "integer",
84707          "uniqueItems": true
84708        },
84709        {
84710          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84711          "in": "query",
84712          "name": "watch",
84713          "type": "boolean",
84714          "uniqueItems": true
84715        }
84716      ]
84717    },
84718    "/apis/networking.k8s.io/v1beta1/": {
84719      "get": {
84720        "consumes": [
84721          "application/json",
84722          "application/yaml",
84723          "application/vnd.kubernetes.protobuf"
84724        ],
84725        "description": "get available resources",
84726        "operationId": "getNetworkingV1beta1APIResources",
84727        "produces": [
84728          "application/json",
84729          "application/yaml",
84730          "application/vnd.kubernetes.protobuf"
84731        ],
84732        "responses": {
84733          "200": {
84734            "description": "OK",
84735            "schema": {
84736              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
84737            }
84738          },
84739          "401": {
84740            "description": "Unauthorized"
84741          }
84742        },
84743        "schemes": [
84744          "https"
84745        ],
84746        "tags": [
84747          "networking_v1beta1"
84748        ]
84749      }
84750    },
84751    "/apis/networking.k8s.io/v1beta1/ingresses": {
84752      "get": {
84753        "consumes": [
84754          "*/*"
84755        ],
84756        "description": "list or watch objects of kind Ingress",
84757        "operationId": "listNetworkingV1beta1IngressForAllNamespaces",
84758        "produces": [
84759          "application/json",
84760          "application/yaml",
84761          "application/vnd.kubernetes.protobuf",
84762          "application/json;stream=watch",
84763          "application/vnd.kubernetes.protobuf;stream=watch"
84764        ],
84765        "responses": {
84766          "200": {
84767            "description": "OK",
84768            "schema": {
84769              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressList"
84770            }
84771          },
84772          "401": {
84773            "description": "Unauthorized"
84774          }
84775        },
84776        "schemes": [
84777          "https"
84778        ],
84779        "tags": [
84780          "networking_v1beta1"
84781        ],
84782        "x-kubernetes-action": "list",
84783        "x-kubernetes-group-version-kind": {
84784          "group": "networking.k8s.io",
84785          "kind": "Ingress",
84786          "version": "v1beta1"
84787        }
84788      },
84789      "parameters": [
84790        {
84791          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84792          "in": "query",
84793          "name": "allowWatchBookmarks",
84794          "type": "boolean",
84795          "uniqueItems": true
84796        },
84797        {
84798          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84799          "in": "query",
84800          "name": "continue",
84801          "type": "string",
84802          "uniqueItems": true
84803        },
84804        {
84805          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84806          "in": "query",
84807          "name": "fieldSelector",
84808          "type": "string",
84809          "uniqueItems": true
84810        },
84811        {
84812          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84813          "in": "query",
84814          "name": "labelSelector",
84815          "type": "string",
84816          "uniqueItems": true
84817        },
84818        {
84819          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84820          "in": "query",
84821          "name": "limit",
84822          "type": "integer",
84823          "uniqueItems": true
84824        },
84825        {
84826          "description": "If 'true', then the output is pretty printed.",
84827          "in": "query",
84828          "name": "pretty",
84829          "type": "string",
84830          "uniqueItems": true
84831        },
84832        {
84833          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
84834          "in": "query",
84835          "name": "resourceVersion",
84836          "type": "string",
84837          "uniqueItems": true
84838        },
84839        {
84840          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84841          "in": "query",
84842          "name": "timeoutSeconds",
84843          "type": "integer",
84844          "uniqueItems": true
84845        },
84846        {
84847          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84848          "in": "query",
84849          "name": "watch",
84850          "type": "boolean",
84851          "uniqueItems": true
84852        }
84853      ]
84854    },
84855    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses": {
84856      "delete": {
84857        "consumes": [
84858          "*/*"
84859        ],
84860        "description": "delete collection of Ingress",
84861        "operationId": "deleteNetworkingV1beta1CollectionNamespacedIngress",
84862        "parameters": [
84863          {
84864            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84865            "in": "query",
84866            "name": "allowWatchBookmarks",
84867            "type": "boolean",
84868            "uniqueItems": true
84869          },
84870          {
84871            "in": "body",
84872            "name": "body",
84873            "schema": {
84874              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
84875            }
84876          },
84877          {
84878            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
84879            "in": "query",
84880            "name": "continue",
84881            "type": "string",
84882            "uniqueItems": true
84883          },
84884          {
84885            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
84886            "in": "query",
84887            "name": "dryRun",
84888            "type": "string",
84889            "uniqueItems": true
84890          },
84891          {
84892            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
84893            "in": "query",
84894            "name": "fieldSelector",
84895            "type": "string",
84896            "uniqueItems": true
84897          },
84898          {
84899            "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.",
84900            "in": "query",
84901            "name": "gracePeriodSeconds",
84902            "type": "integer",
84903            "uniqueItems": true
84904          },
84905          {
84906            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
84907            "in": "query",
84908            "name": "labelSelector",
84909            "type": "string",
84910            "uniqueItems": true
84911          },
84912          {
84913            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
84914            "in": "query",
84915            "name": "limit",
84916            "type": "integer",
84917            "uniqueItems": true
84918          },
84919          {
84920            "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.",
84921            "in": "query",
84922            "name": "orphanDependents",
84923            "type": "boolean",
84924            "uniqueItems": true
84925          },
84926          {
84927            "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.",
84928            "in": "query",
84929            "name": "propagationPolicy",
84930            "type": "string",
84931            "uniqueItems": true
84932          },
84933          {
84934            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
84935            "in": "query",
84936            "name": "resourceVersion",
84937            "type": "string",
84938            "uniqueItems": true
84939          },
84940          {
84941            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
84942            "in": "query",
84943            "name": "timeoutSeconds",
84944            "type": "integer",
84945            "uniqueItems": true
84946          },
84947          {
84948            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
84949            "in": "query",
84950            "name": "watch",
84951            "type": "boolean",
84952            "uniqueItems": true
84953          }
84954        ],
84955        "produces": [
84956          "application/json",
84957          "application/yaml",
84958          "application/vnd.kubernetes.protobuf"
84959        ],
84960        "responses": {
84961          "200": {
84962            "description": "OK",
84963            "schema": {
84964              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
84965            }
84966          },
84967          "401": {
84968            "description": "Unauthorized"
84969          }
84970        },
84971        "schemes": [
84972          "https"
84973        ],
84974        "tags": [
84975          "networking_v1beta1"
84976        ],
84977        "x-kubernetes-action": "deletecollection",
84978        "x-kubernetes-group-version-kind": {
84979          "group": "networking.k8s.io",
84980          "kind": "Ingress",
84981          "version": "v1beta1"
84982        }
84983      },
84984      "get": {
84985        "consumes": [
84986          "*/*"
84987        ],
84988        "description": "list or watch objects of kind Ingress",
84989        "operationId": "listNetworkingV1beta1NamespacedIngress",
84990        "parameters": [
84991          {
84992            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
84993            "in": "query",
84994            "name": "allowWatchBookmarks",
84995            "type": "boolean",
84996            "uniqueItems": true
84997          },
84998          {
84999            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85000            "in": "query",
85001            "name": "continue",
85002            "type": "string",
85003            "uniqueItems": true
85004          },
85005          {
85006            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85007            "in": "query",
85008            "name": "fieldSelector",
85009            "type": "string",
85010            "uniqueItems": true
85011          },
85012          {
85013            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85014            "in": "query",
85015            "name": "labelSelector",
85016            "type": "string",
85017            "uniqueItems": true
85018          },
85019          {
85020            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85021            "in": "query",
85022            "name": "limit",
85023            "type": "integer",
85024            "uniqueItems": true
85025          },
85026          {
85027            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
85028            "in": "query",
85029            "name": "resourceVersion",
85030            "type": "string",
85031            "uniqueItems": true
85032          },
85033          {
85034            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85035            "in": "query",
85036            "name": "timeoutSeconds",
85037            "type": "integer",
85038            "uniqueItems": true
85039          },
85040          {
85041            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85042            "in": "query",
85043            "name": "watch",
85044            "type": "boolean",
85045            "uniqueItems": true
85046          }
85047        ],
85048        "produces": [
85049          "application/json",
85050          "application/yaml",
85051          "application/vnd.kubernetes.protobuf",
85052          "application/json;stream=watch",
85053          "application/vnd.kubernetes.protobuf;stream=watch"
85054        ],
85055        "responses": {
85056          "200": {
85057            "description": "OK",
85058            "schema": {
85059              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.IngressList"
85060            }
85061          },
85062          "401": {
85063            "description": "Unauthorized"
85064          }
85065        },
85066        "schemes": [
85067          "https"
85068        ],
85069        "tags": [
85070          "networking_v1beta1"
85071        ],
85072        "x-kubernetes-action": "list",
85073        "x-kubernetes-group-version-kind": {
85074          "group": "networking.k8s.io",
85075          "kind": "Ingress",
85076          "version": "v1beta1"
85077        }
85078      },
85079      "parameters": [
85080        {
85081          "description": "object name and auth scope, such as for teams and projects",
85082          "in": "path",
85083          "name": "namespace",
85084          "required": true,
85085          "type": "string",
85086          "uniqueItems": true
85087        },
85088        {
85089          "description": "If 'true', then the output is pretty printed.",
85090          "in": "query",
85091          "name": "pretty",
85092          "type": "string",
85093          "uniqueItems": true
85094        }
85095      ],
85096      "post": {
85097        "consumes": [
85098          "*/*"
85099        ],
85100        "description": "create an Ingress",
85101        "operationId": "createNetworkingV1beta1NamespacedIngress",
85102        "parameters": [
85103          {
85104            "in": "body",
85105            "name": "body",
85106            "required": true,
85107            "schema": {
85108              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85109            }
85110          },
85111          {
85112            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85113            "in": "query",
85114            "name": "dryRun",
85115            "type": "string",
85116            "uniqueItems": true
85117          },
85118          {
85119            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85120            "in": "query",
85121            "name": "fieldManager",
85122            "type": "string",
85123            "uniqueItems": true
85124          }
85125        ],
85126        "produces": [
85127          "application/json",
85128          "application/yaml",
85129          "application/vnd.kubernetes.protobuf"
85130        ],
85131        "responses": {
85132          "200": {
85133            "description": "OK",
85134            "schema": {
85135              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85136            }
85137          },
85138          "201": {
85139            "description": "Created",
85140            "schema": {
85141              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85142            }
85143          },
85144          "202": {
85145            "description": "Accepted",
85146            "schema": {
85147              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85148            }
85149          },
85150          "401": {
85151            "description": "Unauthorized"
85152          }
85153        },
85154        "schemes": [
85155          "https"
85156        ],
85157        "tags": [
85158          "networking_v1beta1"
85159        ],
85160        "x-kubernetes-action": "post",
85161        "x-kubernetes-group-version-kind": {
85162          "group": "networking.k8s.io",
85163          "kind": "Ingress",
85164          "version": "v1beta1"
85165        }
85166      }
85167    },
85168    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}": {
85169      "delete": {
85170        "consumes": [
85171          "*/*"
85172        ],
85173        "description": "delete an Ingress",
85174        "operationId": "deleteNetworkingV1beta1NamespacedIngress",
85175        "parameters": [
85176          {
85177            "in": "body",
85178            "name": "body",
85179            "schema": {
85180              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
85181            }
85182          },
85183          {
85184            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85185            "in": "query",
85186            "name": "dryRun",
85187            "type": "string",
85188            "uniqueItems": true
85189          },
85190          {
85191            "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.",
85192            "in": "query",
85193            "name": "gracePeriodSeconds",
85194            "type": "integer",
85195            "uniqueItems": true
85196          },
85197          {
85198            "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.",
85199            "in": "query",
85200            "name": "orphanDependents",
85201            "type": "boolean",
85202            "uniqueItems": true
85203          },
85204          {
85205            "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.",
85206            "in": "query",
85207            "name": "propagationPolicy",
85208            "type": "string",
85209            "uniqueItems": true
85210          }
85211        ],
85212        "produces": [
85213          "application/json",
85214          "application/yaml",
85215          "application/vnd.kubernetes.protobuf"
85216        ],
85217        "responses": {
85218          "200": {
85219            "description": "OK",
85220            "schema": {
85221              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85222            }
85223          },
85224          "202": {
85225            "description": "Accepted",
85226            "schema": {
85227              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
85228            }
85229          },
85230          "401": {
85231            "description": "Unauthorized"
85232          }
85233        },
85234        "schemes": [
85235          "https"
85236        ],
85237        "tags": [
85238          "networking_v1beta1"
85239        ],
85240        "x-kubernetes-action": "delete",
85241        "x-kubernetes-group-version-kind": {
85242          "group": "networking.k8s.io",
85243          "kind": "Ingress",
85244          "version": "v1beta1"
85245        }
85246      },
85247      "get": {
85248        "consumes": [
85249          "*/*"
85250        ],
85251        "description": "read the specified Ingress",
85252        "operationId": "readNetworkingV1beta1NamespacedIngress",
85253        "parameters": [
85254          {
85255            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
85256            "in": "query",
85257            "name": "exact",
85258            "type": "boolean",
85259            "uniqueItems": true
85260          },
85261          {
85262            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
85263            "in": "query",
85264            "name": "export",
85265            "type": "boolean",
85266            "uniqueItems": true
85267          }
85268        ],
85269        "produces": [
85270          "application/json",
85271          "application/yaml",
85272          "application/vnd.kubernetes.protobuf"
85273        ],
85274        "responses": {
85275          "200": {
85276            "description": "OK",
85277            "schema": {
85278              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85279            }
85280          },
85281          "401": {
85282            "description": "Unauthorized"
85283          }
85284        },
85285        "schemes": [
85286          "https"
85287        ],
85288        "tags": [
85289          "networking_v1beta1"
85290        ],
85291        "x-kubernetes-action": "get",
85292        "x-kubernetes-group-version-kind": {
85293          "group": "networking.k8s.io",
85294          "kind": "Ingress",
85295          "version": "v1beta1"
85296        }
85297      },
85298      "parameters": [
85299        {
85300          "description": "name of the Ingress",
85301          "in": "path",
85302          "name": "name",
85303          "required": true,
85304          "type": "string",
85305          "uniqueItems": true
85306        },
85307        {
85308          "description": "object name and auth scope, such as for teams and projects",
85309          "in": "path",
85310          "name": "namespace",
85311          "required": true,
85312          "type": "string",
85313          "uniqueItems": true
85314        },
85315        {
85316          "description": "If 'true', then the output is pretty printed.",
85317          "in": "query",
85318          "name": "pretty",
85319          "type": "string",
85320          "uniqueItems": true
85321        }
85322      ],
85323      "patch": {
85324        "consumes": [
85325          "application/json-patch+json",
85326          "application/merge-patch+json",
85327          "application/strategic-merge-patch+json"
85328        ],
85329        "description": "partially update the specified Ingress",
85330        "operationId": "patchNetworkingV1beta1NamespacedIngress",
85331        "parameters": [
85332          {
85333            "in": "body",
85334            "name": "body",
85335            "required": true,
85336            "schema": {
85337              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85338            }
85339          },
85340          {
85341            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85342            "in": "query",
85343            "name": "dryRun",
85344            "type": "string",
85345            "uniqueItems": true
85346          },
85347          {
85348            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
85349            "in": "query",
85350            "name": "fieldManager",
85351            "type": "string",
85352            "uniqueItems": true
85353          },
85354          {
85355            "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.",
85356            "in": "query",
85357            "name": "force",
85358            "type": "boolean",
85359            "uniqueItems": true
85360          }
85361        ],
85362        "produces": [
85363          "application/json",
85364          "application/yaml",
85365          "application/vnd.kubernetes.protobuf"
85366        ],
85367        "responses": {
85368          "200": {
85369            "description": "OK",
85370            "schema": {
85371              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85372            }
85373          },
85374          "401": {
85375            "description": "Unauthorized"
85376          }
85377        },
85378        "schemes": [
85379          "https"
85380        ],
85381        "tags": [
85382          "networking_v1beta1"
85383        ],
85384        "x-kubernetes-action": "patch",
85385        "x-kubernetes-group-version-kind": {
85386          "group": "networking.k8s.io",
85387          "kind": "Ingress",
85388          "version": "v1beta1"
85389        }
85390      },
85391      "put": {
85392        "consumes": [
85393          "*/*"
85394        ],
85395        "description": "replace the specified Ingress",
85396        "operationId": "replaceNetworkingV1beta1NamespacedIngress",
85397        "parameters": [
85398          {
85399            "in": "body",
85400            "name": "body",
85401            "required": true,
85402            "schema": {
85403              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85404            }
85405          },
85406          {
85407            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85408            "in": "query",
85409            "name": "dryRun",
85410            "type": "string",
85411            "uniqueItems": true
85412          },
85413          {
85414            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85415            "in": "query",
85416            "name": "fieldManager",
85417            "type": "string",
85418            "uniqueItems": true
85419          }
85420        ],
85421        "produces": [
85422          "application/json",
85423          "application/yaml",
85424          "application/vnd.kubernetes.protobuf"
85425        ],
85426        "responses": {
85427          "200": {
85428            "description": "OK",
85429            "schema": {
85430              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85431            }
85432          },
85433          "201": {
85434            "description": "Created",
85435            "schema": {
85436              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85437            }
85438          },
85439          "401": {
85440            "description": "Unauthorized"
85441          }
85442        },
85443        "schemes": [
85444          "https"
85445        ],
85446        "tags": [
85447          "networking_v1beta1"
85448        ],
85449        "x-kubernetes-action": "put",
85450        "x-kubernetes-group-version-kind": {
85451          "group": "networking.k8s.io",
85452          "kind": "Ingress",
85453          "version": "v1beta1"
85454        }
85455      }
85456    },
85457    "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
85458      "get": {
85459        "consumes": [
85460          "*/*"
85461        ],
85462        "description": "read status of the specified Ingress",
85463        "operationId": "readNetworkingV1beta1NamespacedIngressStatus",
85464        "produces": [
85465          "application/json",
85466          "application/yaml",
85467          "application/vnd.kubernetes.protobuf"
85468        ],
85469        "responses": {
85470          "200": {
85471            "description": "OK",
85472            "schema": {
85473              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85474            }
85475          },
85476          "401": {
85477            "description": "Unauthorized"
85478          }
85479        },
85480        "schemes": [
85481          "https"
85482        ],
85483        "tags": [
85484          "networking_v1beta1"
85485        ],
85486        "x-kubernetes-action": "get",
85487        "x-kubernetes-group-version-kind": {
85488          "group": "networking.k8s.io",
85489          "kind": "Ingress",
85490          "version": "v1beta1"
85491        }
85492      },
85493      "parameters": [
85494        {
85495          "description": "name of the Ingress",
85496          "in": "path",
85497          "name": "name",
85498          "required": true,
85499          "type": "string",
85500          "uniqueItems": true
85501        },
85502        {
85503          "description": "object name and auth scope, such as for teams and projects",
85504          "in": "path",
85505          "name": "namespace",
85506          "required": true,
85507          "type": "string",
85508          "uniqueItems": true
85509        },
85510        {
85511          "description": "If 'true', then the output is pretty printed.",
85512          "in": "query",
85513          "name": "pretty",
85514          "type": "string",
85515          "uniqueItems": true
85516        }
85517      ],
85518      "patch": {
85519        "consumes": [
85520          "application/json-patch+json",
85521          "application/merge-patch+json",
85522          "application/strategic-merge-patch+json"
85523        ],
85524        "description": "partially update status of the specified Ingress",
85525        "operationId": "patchNetworkingV1beta1NamespacedIngressStatus",
85526        "parameters": [
85527          {
85528            "in": "body",
85529            "name": "body",
85530            "required": true,
85531            "schema": {
85532              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
85533            }
85534          },
85535          {
85536            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85537            "in": "query",
85538            "name": "dryRun",
85539            "type": "string",
85540            "uniqueItems": true
85541          },
85542          {
85543            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
85544            "in": "query",
85545            "name": "fieldManager",
85546            "type": "string",
85547            "uniqueItems": true
85548          },
85549          {
85550            "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.",
85551            "in": "query",
85552            "name": "force",
85553            "type": "boolean",
85554            "uniqueItems": true
85555          }
85556        ],
85557        "produces": [
85558          "application/json",
85559          "application/yaml",
85560          "application/vnd.kubernetes.protobuf"
85561        ],
85562        "responses": {
85563          "200": {
85564            "description": "OK",
85565            "schema": {
85566              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85567            }
85568          },
85569          "401": {
85570            "description": "Unauthorized"
85571          }
85572        },
85573        "schemes": [
85574          "https"
85575        ],
85576        "tags": [
85577          "networking_v1beta1"
85578        ],
85579        "x-kubernetes-action": "patch",
85580        "x-kubernetes-group-version-kind": {
85581          "group": "networking.k8s.io",
85582          "kind": "Ingress",
85583          "version": "v1beta1"
85584        }
85585      },
85586      "put": {
85587        "consumes": [
85588          "*/*"
85589        ],
85590        "description": "replace status of the specified Ingress",
85591        "operationId": "replaceNetworkingV1beta1NamespacedIngressStatus",
85592        "parameters": [
85593          {
85594            "in": "body",
85595            "name": "body",
85596            "required": true,
85597            "schema": {
85598              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85599            }
85600          },
85601          {
85602            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
85603            "in": "query",
85604            "name": "dryRun",
85605            "type": "string",
85606            "uniqueItems": true
85607          },
85608          {
85609            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
85610            "in": "query",
85611            "name": "fieldManager",
85612            "type": "string",
85613            "uniqueItems": true
85614          }
85615        ],
85616        "produces": [
85617          "application/json",
85618          "application/yaml",
85619          "application/vnd.kubernetes.protobuf"
85620        ],
85621        "responses": {
85622          "200": {
85623            "description": "OK",
85624            "schema": {
85625              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85626            }
85627          },
85628          "201": {
85629            "description": "Created",
85630            "schema": {
85631              "$ref": "#/definitions/io.k8s.api.networking.v1beta1.Ingress"
85632            }
85633          },
85634          "401": {
85635            "description": "Unauthorized"
85636          }
85637        },
85638        "schemes": [
85639          "https"
85640        ],
85641        "tags": [
85642          "networking_v1beta1"
85643        ],
85644        "x-kubernetes-action": "put",
85645        "x-kubernetes-group-version-kind": {
85646          "group": "networking.k8s.io",
85647          "kind": "Ingress",
85648          "version": "v1beta1"
85649        }
85650      }
85651    },
85652    "/apis/networking.k8s.io/v1beta1/watch/ingresses": {
85653      "get": {
85654        "consumes": [
85655          "*/*"
85656        ],
85657        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
85658        "operationId": "watchNetworkingV1beta1IngressListForAllNamespaces",
85659        "produces": [
85660          "application/json",
85661          "application/yaml",
85662          "application/vnd.kubernetes.protobuf",
85663          "application/json;stream=watch",
85664          "application/vnd.kubernetes.protobuf;stream=watch"
85665        ],
85666        "responses": {
85667          "200": {
85668            "description": "OK",
85669            "schema": {
85670              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
85671            }
85672          },
85673          "401": {
85674            "description": "Unauthorized"
85675          }
85676        },
85677        "schemes": [
85678          "https"
85679        ],
85680        "tags": [
85681          "networking_v1beta1"
85682        ],
85683        "x-kubernetes-action": "watchlist",
85684        "x-kubernetes-group-version-kind": {
85685          "group": "networking.k8s.io",
85686          "kind": "Ingress",
85687          "version": "v1beta1"
85688        }
85689      },
85690      "parameters": [
85691        {
85692          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
85693          "in": "query",
85694          "name": "allowWatchBookmarks",
85695          "type": "boolean",
85696          "uniqueItems": true
85697        },
85698        {
85699          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85700          "in": "query",
85701          "name": "continue",
85702          "type": "string",
85703          "uniqueItems": true
85704        },
85705        {
85706          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85707          "in": "query",
85708          "name": "fieldSelector",
85709          "type": "string",
85710          "uniqueItems": true
85711        },
85712        {
85713          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85714          "in": "query",
85715          "name": "labelSelector",
85716          "type": "string",
85717          "uniqueItems": true
85718        },
85719        {
85720          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85721          "in": "query",
85722          "name": "limit",
85723          "type": "integer",
85724          "uniqueItems": true
85725        },
85726        {
85727          "description": "If 'true', then the output is pretty printed.",
85728          "in": "query",
85729          "name": "pretty",
85730          "type": "string",
85731          "uniqueItems": true
85732        },
85733        {
85734          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
85735          "in": "query",
85736          "name": "resourceVersion",
85737          "type": "string",
85738          "uniqueItems": true
85739        },
85740        {
85741          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85742          "in": "query",
85743          "name": "timeoutSeconds",
85744          "type": "integer",
85745          "uniqueItems": true
85746        },
85747        {
85748          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85749          "in": "query",
85750          "name": "watch",
85751          "type": "boolean",
85752          "uniqueItems": true
85753        }
85754      ]
85755    },
85756    "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses": {
85757      "get": {
85758        "consumes": [
85759          "*/*"
85760        ],
85761        "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.",
85762        "operationId": "watchNetworkingV1beta1NamespacedIngressList",
85763        "produces": [
85764          "application/json",
85765          "application/yaml",
85766          "application/vnd.kubernetes.protobuf",
85767          "application/json;stream=watch",
85768          "application/vnd.kubernetes.protobuf;stream=watch"
85769        ],
85770        "responses": {
85771          "200": {
85772            "description": "OK",
85773            "schema": {
85774              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
85775            }
85776          },
85777          "401": {
85778            "description": "Unauthorized"
85779          }
85780        },
85781        "schemes": [
85782          "https"
85783        ],
85784        "tags": [
85785          "networking_v1beta1"
85786        ],
85787        "x-kubernetes-action": "watchlist",
85788        "x-kubernetes-group-version-kind": {
85789          "group": "networking.k8s.io",
85790          "kind": "Ingress",
85791          "version": "v1beta1"
85792        }
85793      },
85794      "parameters": [
85795        {
85796          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
85797          "in": "query",
85798          "name": "allowWatchBookmarks",
85799          "type": "boolean",
85800          "uniqueItems": true
85801        },
85802        {
85803          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85804          "in": "query",
85805          "name": "continue",
85806          "type": "string",
85807          "uniqueItems": true
85808        },
85809        {
85810          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85811          "in": "query",
85812          "name": "fieldSelector",
85813          "type": "string",
85814          "uniqueItems": true
85815        },
85816        {
85817          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85818          "in": "query",
85819          "name": "labelSelector",
85820          "type": "string",
85821          "uniqueItems": true
85822        },
85823        {
85824          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85825          "in": "query",
85826          "name": "limit",
85827          "type": "integer",
85828          "uniqueItems": true
85829        },
85830        {
85831          "description": "object name and auth scope, such as for teams and projects",
85832          "in": "path",
85833          "name": "namespace",
85834          "required": true,
85835          "type": "string",
85836          "uniqueItems": true
85837        },
85838        {
85839          "description": "If 'true', then the output is pretty printed.",
85840          "in": "query",
85841          "name": "pretty",
85842          "type": "string",
85843          "uniqueItems": true
85844        },
85845        {
85846          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
85847          "in": "query",
85848          "name": "resourceVersion",
85849          "type": "string",
85850          "uniqueItems": true
85851        },
85852        {
85853          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85854          "in": "query",
85855          "name": "timeoutSeconds",
85856          "type": "integer",
85857          "uniqueItems": true
85858        },
85859        {
85860          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85861          "in": "query",
85862          "name": "watch",
85863          "type": "boolean",
85864          "uniqueItems": true
85865        }
85866      ]
85867    },
85868    "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
85869      "get": {
85870        "consumes": [
85871          "*/*"
85872        ],
85873        "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.",
85874        "operationId": "watchNetworkingV1beta1NamespacedIngress",
85875        "produces": [
85876          "application/json",
85877          "application/yaml",
85878          "application/vnd.kubernetes.protobuf",
85879          "application/json;stream=watch",
85880          "application/vnd.kubernetes.protobuf;stream=watch"
85881        ],
85882        "responses": {
85883          "200": {
85884            "description": "OK",
85885            "schema": {
85886              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
85887            }
85888          },
85889          "401": {
85890            "description": "Unauthorized"
85891          }
85892        },
85893        "schemes": [
85894          "https"
85895        ],
85896        "tags": [
85897          "networking_v1beta1"
85898        ],
85899        "x-kubernetes-action": "watch",
85900        "x-kubernetes-group-version-kind": {
85901          "group": "networking.k8s.io",
85902          "kind": "Ingress",
85903          "version": "v1beta1"
85904        }
85905      },
85906      "parameters": [
85907        {
85908          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
85909          "in": "query",
85910          "name": "allowWatchBookmarks",
85911          "type": "boolean",
85912          "uniqueItems": true
85913        },
85914        {
85915          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
85916          "in": "query",
85917          "name": "continue",
85918          "type": "string",
85919          "uniqueItems": true
85920        },
85921        {
85922          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
85923          "in": "query",
85924          "name": "fieldSelector",
85925          "type": "string",
85926          "uniqueItems": true
85927        },
85928        {
85929          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
85930          "in": "query",
85931          "name": "labelSelector",
85932          "type": "string",
85933          "uniqueItems": true
85934        },
85935        {
85936          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
85937          "in": "query",
85938          "name": "limit",
85939          "type": "integer",
85940          "uniqueItems": true
85941        },
85942        {
85943          "description": "name of the Ingress",
85944          "in": "path",
85945          "name": "name",
85946          "required": true,
85947          "type": "string",
85948          "uniqueItems": true
85949        },
85950        {
85951          "description": "object name and auth scope, such as for teams and projects",
85952          "in": "path",
85953          "name": "namespace",
85954          "required": true,
85955          "type": "string",
85956          "uniqueItems": true
85957        },
85958        {
85959          "description": "If 'true', then the output is pretty printed.",
85960          "in": "query",
85961          "name": "pretty",
85962          "type": "string",
85963          "uniqueItems": true
85964        },
85965        {
85966          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
85967          "in": "query",
85968          "name": "resourceVersion",
85969          "type": "string",
85970          "uniqueItems": true
85971        },
85972        {
85973          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
85974          "in": "query",
85975          "name": "timeoutSeconds",
85976          "type": "integer",
85977          "uniqueItems": true
85978        },
85979        {
85980          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
85981          "in": "query",
85982          "name": "watch",
85983          "type": "boolean",
85984          "uniqueItems": true
85985        }
85986      ]
85987    },
85988    "/apis/node.k8s.io/": {
85989      "get": {
85990        "consumes": [
85991          "application/json",
85992          "application/yaml",
85993          "application/vnd.kubernetes.protobuf"
85994        ],
85995        "description": "get information of a group",
85996        "operationId": "getNodeAPIGroup",
85997        "produces": [
85998          "application/json",
85999          "application/yaml",
86000          "application/vnd.kubernetes.protobuf"
86001        ],
86002        "responses": {
86003          "200": {
86004            "description": "OK",
86005            "schema": {
86006              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
86007            }
86008          },
86009          "401": {
86010            "description": "Unauthorized"
86011          }
86012        },
86013        "schemes": [
86014          "https"
86015        ],
86016        "tags": [
86017          "node"
86018        ]
86019      }
86020    },
86021    "/apis/node.k8s.io/v1alpha1/": {
86022      "get": {
86023        "consumes": [
86024          "application/json",
86025          "application/yaml",
86026          "application/vnd.kubernetes.protobuf"
86027        ],
86028        "description": "get available resources",
86029        "operationId": "getNodeV1alpha1APIResources",
86030        "produces": [
86031          "application/json",
86032          "application/yaml",
86033          "application/vnd.kubernetes.protobuf"
86034        ],
86035        "responses": {
86036          "200": {
86037            "description": "OK",
86038            "schema": {
86039              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
86040            }
86041          },
86042          "401": {
86043            "description": "Unauthorized"
86044          }
86045        },
86046        "schemes": [
86047          "https"
86048        ],
86049        "tags": [
86050          "node_v1alpha1"
86051        ]
86052      }
86053    },
86054    "/apis/node.k8s.io/v1alpha1/runtimeclasses": {
86055      "delete": {
86056        "consumes": [
86057          "*/*"
86058        ],
86059        "description": "delete collection of RuntimeClass",
86060        "operationId": "deleteNodeV1alpha1CollectionRuntimeClass",
86061        "parameters": [
86062          {
86063            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
86064            "in": "query",
86065            "name": "allowWatchBookmarks",
86066            "type": "boolean",
86067            "uniqueItems": true
86068          },
86069          {
86070            "in": "body",
86071            "name": "body",
86072            "schema": {
86073              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
86074            }
86075          },
86076          {
86077            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86078            "in": "query",
86079            "name": "continue",
86080            "type": "string",
86081            "uniqueItems": true
86082          },
86083          {
86084            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86085            "in": "query",
86086            "name": "dryRun",
86087            "type": "string",
86088            "uniqueItems": true
86089          },
86090          {
86091            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86092            "in": "query",
86093            "name": "fieldSelector",
86094            "type": "string",
86095            "uniqueItems": true
86096          },
86097          {
86098            "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.",
86099            "in": "query",
86100            "name": "gracePeriodSeconds",
86101            "type": "integer",
86102            "uniqueItems": true
86103          },
86104          {
86105            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86106            "in": "query",
86107            "name": "labelSelector",
86108            "type": "string",
86109            "uniqueItems": true
86110          },
86111          {
86112            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86113            "in": "query",
86114            "name": "limit",
86115            "type": "integer",
86116            "uniqueItems": true
86117          },
86118          {
86119            "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.",
86120            "in": "query",
86121            "name": "orphanDependents",
86122            "type": "boolean",
86123            "uniqueItems": true
86124          },
86125          {
86126            "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.",
86127            "in": "query",
86128            "name": "propagationPolicy",
86129            "type": "string",
86130            "uniqueItems": true
86131          },
86132          {
86133            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
86134            "in": "query",
86135            "name": "resourceVersion",
86136            "type": "string",
86137            "uniqueItems": true
86138          },
86139          {
86140            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86141            "in": "query",
86142            "name": "timeoutSeconds",
86143            "type": "integer",
86144            "uniqueItems": true
86145          },
86146          {
86147            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86148            "in": "query",
86149            "name": "watch",
86150            "type": "boolean",
86151            "uniqueItems": true
86152          }
86153        ],
86154        "produces": [
86155          "application/json",
86156          "application/yaml",
86157          "application/vnd.kubernetes.protobuf"
86158        ],
86159        "responses": {
86160          "200": {
86161            "description": "OK",
86162            "schema": {
86163              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
86164            }
86165          },
86166          "401": {
86167            "description": "Unauthorized"
86168          }
86169        },
86170        "schemes": [
86171          "https"
86172        ],
86173        "tags": [
86174          "node_v1alpha1"
86175        ],
86176        "x-kubernetes-action": "deletecollection",
86177        "x-kubernetes-group-version-kind": {
86178          "group": "node.k8s.io",
86179          "kind": "RuntimeClass",
86180          "version": "v1alpha1"
86181        }
86182      },
86183      "get": {
86184        "consumes": [
86185          "*/*"
86186        ],
86187        "description": "list or watch objects of kind RuntimeClass",
86188        "operationId": "listNodeV1alpha1RuntimeClass",
86189        "parameters": [
86190          {
86191            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
86192            "in": "query",
86193            "name": "allowWatchBookmarks",
86194            "type": "boolean",
86195            "uniqueItems": true
86196          },
86197          {
86198            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86199            "in": "query",
86200            "name": "continue",
86201            "type": "string",
86202            "uniqueItems": true
86203          },
86204          {
86205            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86206            "in": "query",
86207            "name": "fieldSelector",
86208            "type": "string",
86209            "uniqueItems": true
86210          },
86211          {
86212            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86213            "in": "query",
86214            "name": "labelSelector",
86215            "type": "string",
86216            "uniqueItems": true
86217          },
86218          {
86219            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86220            "in": "query",
86221            "name": "limit",
86222            "type": "integer",
86223            "uniqueItems": true
86224          },
86225          {
86226            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
86227            "in": "query",
86228            "name": "resourceVersion",
86229            "type": "string",
86230            "uniqueItems": true
86231          },
86232          {
86233            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86234            "in": "query",
86235            "name": "timeoutSeconds",
86236            "type": "integer",
86237            "uniqueItems": true
86238          },
86239          {
86240            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86241            "in": "query",
86242            "name": "watch",
86243            "type": "boolean",
86244            "uniqueItems": true
86245          }
86246        ],
86247        "produces": [
86248          "application/json",
86249          "application/yaml",
86250          "application/vnd.kubernetes.protobuf",
86251          "application/json;stream=watch",
86252          "application/vnd.kubernetes.protobuf;stream=watch"
86253        ],
86254        "responses": {
86255          "200": {
86256            "description": "OK",
86257            "schema": {
86258              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClassList"
86259            }
86260          },
86261          "401": {
86262            "description": "Unauthorized"
86263          }
86264        },
86265        "schemes": [
86266          "https"
86267        ],
86268        "tags": [
86269          "node_v1alpha1"
86270        ],
86271        "x-kubernetes-action": "list",
86272        "x-kubernetes-group-version-kind": {
86273          "group": "node.k8s.io",
86274          "kind": "RuntimeClass",
86275          "version": "v1alpha1"
86276        }
86277      },
86278      "parameters": [
86279        {
86280          "description": "If 'true', then the output is pretty printed.",
86281          "in": "query",
86282          "name": "pretty",
86283          "type": "string",
86284          "uniqueItems": true
86285        }
86286      ],
86287      "post": {
86288        "consumes": [
86289          "*/*"
86290        ],
86291        "description": "create a RuntimeClass",
86292        "operationId": "createNodeV1alpha1RuntimeClass",
86293        "parameters": [
86294          {
86295            "in": "body",
86296            "name": "body",
86297            "required": true,
86298            "schema": {
86299              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86300            }
86301          },
86302          {
86303            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86304            "in": "query",
86305            "name": "dryRun",
86306            "type": "string",
86307            "uniqueItems": true
86308          },
86309          {
86310            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86311            "in": "query",
86312            "name": "fieldManager",
86313            "type": "string",
86314            "uniqueItems": true
86315          }
86316        ],
86317        "produces": [
86318          "application/json",
86319          "application/yaml",
86320          "application/vnd.kubernetes.protobuf"
86321        ],
86322        "responses": {
86323          "200": {
86324            "description": "OK",
86325            "schema": {
86326              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86327            }
86328          },
86329          "201": {
86330            "description": "Created",
86331            "schema": {
86332              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86333            }
86334          },
86335          "202": {
86336            "description": "Accepted",
86337            "schema": {
86338              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86339            }
86340          },
86341          "401": {
86342            "description": "Unauthorized"
86343          }
86344        },
86345        "schemes": [
86346          "https"
86347        ],
86348        "tags": [
86349          "node_v1alpha1"
86350        ],
86351        "x-kubernetes-action": "post",
86352        "x-kubernetes-group-version-kind": {
86353          "group": "node.k8s.io",
86354          "kind": "RuntimeClass",
86355          "version": "v1alpha1"
86356        }
86357      }
86358    },
86359    "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}": {
86360      "delete": {
86361        "consumes": [
86362          "*/*"
86363        ],
86364        "description": "delete a RuntimeClass",
86365        "operationId": "deleteNodeV1alpha1RuntimeClass",
86366        "parameters": [
86367          {
86368            "in": "body",
86369            "name": "body",
86370            "schema": {
86371              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
86372            }
86373          },
86374          {
86375            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86376            "in": "query",
86377            "name": "dryRun",
86378            "type": "string",
86379            "uniqueItems": true
86380          },
86381          {
86382            "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.",
86383            "in": "query",
86384            "name": "gracePeriodSeconds",
86385            "type": "integer",
86386            "uniqueItems": true
86387          },
86388          {
86389            "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.",
86390            "in": "query",
86391            "name": "orphanDependents",
86392            "type": "boolean",
86393            "uniqueItems": true
86394          },
86395          {
86396            "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.",
86397            "in": "query",
86398            "name": "propagationPolicy",
86399            "type": "string",
86400            "uniqueItems": true
86401          }
86402        ],
86403        "produces": [
86404          "application/json",
86405          "application/yaml",
86406          "application/vnd.kubernetes.protobuf"
86407        ],
86408        "responses": {
86409          "200": {
86410            "description": "OK",
86411            "schema": {
86412              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
86413            }
86414          },
86415          "202": {
86416            "description": "Accepted",
86417            "schema": {
86418              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
86419            }
86420          },
86421          "401": {
86422            "description": "Unauthorized"
86423          }
86424        },
86425        "schemes": [
86426          "https"
86427        ],
86428        "tags": [
86429          "node_v1alpha1"
86430        ],
86431        "x-kubernetes-action": "delete",
86432        "x-kubernetes-group-version-kind": {
86433          "group": "node.k8s.io",
86434          "kind": "RuntimeClass",
86435          "version": "v1alpha1"
86436        }
86437      },
86438      "get": {
86439        "consumes": [
86440          "*/*"
86441        ],
86442        "description": "read the specified RuntimeClass",
86443        "operationId": "readNodeV1alpha1RuntimeClass",
86444        "parameters": [
86445          {
86446            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
86447            "in": "query",
86448            "name": "exact",
86449            "type": "boolean",
86450            "uniqueItems": true
86451          },
86452          {
86453            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
86454            "in": "query",
86455            "name": "export",
86456            "type": "boolean",
86457            "uniqueItems": true
86458          }
86459        ],
86460        "produces": [
86461          "application/json",
86462          "application/yaml",
86463          "application/vnd.kubernetes.protobuf"
86464        ],
86465        "responses": {
86466          "200": {
86467            "description": "OK",
86468            "schema": {
86469              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86470            }
86471          },
86472          "401": {
86473            "description": "Unauthorized"
86474          }
86475        },
86476        "schemes": [
86477          "https"
86478        ],
86479        "tags": [
86480          "node_v1alpha1"
86481        ],
86482        "x-kubernetes-action": "get",
86483        "x-kubernetes-group-version-kind": {
86484          "group": "node.k8s.io",
86485          "kind": "RuntimeClass",
86486          "version": "v1alpha1"
86487        }
86488      },
86489      "parameters": [
86490        {
86491          "description": "name of the RuntimeClass",
86492          "in": "path",
86493          "name": "name",
86494          "required": true,
86495          "type": "string",
86496          "uniqueItems": true
86497        },
86498        {
86499          "description": "If 'true', then the output is pretty printed.",
86500          "in": "query",
86501          "name": "pretty",
86502          "type": "string",
86503          "uniqueItems": true
86504        }
86505      ],
86506      "patch": {
86507        "consumes": [
86508          "application/json-patch+json",
86509          "application/merge-patch+json",
86510          "application/strategic-merge-patch+json"
86511        ],
86512        "description": "partially update the specified RuntimeClass",
86513        "operationId": "patchNodeV1alpha1RuntimeClass",
86514        "parameters": [
86515          {
86516            "in": "body",
86517            "name": "body",
86518            "required": true,
86519            "schema": {
86520              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
86521            }
86522          },
86523          {
86524            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86525            "in": "query",
86526            "name": "dryRun",
86527            "type": "string",
86528            "uniqueItems": true
86529          },
86530          {
86531            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
86532            "in": "query",
86533            "name": "fieldManager",
86534            "type": "string",
86535            "uniqueItems": true
86536          },
86537          {
86538            "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.",
86539            "in": "query",
86540            "name": "force",
86541            "type": "boolean",
86542            "uniqueItems": true
86543          }
86544        ],
86545        "produces": [
86546          "application/json",
86547          "application/yaml",
86548          "application/vnd.kubernetes.protobuf"
86549        ],
86550        "responses": {
86551          "200": {
86552            "description": "OK",
86553            "schema": {
86554              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86555            }
86556          },
86557          "401": {
86558            "description": "Unauthorized"
86559          }
86560        },
86561        "schemes": [
86562          "https"
86563        ],
86564        "tags": [
86565          "node_v1alpha1"
86566        ],
86567        "x-kubernetes-action": "patch",
86568        "x-kubernetes-group-version-kind": {
86569          "group": "node.k8s.io",
86570          "kind": "RuntimeClass",
86571          "version": "v1alpha1"
86572        }
86573      },
86574      "put": {
86575        "consumes": [
86576          "*/*"
86577        ],
86578        "description": "replace the specified RuntimeClass",
86579        "operationId": "replaceNodeV1alpha1RuntimeClass",
86580        "parameters": [
86581          {
86582            "in": "body",
86583            "name": "body",
86584            "required": true,
86585            "schema": {
86586              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86587            }
86588          },
86589          {
86590            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86591            "in": "query",
86592            "name": "dryRun",
86593            "type": "string",
86594            "uniqueItems": true
86595          },
86596          {
86597            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
86598            "in": "query",
86599            "name": "fieldManager",
86600            "type": "string",
86601            "uniqueItems": true
86602          }
86603        ],
86604        "produces": [
86605          "application/json",
86606          "application/yaml",
86607          "application/vnd.kubernetes.protobuf"
86608        ],
86609        "responses": {
86610          "200": {
86611            "description": "OK",
86612            "schema": {
86613              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86614            }
86615          },
86616          "201": {
86617            "description": "Created",
86618            "schema": {
86619              "$ref": "#/definitions/io.k8s.api.node.v1alpha1.RuntimeClass"
86620            }
86621          },
86622          "401": {
86623            "description": "Unauthorized"
86624          }
86625        },
86626        "schemes": [
86627          "https"
86628        ],
86629        "tags": [
86630          "node_v1alpha1"
86631        ],
86632        "x-kubernetes-action": "put",
86633        "x-kubernetes-group-version-kind": {
86634          "group": "node.k8s.io",
86635          "kind": "RuntimeClass",
86636          "version": "v1alpha1"
86637        }
86638      }
86639    },
86640    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses": {
86641      "get": {
86642        "consumes": [
86643          "*/*"
86644        ],
86645        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
86646        "operationId": "watchNodeV1alpha1RuntimeClassList",
86647        "produces": [
86648          "application/json",
86649          "application/yaml",
86650          "application/vnd.kubernetes.protobuf",
86651          "application/json;stream=watch",
86652          "application/vnd.kubernetes.protobuf;stream=watch"
86653        ],
86654        "responses": {
86655          "200": {
86656            "description": "OK",
86657            "schema": {
86658              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86659            }
86660          },
86661          "401": {
86662            "description": "Unauthorized"
86663          }
86664        },
86665        "schemes": [
86666          "https"
86667        ],
86668        "tags": [
86669          "node_v1alpha1"
86670        ],
86671        "x-kubernetes-action": "watchlist",
86672        "x-kubernetes-group-version-kind": {
86673          "group": "node.k8s.io",
86674          "kind": "RuntimeClass",
86675          "version": "v1alpha1"
86676        }
86677      },
86678      "parameters": [
86679        {
86680          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
86681          "in": "query",
86682          "name": "allowWatchBookmarks",
86683          "type": "boolean",
86684          "uniqueItems": true
86685        },
86686        {
86687          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86688          "in": "query",
86689          "name": "continue",
86690          "type": "string",
86691          "uniqueItems": true
86692        },
86693        {
86694          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86695          "in": "query",
86696          "name": "fieldSelector",
86697          "type": "string",
86698          "uniqueItems": true
86699        },
86700        {
86701          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86702          "in": "query",
86703          "name": "labelSelector",
86704          "type": "string",
86705          "uniqueItems": true
86706        },
86707        {
86708          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86709          "in": "query",
86710          "name": "limit",
86711          "type": "integer",
86712          "uniqueItems": true
86713        },
86714        {
86715          "description": "If 'true', then the output is pretty printed.",
86716          "in": "query",
86717          "name": "pretty",
86718          "type": "string",
86719          "uniqueItems": true
86720        },
86721        {
86722          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
86723          "in": "query",
86724          "name": "resourceVersion",
86725          "type": "string",
86726          "uniqueItems": true
86727        },
86728        {
86729          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86730          "in": "query",
86731          "name": "timeoutSeconds",
86732          "type": "integer",
86733          "uniqueItems": true
86734        },
86735        {
86736          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86737          "in": "query",
86738          "name": "watch",
86739          "type": "boolean",
86740          "uniqueItems": true
86741        }
86742      ]
86743    },
86744    "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/{name}": {
86745      "get": {
86746        "consumes": [
86747          "*/*"
86748        ],
86749        "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.",
86750        "operationId": "watchNodeV1alpha1RuntimeClass",
86751        "produces": [
86752          "application/json",
86753          "application/yaml",
86754          "application/vnd.kubernetes.protobuf",
86755          "application/json;stream=watch",
86756          "application/vnd.kubernetes.protobuf;stream=watch"
86757        ],
86758        "responses": {
86759          "200": {
86760            "description": "OK",
86761            "schema": {
86762              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
86763            }
86764          },
86765          "401": {
86766            "description": "Unauthorized"
86767          }
86768        },
86769        "schemes": [
86770          "https"
86771        ],
86772        "tags": [
86773          "node_v1alpha1"
86774        ],
86775        "x-kubernetes-action": "watch",
86776        "x-kubernetes-group-version-kind": {
86777          "group": "node.k8s.io",
86778          "kind": "RuntimeClass",
86779          "version": "v1alpha1"
86780        }
86781      },
86782      "parameters": [
86783        {
86784          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
86785          "in": "query",
86786          "name": "allowWatchBookmarks",
86787          "type": "boolean",
86788          "uniqueItems": true
86789        },
86790        {
86791          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86792          "in": "query",
86793          "name": "continue",
86794          "type": "string",
86795          "uniqueItems": true
86796        },
86797        {
86798          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86799          "in": "query",
86800          "name": "fieldSelector",
86801          "type": "string",
86802          "uniqueItems": true
86803        },
86804        {
86805          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86806          "in": "query",
86807          "name": "labelSelector",
86808          "type": "string",
86809          "uniqueItems": true
86810        },
86811        {
86812          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86813          "in": "query",
86814          "name": "limit",
86815          "type": "integer",
86816          "uniqueItems": true
86817        },
86818        {
86819          "description": "name of the RuntimeClass",
86820          "in": "path",
86821          "name": "name",
86822          "required": true,
86823          "type": "string",
86824          "uniqueItems": true
86825        },
86826        {
86827          "description": "If 'true', then the output is pretty printed.",
86828          "in": "query",
86829          "name": "pretty",
86830          "type": "string",
86831          "uniqueItems": true
86832        },
86833        {
86834          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
86835          "in": "query",
86836          "name": "resourceVersion",
86837          "type": "string",
86838          "uniqueItems": true
86839        },
86840        {
86841          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86842          "in": "query",
86843          "name": "timeoutSeconds",
86844          "type": "integer",
86845          "uniqueItems": true
86846        },
86847        {
86848          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86849          "in": "query",
86850          "name": "watch",
86851          "type": "boolean",
86852          "uniqueItems": true
86853        }
86854      ]
86855    },
86856    "/apis/node.k8s.io/v1beta1/": {
86857      "get": {
86858        "consumes": [
86859          "application/json",
86860          "application/yaml",
86861          "application/vnd.kubernetes.protobuf"
86862        ],
86863        "description": "get available resources",
86864        "operationId": "getNodeV1beta1APIResources",
86865        "produces": [
86866          "application/json",
86867          "application/yaml",
86868          "application/vnd.kubernetes.protobuf"
86869        ],
86870        "responses": {
86871          "200": {
86872            "description": "OK",
86873            "schema": {
86874              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
86875            }
86876          },
86877          "401": {
86878            "description": "Unauthorized"
86879          }
86880        },
86881        "schemes": [
86882          "https"
86883        ],
86884        "tags": [
86885          "node_v1beta1"
86886        ]
86887      }
86888    },
86889    "/apis/node.k8s.io/v1beta1/runtimeclasses": {
86890      "delete": {
86891        "consumes": [
86892          "*/*"
86893        ],
86894        "description": "delete collection of RuntimeClass",
86895        "operationId": "deleteNodeV1beta1CollectionRuntimeClass",
86896        "parameters": [
86897          {
86898            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
86899            "in": "query",
86900            "name": "allowWatchBookmarks",
86901            "type": "boolean",
86902            "uniqueItems": true
86903          },
86904          {
86905            "in": "body",
86906            "name": "body",
86907            "schema": {
86908              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
86909            }
86910          },
86911          {
86912            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
86913            "in": "query",
86914            "name": "continue",
86915            "type": "string",
86916            "uniqueItems": true
86917          },
86918          {
86919            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
86920            "in": "query",
86921            "name": "dryRun",
86922            "type": "string",
86923            "uniqueItems": true
86924          },
86925          {
86926            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
86927            "in": "query",
86928            "name": "fieldSelector",
86929            "type": "string",
86930            "uniqueItems": true
86931          },
86932          {
86933            "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.",
86934            "in": "query",
86935            "name": "gracePeriodSeconds",
86936            "type": "integer",
86937            "uniqueItems": true
86938          },
86939          {
86940            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
86941            "in": "query",
86942            "name": "labelSelector",
86943            "type": "string",
86944            "uniqueItems": true
86945          },
86946          {
86947            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
86948            "in": "query",
86949            "name": "limit",
86950            "type": "integer",
86951            "uniqueItems": true
86952          },
86953          {
86954            "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.",
86955            "in": "query",
86956            "name": "orphanDependents",
86957            "type": "boolean",
86958            "uniqueItems": true
86959          },
86960          {
86961            "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.",
86962            "in": "query",
86963            "name": "propagationPolicy",
86964            "type": "string",
86965            "uniqueItems": true
86966          },
86967          {
86968            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
86969            "in": "query",
86970            "name": "resourceVersion",
86971            "type": "string",
86972            "uniqueItems": true
86973          },
86974          {
86975            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
86976            "in": "query",
86977            "name": "timeoutSeconds",
86978            "type": "integer",
86979            "uniqueItems": true
86980          },
86981          {
86982            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
86983            "in": "query",
86984            "name": "watch",
86985            "type": "boolean",
86986            "uniqueItems": true
86987          }
86988        ],
86989        "produces": [
86990          "application/json",
86991          "application/yaml",
86992          "application/vnd.kubernetes.protobuf"
86993        ],
86994        "responses": {
86995          "200": {
86996            "description": "OK",
86997            "schema": {
86998              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
86999            }
87000          },
87001          "401": {
87002            "description": "Unauthorized"
87003          }
87004        },
87005        "schemes": [
87006          "https"
87007        ],
87008        "tags": [
87009          "node_v1beta1"
87010        ],
87011        "x-kubernetes-action": "deletecollection",
87012        "x-kubernetes-group-version-kind": {
87013          "group": "node.k8s.io",
87014          "kind": "RuntimeClass",
87015          "version": "v1beta1"
87016        }
87017      },
87018      "get": {
87019        "consumes": [
87020          "*/*"
87021        ],
87022        "description": "list or watch objects of kind RuntimeClass",
87023        "operationId": "listNodeV1beta1RuntimeClass",
87024        "parameters": [
87025          {
87026            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
87027            "in": "query",
87028            "name": "allowWatchBookmarks",
87029            "type": "boolean",
87030            "uniqueItems": true
87031          },
87032          {
87033            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87034            "in": "query",
87035            "name": "continue",
87036            "type": "string",
87037            "uniqueItems": true
87038          },
87039          {
87040            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87041            "in": "query",
87042            "name": "fieldSelector",
87043            "type": "string",
87044            "uniqueItems": true
87045          },
87046          {
87047            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87048            "in": "query",
87049            "name": "labelSelector",
87050            "type": "string",
87051            "uniqueItems": true
87052          },
87053          {
87054            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87055            "in": "query",
87056            "name": "limit",
87057            "type": "integer",
87058            "uniqueItems": true
87059          },
87060          {
87061            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
87062            "in": "query",
87063            "name": "resourceVersion",
87064            "type": "string",
87065            "uniqueItems": true
87066          },
87067          {
87068            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87069            "in": "query",
87070            "name": "timeoutSeconds",
87071            "type": "integer",
87072            "uniqueItems": true
87073          },
87074          {
87075            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87076            "in": "query",
87077            "name": "watch",
87078            "type": "boolean",
87079            "uniqueItems": true
87080          }
87081        ],
87082        "produces": [
87083          "application/json",
87084          "application/yaml",
87085          "application/vnd.kubernetes.protobuf",
87086          "application/json;stream=watch",
87087          "application/vnd.kubernetes.protobuf;stream=watch"
87088        ],
87089        "responses": {
87090          "200": {
87091            "description": "OK",
87092            "schema": {
87093              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClassList"
87094            }
87095          },
87096          "401": {
87097            "description": "Unauthorized"
87098          }
87099        },
87100        "schemes": [
87101          "https"
87102        ],
87103        "tags": [
87104          "node_v1beta1"
87105        ],
87106        "x-kubernetes-action": "list",
87107        "x-kubernetes-group-version-kind": {
87108          "group": "node.k8s.io",
87109          "kind": "RuntimeClass",
87110          "version": "v1beta1"
87111        }
87112      },
87113      "parameters": [
87114        {
87115          "description": "If 'true', then the output is pretty printed.",
87116          "in": "query",
87117          "name": "pretty",
87118          "type": "string",
87119          "uniqueItems": true
87120        }
87121      ],
87122      "post": {
87123        "consumes": [
87124          "*/*"
87125        ],
87126        "description": "create a RuntimeClass",
87127        "operationId": "createNodeV1beta1RuntimeClass",
87128        "parameters": [
87129          {
87130            "in": "body",
87131            "name": "body",
87132            "required": true,
87133            "schema": {
87134              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87135            }
87136          },
87137          {
87138            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87139            "in": "query",
87140            "name": "dryRun",
87141            "type": "string",
87142            "uniqueItems": true
87143          },
87144          {
87145            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87146            "in": "query",
87147            "name": "fieldManager",
87148            "type": "string",
87149            "uniqueItems": true
87150          }
87151        ],
87152        "produces": [
87153          "application/json",
87154          "application/yaml",
87155          "application/vnd.kubernetes.protobuf"
87156        ],
87157        "responses": {
87158          "200": {
87159            "description": "OK",
87160            "schema": {
87161              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87162            }
87163          },
87164          "201": {
87165            "description": "Created",
87166            "schema": {
87167              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87168            }
87169          },
87170          "202": {
87171            "description": "Accepted",
87172            "schema": {
87173              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87174            }
87175          },
87176          "401": {
87177            "description": "Unauthorized"
87178          }
87179        },
87180        "schemes": [
87181          "https"
87182        ],
87183        "tags": [
87184          "node_v1beta1"
87185        ],
87186        "x-kubernetes-action": "post",
87187        "x-kubernetes-group-version-kind": {
87188          "group": "node.k8s.io",
87189          "kind": "RuntimeClass",
87190          "version": "v1beta1"
87191        }
87192      }
87193    },
87194    "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}": {
87195      "delete": {
87196        "consumes": [
87197          "*/*"
87198        ],
87199        "description": "delete a RuntimeClass",
87200        "operationId": "deleteNodeV1beta1RuntimeClass",
87201        "parameters": [
87202          {
87203            "in": "body",
87204            "name": "body",
87205            "schema": {
87206              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87207            }
87208          },
87209          {
87210            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87211            "in": "query",
87212            "name": "dryRun",
87213            "type": "string",
87214            "uniqueItems": true
87215          },
87216          {
87217            "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.",
87218            "in": "query",
87219            "name": "gracePeriodSeconds",
87220            "type": "integer",
87221            "uniqueItems": true
87222          },
87223          {
87224            "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.",
87225            "in": "query",
87226            "name": "orphanDependents",
87227            "type": "boolean",
87228            "uniqueItems": true
87229          },
87230          {
87231            "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.",
87232            "in": "query",
87233            "name": "propagationPolicy",
87234            "type": "string",
87235            "uniqueItems": true
87236          }
87237        ],
87238        "produces": [
87239          "application/json",
87240          "application/yaml",
87241          "application/vnd.kubernetes.protobuf"
87242        ],
87243        "responses": {
87244          "200": {
87245            "description": "OK",
87246            "schema": {
87247              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87248            }
87249          },
87250          "202": {
87251            "description": "Accepted",
87252            "schema": {
87253              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87254            }
87255          },
87256          "401": {
87257            "description": "Unauthorized"
87258          }
87259        },
87260        "schemes": [
87261          "https"
87262        ],
87263        "tags": [
87264          "node_v1beta1"
87265        ],
87266        "x-kubernetes-action": "delete",
87267        "x-kubernetes-group-version-kind": {
87268          "group": "node.k8s.io",
87269          "kind": "RuntimeClass",
87270          "version": "v1beta1"
87271        }
87272      },
87273      "get": {
87274        "consumes": [
87275          "*/*"
87276        ],
87277        "description": "read the specified RuntimeClass",
87278        "operationId": "readNodeV1beta1RuntimeClass",
87279        "parameters": [
87280          {
87281            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
87282            "in": "query",
87283            "name": "exact",
87284            "type": "boolean",
87285            "uniqueItems": true
87286          },
87287          {
87288            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
87289            "in": "query",
87290            "name": "export",
87291            "type": "boolean",
87292            "uniqueItems": true
87293          }
87294        ],
87295        "produces": [
87296          "application/json",
87297          "application/yaml",
87298          "application/vnd.kubernetes.protobuf"
87299        ],
87300        "responses": {
87301          "200": {
87302            "description": "OK",
87303            "schema": {
87304              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87305            }
87306          },
87307          "401": {
87308            "description": "Unauthorized"
87309          }
87310        },
87311        "schemes": [
87312          "https"
87313        ],
87314        "tags": [
87315          "node_v1beta1"
87316        ],
87317        "x-kubernetes-action": "get",
87318        "x-kubernetes-group-version-kind": {
87319          "group": "node.k8s.io",
87320          "kind": "RuntimeClass",
87321          "version": "v1beta1"
87322        }
87323      },
87324      "parameters": [
87325        {
87326          "description": "name of the RuntimeClass",
87327          "in": "path",
87328          "name": "name",
87329          "required": true,
87330          "type": "string",
87331          "uniqueItems": true
87332        },
87333        {
87334          "description": "If 'true', then the output is pretty printed.",
87335          "in": "query",
87336          "name": "pretty",
87337          "type": "string",
87338          "uniqueItems": true
87339        }
87340      ],
87341      "patch": {
87342        "consumes": [
87343          "application/json-patch+json",
87344          "application/merge-patch+json",
87345          "application/strategic-merge-patch+json"
87346        ],
87347        "description": "partially update the specified RuntimeClass",
87348        "operationId": "patchNodeV1beta1RuntimeClass",
87349        "parameters": [
87350          {
87351            "in": "body",
87352            "name": "body",
87353            "required": true,
87354            "schema": {
87355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
87356            }
87357          },
87358          {
87359            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87360            "in": "query",
87361            "name": "dryRun",
87362            "type": "string",
87363            "uniqueItems": true
87364          },
87365          {
87366            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
87367            "in": "query",
87368            "name": "fieldManager",
87369            "type": "string",
87370            "uniqueItems": true
87371          },
87372          {
87373            "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.",
87374            "in": "query",
87375            "name": "force",
87376            "type": "boolean",
87377            "uniqueItems": true
87378          }
87379        ],
87380        "produces": [
87381          "application/json",
87382          "application/yaml",
87383          "application/vnd.kubernetes.protobuf"
87384        ],
87385        "responses": {
87386          "200": {
87387            "description": "OK",
87388            "schema": {
87389              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87390            }
87391          },
87392          "401": {
87393            "description": "Unauthorized"
87394          }
87395        },
87396        "schemes": [
87397          "https"
87398        ],
87399        "tags": [
87400          "node_v1beta1"
87401        ],
87402        "x-kubernetes-action": "patch",
87403        "x-kubernetes-group-version-kind": {
87404          "group": "node.k8s.io",
87405          "kind": "RuntimeClass",
87406          "version": "v1beta1"
87407        }
87408      },
87409      "put": {
87410        "consumes": [
87411          "*/*"
87412        ],
87413        "description": "replace the specified RuntimeClass",
87414        "operationId": "replaceNodeV1beta1RuntimeClass",
87415        "parameters": [
87416          {
87417            "in": "body",
87418            "name": "body",
87419            "required": true,
87420            "schema": {
87421              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87422            }
87423          },
87424          {
87425            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87426            "in": "query",
87427            "name": "dryRun",
87428            "type": "string",
87429            "uniqueItems": true
87430          },
87431          {
87432            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
87433            "in": "query",
87434            "name": "fieldManager",
87435            "type": "string",
87436            "uniqueItems": true
87437          }
87438        ],
87439        "produces": [
87440          "application/json",
87441          "application/yaml",
87442          "application/vnd.kubernetes.protobuf"
87443        ],
87444        "responses": {
87445          "200": {
87446            "description": "OK",
87447            "schema": {
87448              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87449            }
87450          },
87451          "201": {
87452            "description": "Created",
87453            "schema": {
87454              "$ref": "#/definitions/io.k8s.api.node.v1beta1.RuntimeClass"
87455            }
87456          },
87457          "401": {
87458            "description": "Unauthorized"
87459          }
87460        },
87461        "schemes": [
87462          "https"
87463        ],
87464        "tags": [
87465          "node_v1beta1"
87466        ],
87467        "x-kubernetes-action": "put",
87468        "x-kubernetes-group-version-kind": {
87469          "group": "node.k8s.io",
87470          "kind": "RuntimeClass",
87471          "version": "v1beta1"
87472        }
87473      }
87474    },
87475    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses": {
87476      "get": {
87477        "consumes": [
87478          "*/*"
87479        ],
87480        "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.",
87481        "operationId": "watchNodeV1beta1RuntimeClassList",
87482        "produces": [
87483          "application/json",
87484          "application/yaml",
87485          "application/vnd.kubernetes.protobuf",
87486          "application/json;stream=watch",
87487          "application/vnd.kubernetes.protobuf;stream=watch"
87488        ],
87489        "responses": {
87490          "200": {
87491            "description": "OK",
87492            "schema": {
87493              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
87494            }
87495          },
87496          "401": {
87497            "description": "Unauthorized"
87498          }
87499        },
87500        "schemes": [
87501          "https"
87502        ],
87503        "tags": [
87504          "node_v1beta1"
87505        ],
87506        "x-kubernetes-action": "watchlist",
87507        "x-kubernetes-group-version-kind": {
87508          "group": "node.k8s.io",
87509          "kind": "RuntimeClass",
87510          "version": "v1beta1"
87511        }
87512      },
87513      "parameters": [
87514        {
87515          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
87516          "in": "query",
87517          "name": "allowWatchBookmarks",
87518          "type": "boolean",
87519          "uniqueItems": true
87520        },
87521        {
87522          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87523          "in": "query",
87524          "name": "continue",
87525          "type": "string",
87526          "uniqueItems": true
87527        },
87528        {
87529          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87530          "in": "query",
87531          "name": "fieldSelector",
87532          "type": "string",
87533          "uniqueItems": true
87534        },
87535        {
87536          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87537          "in": "query",
87538          "name": "labelSelector",
87539          "type": "string",
87540          "uniqueItems": true
87541        },
87542        {
87543          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87544          "in": "query",
87545          "name": "limit",
87546          "type": "integer",
87547          "uniqueItems": true
87548        },
87549        {
87550          "description": "If 'true', then the output is pretty printed.",
87551          "in": "query",
87552          "name": "pretty",
87553          "type": "string",
87554          "uniqueItems": true
87555        },
87556        {
87557          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
87558          "in": "query",
87559          "name": "resourceVersion",
87560          "type": "string",
87561          "uniqueItems": true
87562        },
87563        {
87564          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87565          "in": "query",
87566          "name": "timeoutSeconds",
87567          "type": "integer",
87568          "uniqueItems": true
87569        },
87570        {
87571          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87572          "in": "query",
87573          "name": "watch",
87574          "type": "boolean",
87575          "uniqueItems": true
87576        }
87577      ]
87578    },
87579    "/apis/node.k8s.io/v1beta1/watch/runtimeclasses/{name}": {
87580      "get": {
87581        "consumes": [
87582          "*/*"
87583        ],
87584        "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.",
87585        "operationId": "watchNodeV1beta1RuntimeClass",
87586        "produces": [
87587          "application/json",
87588          "application/yaml",
87589          "application/vnd.kubernetes.protobuf",
87590          "application/json;stream=watch",
87591          "application/vnd.kubernetes.protobuf;stream=watch"
87592        ],
87593        "responses": {
87594          "200": {
87595            "description": "OK",
87596            "schema": {
87597              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
87598            }
87599          },
87600          "401": {
87601            "description": "Unauthorized"
87602          }
87603        },
87604        "schemes": [
87605          "https"
87606        ],
87607        "tags": [
87608          "node_v1beta1"
87609        ],
87610        "x-kubernetes-action": "watch",
87611        "x-kubernetes-group-version-kind": {
87612          "group": "node.k8s.io",
87613          "kind": "RuntimeClass",
87614          "version": "v1beta1"
87615        }
87616      },
87617      "parameters": [
87618        {
87619          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
87620          "in": "query",
87621          "name": "allowWatchBookmarks",
87622          "type": "boolean",
87623          "uniqueItems": true
87624        },
87625        {
87626          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87627          "in": "query",
87628          "name": "continue",
87629          "type": "string",
87630          "uniqueItems": true
87631        },
87632        {
87633          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87634          "in": "query",
87635          "name": "fieldSelector",
87636          "type": "string",
87637          "uniqueItems": true
87638        },
87639        {
87640          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87641          "in": "query",
87642          "name": "labelSelector",
87643          "type": "string",
87644          "uniqueItems": true
87645        },
87646        {
87647          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87648          "in": "query",
87649          "name": "limit",
87650          "type": "integer",
87651          "uniqueItems": true
87652        },
87653        {
87654          "description": "name of the RuntimeClass",
87655          "in": "path",
87656          "name": "name",
87657          "required": true,
87658          "type": "string",
87659          "uniqueItems": true
87660        },
87661        {
87662          "description": "If 'true', then the output is pretty printed.",
87663          "in": "query",
87664          "name": "pretty",
87665          "type": "string",
87666          "uniqueItems": true
87667        },
87668        {
87669          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
87670          "in": "query",
87671          "name": "resourceVersion",
87672          "type": "string",
87673          "uniqueItems": true
87674        },
87675        {
87676          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87677          "in": "query",
87678          "name": "timeoutSeconds",
87679          "type": "integer",
87680          "uniqueItems": true
87681        },
87682        {
87683          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87684          "in": "query",
87685          "name": "watch",
87686          "type": "boolean",
87687          "uniqueItems": true
87688        }
87689      ]
87690    },
87691    "/apis/policy/": {
87692      "get": {
87693        "consumes": [
87694          "application/json",
87695          "application/yaml",
87696          "application/vnd.kubernetes.protobuf"
87697        ],
87698        "description": "get information of a group",
87699        "operationId": "getPolicyAPIGroup",
87700        "produces": [
87701          "application/json",
87702          "application/yaml",
87703          "application/vnd.kubernetes.protobuf"
87704        ],
87705        "responses": {
87706          "200": {
87707            "description": "OK",
87708            "schema": {
87709              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
87710            }
87711          },
87712          "401": {
87713            "description": "Unauthorized"
87714          }
87715        },
87716        "schemes": [
87717          "https"
87718        ],
87719        "tags": [
87720          "policy"
87721        ]
87722      }
87723    },
87724    "/apis/policy/v1beta1/": {
87725      "get": {
87726        "consumes": [
87727          "application/json",
87728          "application/yaml",
87729          "application/vnd.kubernetes.protobuf"
87730        ],
87731        "description": "get available resources",
87732        "operationId": "getPolicyV1beta1APIResources",
87733        "produces": [
87734          "application/json",
87735          "application/yaml",
87736          "application/vnd.kubernetes.protobuf"
87737        ],
87738        "responses": {
87739          "200": {
87740            "description": "OK",
87741            "schema": {
87742              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
87743            }
87744          },
87745          "401": {
87746            "description": "Unauthorized"
87747          }
87748        },
87749        "schemes": [
87750          "https"
87751        ],
87752        "tags": [
87753          "policy_v1beta1"
87754        ]
87755      }
87756    },
87757    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets": {
87758      "delete": {
87759        "consumes": [
87760          "*/*"
87761        ],
87762        "description": "delete collection of PodDisruptionBudget",
87763        "operationId": "deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget",
87764        "parameters": [
87765          {
87766            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
87767            "in": "query",
87768            "name": "allowWatchBookmarks",
87769            "type": "boolean",
87770            "uniqueItems": true
87771          },
87772          {
87773            "in": "body",
87774            "name": "body",
87775            "schema": {
87776              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
87777            }
87778          },
87779          {
87780            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87781            "in": "query",
87782            "name": "continue",
87783            "type": "string",
87784            "uniqueItems": true
87785          },
87786          {
87787            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
87788            "in": "query",
87789            "name": "dryRun",
87790            "type": "string",
87791            "uniqueItems": true
87792          },
87793          {
87794            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87795            "in": "query",
87796            "name": "fieldSelector",
87797            "type": "string",
87798            "uniqueItems": true
87799          },
87800          {
87801            "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.",
87802            "in": "query",
87803            "name": "gracePeriodSeconds",
87804            "type": "integer",
87805            "uniqueItems": true
87806          },
87807          {
87808            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87809            "in": "query",
87810            "name": "labelSelector",
87811            "type": "string",
87812            "uniqueItems": true
87813          },
87814          {
87815            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87816            "in": "query",
87817            "name": "limit",
87818            "type": "integer",
87819            "uniqueItems": true
87820          },
87821          {
87822            "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.",
87823            "in": "query",
87824            "name": "orphanDependents",
87825            "type": "boolean",
87826            "uniqueItems": true
87827          },
87828          {
87829            "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.",
87830            "in": "query",
87831            "name": "propagationPolicy",
87832            "type": "string",
87833            "uniqueItems": true
87834          },
87835          {
87836            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
87837            "in": "query",
87838            "name": "resourceVersion",
87839            "type": "string",
87840            "uniqueItems": true
87841          },
87842          {
87843            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87844            "in": "query",
87845            "name": "timeoutSeconds",
87846            "type": "integer",
87847            "uniqueItems": true
87848          },
87849          {
87850            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87851            "in": "query",
87852            "name": "watch",
87853            "type": "boolean",
87854            "uniqueItems": true
87855          }
87856        ],
87857        "produces": [
87858          "application/json",
87859          "application/yaml",
87860          "application/vnd.kubernetes.protobuf"
87861        ],
87862        "responses": {
87863          "200": {
87864            "description": "OK",
87865            "schema": {
87866              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
87867            }
87868          },
87869          "401": {
87870            "description": "Unauthorized"
87871          }
87872        },
87873        "schemes": [
87874          "https"
87875        ],
87876        "tags": [
87877          "policy_v1beta1"
87878        ],
87879        "x-kubernetes-action": "deletecollection",
87880        "x-kubernetes-group-version-kind": {
87881          "group": "policy",
87882          "kind": "PodDisruptionBudget",
87883          "version": "v1beta1"
87884        }
87885      },
87886      "get": {
87887        "consumes": [
87888          "*/*"
87889        ],
87890        "description": "list or watch objects of kind PodDisruptionBudget",
87891        "operationId": "listPolicyV1beta1NamespacedPodDisruptionBudget",
87892        "parameters": [
87893          {
87894            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
87895            "in": "query",
87896            "name": "allowWatchBookmarks",
87897            "type": "boolean",
87898            "uniqueItems": true
87899          },
87900          {
87901            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
87902            "in": "query",
87903            "name": "continue",
87904            "type": "string",
87905            "uniqueItems": true
87906          },
87907          {
87908            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
87909            "in": "query",
87910            "name": "fieldSelector",
87911            "type": "string",
87912            "uniqueItems": true
87913          },
87914          {
87915            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
87916            "in": "query",
87917            "name": "labelSelector",
87918            "type": "string",
87919            "uniqueItems": true
87920          },
87921          {
87922            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
87923            "in": "query",
87924            "name": "limit",
87925            "type": "integer",
87926            "uniqueItems": true
87927          },
87928          {
87929            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
87930            "in": "query",
87931            "name": "resourceVersion",
87932            "type": "string",
87933            "uniqueItems": true
87934          },
87935          {
87936            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
87937            "in": "query",
87938            "name": "timeoutSeconds",
87939            "type": "integer",
87940            "uniqueItems": true
87941          },
87942          {
87943            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
87944            "in": "query",
87945            "name": "watch",
87946            "type": "boolean",
87947            "uniqueItems": true
87948          }
87949        ],
87950        "produces": [
87951          "application/json",
87952          "application/yaml",
87953          "application/vnd.kubernetes.protobuf",
87954          "application/json;stream=watch",
87955          "application/vnd.kubernetes.protobuf;stream=watch"
87956        ],
87957        "responses": {
87958          "200": {
87959            "description": "OK",
87960            "schema": {
87961              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
87962            }
87963          },
87964          "401": {
87965            "description": "Unauthorized"
87966          }
87967        },
87968        "schemes": [
87969          "https"
87970        ],
87971        "tags": [
87972          "policy_v1beta1"
87973        ],
87974        "x-kubernetes-action": "list",
87975        "x-kubernetes-group-version-kind": {
87976          "group": "policy",
87977          "kind": "PodDisruptionBudget",
87978          "version": "v1beta1"
87979        }
87980      },
87981      "parameters": [
87982        {
87983          "description": "object name and auth scope, such as for teams and projects",
87984          "in": "path",
87985          "name": "namespace",
87986          "required": true,
87987          "type": "string",
87988          "uniqueItems": true
87989        },
87990        {
87991          "description": "If 'true', then the output is pretty printed.",
87992          "in": "query",
87993          "name": "pretty",
87994          "type": "string",
87995          "uniqueItems": true
87996        }
87997      ],
87998      "post": {
87999        "consumes": [
88000          "*/*"
88001        ],
88002        "description": "create a PodDisruptionBudget",
88003        "operationId": "createPolicyV1beta1NamespacedPodDisruptionBudget",
88004        "parameters": [
88005          {
88006            "in": "body",
88007            "name": "body",
88008            "required": true,
88009            "schema": {
88010              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88011            }
88012          },
88013          {
88014            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88015            "in": "query",
88016            "name": "dryRun",
88017            "type": "string",
88018            "uniqueItems": true
88019          },
88020          {
88021            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88022            "in": "query",
88023            "name": "fieldManager",
88024            "type": "string",
88025            "uniqueItems": true
88026          }
88027        ],
88028        "produces": [
88029          "application/json",
88030          "application/yaml",
88031          "application/vnd.kubernetes.protobuf"
88032        ],
88033        "responses": {
88034          "200": {
88035            "description": "OK",
88036            "schema": {
88037              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88038            }
88039          },
88040          "201": {
88041            "description": "Created",
88042            "schema": {
88043              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88044            }
88045          },
88046          "202": {
88047            "description": "Accepted",
88048            "schema": {
88049              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88050            }
88051          },
88052          "401": {
88053            "description": "Unauthorized"
88054          }
88055        },
88056        "schemes": [
88057          "https"
88058        ],
88059        "tags": [
88060          "policy_v1beta1"
88061        ],
88062        "x-kubernetes-action": "post",
88063        "x-kubernetes-group-version-kind": {
88064          "group": "policy",
88065          "kind": "PodDisruptionBudget",
88066          "version": "v1beta1"
88067        }
88068      }
88069    },
88070    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
88071      "delete": {
88072        "consumes": [
88073          "*/*"
88074        ],
88075        "description": "delete a PodDisruptionBudget",
88076        "operationId": "deletePolicyV1beta1NamespacedPodDisruptionBudget",
88077        "parameters": [
88078          {
88079            "in": "body",
88080            "name": "body",
88081            "schema": {
88082              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88083            }
88084          },
88085          {
88086            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88087            "in": "query",
88088            "name": "dryRun",
88089            "type": "string",
88090            "uniqueItems": true
88091          },
88092          {
88093            "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.",
88094            "in": "query",
88095            "name": "gracePeriodSeconds",
88096            "type": "integer",
88097            "uniqueItems": true
88098          },
88099          {
88100            "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.",
88101            "in": "query",
88102            "name": "orphanDependents",
88103            "type": "boolean",
88104            "uniqueItems": true
88105          },
88106          {
88107            "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.",
88108            "in": "query",
88109            "name": "propagationPolicy",
88110            "type": "string",
88111            "uniqueItems": true
88112          }
88113        ],
88114        "produces": [
88115          "application/json",
88116          "application/yaml",
88117          "application/vnd.kubernetes.protobuf"
88118        ],
88119        "responses": {
88120          "200": {
88121            "description": "OK",
88122            "schema": {
88123              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88124            }
88125          },
88126          "202": {
88127            "description": "Accepted",
88128            "schema": {
88129              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88130            }
88131          },
88132          "401": {
88133            "description": "Unauthorized"
88134          }
88135        },
88136        "schemes": [
88137          "https"
88138        ],
88139        "tags": [
88140          "policy_v1beta1"
88141        ],
88142        "x-kubernetes-action": "delete",
88143        "x-kubernetes-group-version-kind": {
88144          "group": "policy",
88145          "kind": "PodDisruptionBudget",
88146          "version": "v1beta1"
88147        }
88148      },
88149      "get": {
88150        "consumes": [
88151          "*/*"
88152        ],
88153        "description": "read the specified PodDisruptionBudget",
88154        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudget",
88155        "parameters": [
88156          {
88157            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
88158            "in": "query",
88159            "name": "exact",
88160            "type": "boolean",
88161            "uniqueItems": true
88162          },
88163          {
88164            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
88165            "in": "query",
88166            "name": "export",
88167            "type": "boolean",
88168            "uniqueItems": true
88169          }
88170        ],
88171        "produces": [
88172          "application/json",
88173          "application/yaml",
88174          "application/vnd.kubernetes.protobuf"
88175        ],
88176        "responses": {
88177          "200": {
88178            "description": "OK",
88179            "schema": {
88180              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88181            }
88182          },
88183          "401": {
88184            "description": "Unauthorized"
88185          }
88186        },
88187        "schemes": [
88188          "https"
88189        ],
88190        "tags": [
88191          "policy_v1beta1"
88192        ],
88193        "x-kubernetes-action": "get",
88194        "x-kubernetes-group-version-kind": {
88195          "group": "policy",
88196          "kind": "PodDisruptionBudget",
88197          "version": "v1beta1"
88198        }
88199      },
88200      "parameters": [
88201        {
88202          "description": "name of the PodDisruptionBudget",
88203          "in": "path",
88204          "name": "name",
88205          "required": true,
88206          "type": "string",
88207          "uniqueItems": true
88208        },
88209        {
88210          "description": "object name and auth scope, such as for teams and projects",
88211          "in": "path",
88212          "name": "namespace",
88213          "required": true,
88214          "type": "string",
88215          "uniqueItems": true
88216        },
88217        {
88218          "description": "If 'true', then the output is pretty printed.",
88219          "in": "query",
88220          "name": "pretty",
88221          "type": "string",
88222          "uniqueItems": true
88223        }
88224      ],
88225      "patch": {
88226        "consumes": [
88227          "application/json-patch+json",
88228          "application/merge-patch+json",
88229          "application/strategic-merge-patch+json"
88230        ],
88231        "description": "partially update the specified PodDisruptionBudget",
88232        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudget",
88233        "parameters": [
88234          {
88235            "in": "body",
88236            "name": "body",
88237            "required": true,
88238            "schema": {
88239              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88240            }
88241          },
88242          {
88243            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88244            "in": "query",
88245            "name": "dryRun",
88246            "type": "string",
88247            "uniqueItems": true
88248          },
88249          {
88250            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
88251            "in": "query",
88252            "name": "fieldManager",
88253            "type": "string",
88254            "uniqueItems": true
88255          },
88256          {
88257            "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.",
88258            "in": "query",
88259            "name": "force",
88260            "type": "boolean",
88261            "uniqueItems": true
88262          }
88263        ],
88264        "produces": [
88265          "application/json",
88266          "application/yaml",
88267          "application/vnd.kubernetes.protobuf"
88268        ],
88269        "responses": {
88270          "200": {
88271            "description": "OK",
88272            "schema": {
88273              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88274            }
88275          },
88276          "401": {
88277            "description": "Unauthorized"
88278          }
88279        },
88280        "schemes": [
88281          "https"
88282        ],
88283        "tags": [
88284          "policy_v1beta1"
88285        ],
88286        "x-kubernetes-action": "patch",
88287        "x-kubernetes-group-version-kind": {
88288          "group": "policy",
88289          "kind": "PodDisruptionBudget",
88290          "version": "v1beta1"
88291        }
88292      },
88293      "put": {
88294        "consumes": [
88295          "*/*"
88296        ],
88297        "description": "replace the specified PodDisruptionBudget",
88298        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudget",
88299        "parameters": [
88300          {
88301            "in": "body",
88302            "name": "body",
88303            "required": true,
88304            "schema": {
88305              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88306            }
88307          },
88308          {
88309            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88310            "in": "query",
88311            "name": "dryRun",
88312            "type": "string",
88313            "uniqueItems": true
88314          },
88315          {
88316            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88317            "in": "query",
88318            "name": "fieldManager",
88319            "type": "string",
88320            "uniqueItems": true
88321          }
88322        ],
88323        "produces": [
88324          "application/json",
88325          "application/yaml",
88326          "application/vnd.kubernetes.protobuf"
88327        ],
88328        "responses": {
88329          "200": {
88330            "description": "OK",
88331            "schema": {
88332              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88333            }
88334          },
88335          "201": {
88336            "description": "Created",
88337            "schema": {
88338              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88339            }
88340          },
88341          "401": {
88342            "description": "Unauthorized"
88343          }
88344        },
88345        "schemes": [
88346          "https"
88347        ],
88348        "tags": [
88349          "policy_v1beta1"
88350        ],
88351        "x-kubernetes-action": "put",
88352        "x-kubernetes-group-version-kind": {
88353          "group": "policy",
88354          "kind": "PodDisruptionBudget",
88355          "version": "v1beta1"
88356        }
88357      }
88358    },
88359    "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": {
88360      "get": {
88361        "consumes": [
88362          "*/*"
88363        ],
88364        "description": "read status of the specified PodDisruptionBudget",
88365        "operationId": "readPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
88366        "produces": [
88367          "application/json",
88368          "application/yaml",
88369          "application/vnd.kubernetes.protobuf"
88370        ],
88371        "responses": {
88372          "200": {
88373            "description": "OK",
88374            "schema": {
88375              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88376            }
88377          },
88378          "401": {
88379            "description": "Unauthorized"
88380          }
88381        },
88382        "schemes": [
88383          "https"
88384        ],
88385        "tags": [
88386          "policy_v1beta1"
88387        ],
88388        "x-kubernetes-action": "get",
88389        "x-kubernetes-group-version-kind": {
88390          "group": "policy",
88391          "kind": "PodDisruptionBudget",
88392          "version": "v1beta1"
88393        }
88394      },
88395      "parameters": [
88396        {
88397          "description": "name of the PodDisruptionBudget",
88398          "in": "path",
88399          "name": "name",
88400          "required": true,
88401          "type": "string",
88402          "uniqueItems": true
88403        },
88404        {
88405          "description": "object name and auth scope, such as for teams and projects",
88406          "in": "path",
88407          "name": "namespace",
88408          "required": true,
88409          "type": "string",
88410          "uniqueItems": true
88411        },
88412        {
88413          "description": "If 'true', then the output is pretty printed.",
88414          "in": "query",
88415          "name": "pretty",
88416          "type": "string",
88417          "uniqueItems": true
88418        }
88419      ],
88420      "patch": {
88421        "consumes": [
88422          "application/json-patch+json",
88423          "application/merge-patch+json",
88424          "application/strategic-merge-patch+json"
88425        ],
88426        "description": "partially update status of the specified PodDisruptionBudget",
88427        "operationId": "patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus",
88428        "parameters": [
88429          {
88430            "in": "body",
88431            "name": "body",
88432            "required": true,
88433            "schema": {
88434              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
88435            }
88436          },
88437          {
88438            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88439            "in": "query",
88440            "name": "dryRun",
88441            "type": "string",
88442            "uniqueItems": true
88443          },
88444          {
88445            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
88446            "in": "query",
88447            "name": "fieldManager",
88448            "type": "string",
88449            "uniqueItems": true
88450          },
88451          {
88452            "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.",
88453            "in": "query",
88454            "name": "force",
88455            "type": "boolean",
88456            "uniqueItems": true
88457          }
88458        ],
88459        "produces": [
88460          "application/json",
88461          "application/yaml",
88462          "application/vnd.kubernetes.protobuf"
88463        ],
88464        "responses": {
88465          "200": {
88466            "description": "OK",
88467            "schema": {
88468              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88469            }
88470          },
88471          "401": {
88472            "description": "Unauthorized"
88473          }
88474        },
88475        "schemes": [
88476          "https"
88477        ],
88478        "tags": [
88479          "policy_v1beta1"
88480        ],
88481        "x-kubernetes-action": "patch",
88482        "x-kubernetes-group-version-kind": {
88483          "group": "policy",
88484          "kind": "PodDisruptionBudget",
88485          "version": "v1beta1"
88486        }
88487      },
88488      "put": {
88489        "consumes": [
88490          "*/*"
88491        ],
88492        "description": "replace status of the specified PodDisruptionBudget",
88493        "operationId": "replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus",
88494        "parameters": [
88495          {
88496            "in": "body",
88497            "name": "body",
88498            "required": true,
88499            "schema": {
88500              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88501            }
88502          },
88503          {
88504            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88505            "in": "query",
88506            "name": "dryRun",
88507            "type": "string",
88508            "uniqueItems": true
88509          },
88510          {
88511            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88512            "in": "query",
88513            "name": "fieldManager",
88514            "type": "string",
88515            "uniqueItems": true
88516          }
88517        ],
88518        "produces": [
88519          "application/json",
88520          "application/yaml",
88521          "application/vnd.kubernetes.protobuf"
88522        ],
88523        "responses": {
88524          "200": {
88525            "description": "OK",
88526            "schema": {
88527              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88528            }
88529          },
88530          "201": {
88531            "description": "Created",
88532            "schema": {
88533              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget"
88534            }
88535          },
88536          "401": {
88537            "description": "Unauthorized"
88538          }
88539        },
88540        "schemes": [
88541          "https"
88542        ],
88543        "tags": [
88544          "policy_v1beta1"
88545        ],
88546        "x-kubernetes-action": "put",
88547        "x-kubernetes-group-version-kind": {
88548          "group": "policy",
88549          "kind": "PodDisruptionBudget",
88550          "version": "v1beta1"
88551        }
88552      }
88553    },
88554    "/apis/policy/v1beta1/poddisruptionbudgets": {
88555      "get": {
88556        "consumes": [
88557          "*/*"
88558        ],
88559        "description": "list or watch objects of kind PodDisruptionBudget",
88560        "operationId": "listPolicyV1beta1PodDisruptionBudgetForAllNamespaces",
88561        "produces": [
88562          "application/json",
88563          "application/yaml",
88564          "application/vnd.kubernetes.protobuf",
88565          "application/json;stream=watch",
88566          "application/vnd.kubernetes.protobuf;stream=watch"
88567        ],
88568        "responses": {
88569          "200": {
88570            "description": "OK",
88571            "schema": {
88572              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudgetList"
88573            }
88574          },
88575          "401": {
88576            "description": "Unauthorized"
88577          }
88578        },
88579        "schemes": [
88580          "https"
88581        ],
88582        "tags": [
88583          "policy_v1beta1"
88584        ],
88585        "x-kubernetes-action": "list",
88586        "x-kubernetes-group-version-kind": {
88587          "group": "policy",
88588          "kind": "PodDisruptionBudget",
88589          "version": "v1beta1"
88590        }
88591      },
88592      "parameters": [
88593        {
88594          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
88595          "in": "query",
88596          "name": "allowWatchBookmarks",
88597          "type": "boolean",
88598          "uniqueItems": true
88599        },
88600        {
88601          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88602          "in": "query",
88603          "name": "continue",
88604          "type": "string",
88605          "uniqueItems": true
88606        },
88607        {
88608          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88609          "in": "query",
88610          "name": "fieldSelector",
88611          "type": "string",
88612          "uniqueItems": true
88613        },
88614        {
88615          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88616          "in": "query",
88617          "name": "labelSelector",
88618          "type": "string",
88619          "uniqueItems": true
88620        },
88621        {
88622          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88623          "in": "query",
88624          "name": "limit",
88625          "type": "integer",
88626          "uniqueItems": true
88627        },
88628        {
88629          "description": "If 'true', then the output is pretty printed.",
88630          "in": "query",
88631          "name": "pretty",
88632          "type": "string",
88633          "uniqueItems": true
88634        },
88635        {
88636          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
88637          "in": "query",
88638          "name": "resourceVersion",
88639          "type": "string",
88640          "uniqueItems": true
88641        },
88642        {
88643          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88644          "in": "query",
88645          "name": "timeoutSeconds",
88646          "type": "integer",
88647          "uniqueItems": true
88648        },
88649        {
88650          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88651          "in": "query",
88652          "name": "watch",
88653          "type": "boolean",
88654          "uniqueItems": true
88655        }
88656      ]
88657    },
88658    "/apis/policy/v1beta1/podsecuritypolicies": {
88659      "delete": {
88660        "consumes": [
88661          "*/*"
88662        ],
88663        "description": "delete collection of PodSecurityPolicy",
88664        "operationId": "deletePolicyV1beta1CollectionPodSecurityPolicy",
88665        "parameters": [
88666          {
88667            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
88668            "in": "query",
88669            "name": "allowWatchBookmarks",
88670            "type": "boolean",
88671            "uniqueItems": true
88672          },
88673          {
88674            "in": "body",
88675            "name": "body",
88676            "schema": {
88677              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88678            }
88679          },
88680          {
88681            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88682            "in": "query",
88683            "name": "continue",
88684            "type": "string",
88685            "uniqueItems": true
88686          },
88687          {
88688            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88689            "in": "query",
88690            "name": "dryRun",
88691            "type": "string",
88692            "uniqueItems": true
88693          },
88694          {
88695            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88696            "in": "query",
88697            "name": "fieldSelector",
88698            "type": "string",
88699            "uniqueItems": true
88700          },
88701          {
88702            "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.",
88703            "in": "query",
88704            "name": "gracePeriodSeconds",
88705            "type": "integer",
88706            "uniqueItems": true
88707          },
88708          {
88709            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88710            "in": "query",
88711            "name": "labelSelector",
88712            "type": "string",
88713            "uniqueItems": true
88714          },
88715          {
88716            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88717            "in": "query",
88718            "name": "limit",
88719            "type": "integer",
88720            "uniqueItems": true
88721          },
88722          {
88723            "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.",
88724            "in": "query",
88725            "name": "orphanDependents",
88726            "type": "boolean",
88727            "uniqueItems": true
88728          },
88729          {
88730            "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.",
88731            "in": "query",
88732            "name": "propagationPolicy",
88733            "type": "string",
88734            "uniqueItems": true
88735          },
88736          {
88737            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
88738            "in": "query",
88739            "name": "resourceVersion",
88740            "type": "string",
88741            "uniqueItems": true
88742          },
88743          {
88744            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88745            "in": "query",
88746            "name": "timeoutSeconds",
88747            "type": "integer",
88748            "uniqueItems": true
88749          },
88750          {
88751            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88752            "in": "query",
88753            "name": "watch",
88754            "type": "boolean",
88755            "uniqueItems": true
88756          }
88757        ],
88758        "produces": [
88759          "application/json",
88760          "application/yaml",
88761          "application/vnd.kubernetes.protobuf"
88762        ],
88763        "responses": {
88764          "200": {
88765            "description": "OK",
88766            "schema": {
88767              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
88768            }
88769          },
88770          "401": {
88771            "description": "Unauthorized"
88772          }
88773        },
88774        "schemes": [
88775          "https"
88776        ],
88777        "tags": [
88778          "policy_v1beta1"
88779        ],
88780        "x-kubernetes-action": "deletecollection",
88781        "x-kubernetes-group-version-kind": {
88782          "group": "policy",
88783          "kind": "PodSecurityPolicy",
88784          "version": "v1beta1"
88785        }
88786      },
88787      "get": {
88788        "consumes": [
88789          "*/*"
88790        ],
88791        "description": "list or watch objects of kind PodSecurityPolicy",
88792        "operationId": "listPolicyV1beta1PodSecurityPolicy",
88793        "parameters": [
88794          {
88795            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
88796            "in": "query",
88797            "name": "allowWatchBookmarks",
88798            "type": "boolean",
88799            "uniqueItems": true
88800          },
88801          {
88802            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
88803            "in": "query",
88804            "name": "continue",
88805            "type": "string",
88806            "uniqueItems": true
88807          },
88808          {
88809            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
88810            "in": "query",
88811            "name": "fieldSelector",
88812            "type": "string",
88813            "uniqueItems": true
88814          },
88815          {
88816            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
88817            "in": "query",
88818            "name": "labelSelector",
88819            "type": "string",
88820            "uniqueItems": true
88821          },
88822          {
88823            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
88824            "in": "query",
88825            "name": "limit",
88826            "type": "integer",
88827            "uniqueItems": true
88828          },
88829          {
88830            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
88831            "in": "query",
88832            "name": "resourceVersion",
88833            "type": "string",
88834            "uniqueItems": true
88835          },
88836          {
88837            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
88838            "in": "query",
88839            "name": "timeoutSeconds",
88840            "type": "integer",
88841            "uniqueItems": true
88842          },
88843          {
88844            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
88845            "in": "query",
88846            "name": "watch",
88847            "type": "boolean",
88848            "uniqueItems": true
88849          }
88850        ],
88851        "produces": [
88852          "application/json",
88853          "application/yaml",
88854          "application/vnd.kubernetes.protobuf",
88855          "application/json;stream=watch",
88856          "application/vnd.kubernetes.protobuf;stream=watch"
88857        ],
88858        "responses": {
88859          "200": {
88860            "description": "OK",
88861            "schema": {
88862              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicyList"
88863            }
88864          },
88865          "401": {
88866            "description": "Unauthorized"
88867          }
88868        },
88869        "schemes": [
88870          "https"
88871        ],
88872        "tags": [
88873          "policy_v1beta1"
88874        ],
88875        "x-kubernetes-action": "list",
88876        "x-kubernetes-group-version-kind": {
88877          "group": "policy",
88878          "kind": "PodSecurityPolicy",
88879          "version": "v1beta1"
88880        }
88881      },
88882      "parameters": [
88883        {
88884          "description": "If 'true', then the output is pretty printed.",
88885          "in": "query",
88886          "name": "pretty",
88887          "type": "string",
88888          "uniqueItems": true
88889        }
88890      ],
88891      "post": {
88892        "consumes": [
88893          "*/*"
88894        ],
88895        "description": "create a PodSecurityPolicy",
88896        "operationId": "createPolicyV1beta1PodSecurityPolicy",
88897        "parameters": [
88898          {
88899            "in": "body",
88900            "name": "body",
88901            "required": true,
88902            "schema": {
88903              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
88904            }
88905          },
88906          {
88907            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88908            "in": "query",
88909            "name": "dryRun",
88910            "type": "string",
88911            "uniqueItems": true
88912          },
88913          {
88914            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
88915            "in": "query",
88916            "name": "fieldManager",
88917            "type": "string",
88918            "uniqueItems": true
88919          }
88920        ],
88921        "produces": [
88922          "application/json",
88923          "application/yaml",
88924          "application/vnd.kubernetes.protobuf"
88925        ],
88926        "responses": {
88927          "200": {
88928            "description": "OK",
88929            "schema": {
88930              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
88931            }
88932          },
88933          "201": {
88934            "description": "Created",
88935            "schema": {
88936              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
88937            }
88938          },
88939          "202": {
88940            "description": "Accepted",
88941            "schema": {
88942              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
88943            }
88944          },
88945          "401": {
88946            "description": "Unauthorized"
88947          }
88948        },
88949        "schemes": [
88950          "https"
88951        ],
88952        "tags": [
88953          "policy_v1beta1"
88954        ],
88955        "x-kubernetes-action": "post",
88956        "x-kubernetes-group-version-kind": {
88957          "group": "policy",
88958          "kind": "PodSecurityPolicy",
88959          "version": "v1beta1"
88960        }
88961      }
88962    },
88963    "/apis/policy/v1beta1/podsecuritypolicies/{name}": {
88964      "delete": {
88965        "consumes": [
88966          "*/*"
88967        ],
88968        "description": "delete a PodSecurityPolicy",
88969        "operationId": "deletePolicyV1beta1PodSecurityPolicy",
88970        "parameters": [
88971          {
88972            "in": "body",
88973            "name": "body",
88974            "schema": {
88975              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
88976            }
88977          },
88978          {
88979            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
88980            "in": "query",
88981            "name": "dryRun",
88982            "type": "string",
88983            "uniqueItems": true
88984          },
88985          {
88986            "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.",
88987            "in": "query",
88988            "name": "gracePeriodSeconds",
88989            "type": "integer",
88990            "uniqueItems": true
88991          },
88992          {
88993            "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.",
88994            "in": "query",
88995            "name": "orphanDependents",
88996            "type": "boolean",
88997            "uniqueItems": true
88998          },
88999          {
89000            "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.",
89001            "in": "query",
89002            "name": "propagationPolicy",
89003            "type": "string",
89004            "uniqueItems": true
89005          }
89006        ],
89007        "produces": [
89008          "application/json",
89009          "application/yaml",
89010          "application/vnd.kubernetes.protobuf"
89011        ],
89012        "responses": {
89013          "200": {
89014            "description": "OK",
89015            "schema": {
89016              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
89017            }
89018          },
89019          "202": {
89020            "description": "Accepted",
89021            "schema": {
89022              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
89023            }
89024          },
89025          "401": {
89026            "description": "Unauthorized"
89027          }
89028        },
89029        "schemes": [
89030          "https"
89031        ],
89032        "tags": [
89033          "policy_v1beta1"
89034        ],
89035        "x-kubernetes-action": "delete",
89036        "x-kubernetes-group-version-kind": {
89037          "group": "policy",
89038          "kind": "PodSecurityPolicy",
89039          "version": "v1beta1"
89040        }
89041      },
89042      "get": {
89043        "consumes": [
89044          "*/*"
89045        ],
89046        "description": "read the specified PodSecurityPolicy",
89047        "operationId": "readPolicyV1beta1PodSecurityPolicy",
89048        "parameters": [
89049          {
89050            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
89051            "in": "query",
89052            "name": "exact",
89053            "type": "boolean",
89054            "uniqueItems": true
89055          },
89056          {
89057            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
89058            "in": "query",
89059            "name": "export",
89060            "type": "boolean",
89061            "uniqueItems": true
89062          }
89063        ],
89064        "produces": [
89065          "application/json",
89066          "application/yaml",
89067          "application/vnd.kubernetes.protobuf"
89068        ],
89069        "responses": {
89070          "200": {
89071            "description": "OK",
89072            "schema": {
89073              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
89074            }
89075          },
89076          "401": {
89077            "description": "Unauthorized"
89078          }
89079        },
89080        "schemes": [
89081          "https"
89082        ],
89083        "tags": [
89084          "policy_v1beta1"
89085        ],
89086        "x-kubernetes-action": "get",
89087        "x-kubernetes-group-version-kind": {
89088          "group": "policy",
89089          "kind": "PodSecurityPolicy",
89090          "version": "v1beta1"
89091        }
89092      },
89093      "parameters": [
89094        {
89095          "description": "name of the PodSecurityPolicy",
89096          "in": "path",
89097          "name": "name",
89098          "required": true,
89099          "type": "string",
89100          "uniqueItems": true
89101        },
89102        {
89103          "description": "If 'true', then the output is pretty printed.",
89104          "in": "query",
89105          "name": "pretty",
89106          "type": "string",
89107          "uniqueItems": true
89108        }
89109      ],
89110      "patch": {
89111        "consumes": [
89112          "application/json-patch+json",
89113          "application/merge-patch+json",
89114          "application/strategic-merge-patch+json"
89115        ],
89116        "description": "partially update the specified PodSecurityPolicy",
89117        "operationId": "patchPolicyV1beta1PodSecurityPolicy",
89118        "parameters": [
89119          {
89120            "in": "body",
89121            "name": "body",
89122            "required": true,
89123            "schema": {
89124              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
89125            }
89126          },
89127          {
89128            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89129            "in": "query",
89130            "name": "dryRun",
89131            "type": "string",
89132            "uniqueItems": true
89133          },
89134          {
89135            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
89136            "in": "query",
89137            "name": "fieldManager",
89138            "type": "string",
89139            "uniqueItems": true
89140          },
89141          {
89142            "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.",
89143            "in": "query",
89144            "name": "force",
89145            "type": "boolean",
89146            "uniqueItems": true
89147          }
89148        ],
89149        "produces": [
89150          "application/json",
89151          "application/yaml",
89152          "application/vnd.kubernetes.protobuf"
89153        ],
89154        "responses": {
89155          "200": {
89156            "description": "OK",
89157            "schema": {
89158              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
89159            }
89160          },
89161          "401": {
89162            "description": "Unauthorized"
89163          }
89164        },
89165        "schemes": [
89166          "https"
89167        ],
89168        "tags": [
89169          "policy_v1beta1"
89170        ],
89171        "x-kubernetes-action": "patch",
89172        "x-kubernetes-group-version-kind": {
89173          "group": "policy",
89174          "kind": "PodSecurityPolicy",
89175          "version": "v1beta1"
89176        }
89177      },
89178      "put": {
89179        "consumes": [
89180          "*/*"
89181        ],
89182        "description": "replace the specified PodSecurityPolicy",
89183        "operationId": "replacePolicyV1beta1PodSecurityPolicy",
89184        "parameters": [
89185          {
89186            "in": "body",
89187            "name": "body",
89188            "required": true,
89189            "schema": {
89190              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
89191            }
89192          },
89193          {
89194            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89195            "in": "query",
89196            "name": "dryRun",
89197            "type": "string",
89198            "uniqueItems": true
89199          },
89200          {
89201            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
89202            "in": "query",
89203            "name": "fieldManager",
89204            "type": "string",
89205            "uniqueItems": true
89206          }
89207        ],
89208        "produces": [
89209          "application/json",
89210          "application/yaml",
89211          "application/vnd.kubernetes.protobuf"
89212        ],
89213        "responses": {
89214          "200": {
89215            "description": "OK",
89216            "schema": {
89217              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
89218            }
89219          },
89220          "201": {
89221            "description": "Created",
89222            "schema": {
89223              "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy"
89224            }
89225          },
89226          "401": {
89227            "description": "Unauthorized"
89228          }
89229        },
89230        "schemes": [
89231          "https"
89232        ],
89233        "tags": [
89234          "policy_v1beta1"
89235        ],
89236        "x-kubernetes-action": "put",
89237        "x-kubernetes-group-version-kind": {
89238          "group": "policy",
89239          "kind": "PodSecurityPolicy",
89240          "version": "v1beta1"
89241        }
89242      }
89243    },
89244    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets": {
89245      "get": {
89246        "consumes": [
89247          "*/*"
89248        ],
89249        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
89250        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudgetList",
89251        "produces": [
89252          "application/json",
89253          "application/yaml",
89254          "application/vnd.kubernetes.protobuf",
89255          "application/json;stream=watch",
89256          "application/vnd.kubernetes.protobuf;stream=watch"
89257        ],
89258        "responses": {
89259          "200": {
89260            "description": "OK",
89261            "schema": {
89262              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89263            }
89264          },
89265          "401": {
89266            "description": "Unauthorized"
89267          }
89268        },
89269        "schemes": [
89270          "https"
89271        ],
89272        "tags": [
89273          "policy_v1beta1"
89274        ],
89275        "x-kubernetes-action": "watchlist",
89276        "x-kubernetes-group-version-kind": {
89277          "group": "policy",
89278          "kind": "PodDisruptionBudget",
89279          "version": "v1beta1"
89280        }
89281      },
89282      "parameters": [
89283        {
89284          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
89285          "in": "query",
89286          "name": "allowWatchBookmarks",
89287          "type": "boolean",
89288          "uniqueItems": true
89289        },
89290        {
89291          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89292          "in": "query",
89293          "name": "continue",
89294          "type": "string",
89295          "uniqueItems": true
89296        },
89297        {
89298          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89299          "in": "query",
89300          "name": "fieldSelector",
89301          "type": "string",
89302          "uniqueItems": true
89303        },
89304        {
89305          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89306          "in": "query",
89307          "name": "labelSelector",
89308          "type": "string",
89309          "uniqueItems": true
89310        },
89311        {
89312          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89313          "in": "query",
89314          "name": "limit",
89315          "type": "integer",
89316          "uniqueItems": true
89317        },
89318        {
89319          "description": "object name and auth scope, such as for teams and projects",
89320          "in": "path",
89321          "name": "namespace",
89322          "required": true,
89323          "type": "string",
89324          "uniqueItems": true
89325        },
89326        {
89327          "description": "If 'true', then the output is pretty printed.",
89328          "in": "query",
89329          "name": "pretty",
89330          "type": "string",
89331          "uniqueItems": true
89332        },
89333        {
89334          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
89335          "in": "query",
89336          "name": "resourceVersion",
89337          "type": "string",
89338          "uniqueItems": true
89339        },
89340        {
89341          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89342          "in": "query",
89343          "name": "timeoutSeconds",
89344          "type": "integer",
89345          "uniqueItems": true
89346        },
89347        {
89348          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89349          "in": "query",
89350          "name": "watch",
89351          "type": "boolean",
89352          "uniqueItems": true
89353        }
89354      ]
89355    },
89356    "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": {
89357      "get": {
89358        "consumes": [
89359          "*/*"
89360        ],
89361        "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.",
89362        "operationId": "watchPolicyV1beta1NamespacedPodDisruptionBudget",
89363        "produces": [
89364          "application/json",
89365          "application/yaml",
89366          "application/vnd.kubernetes.protobuf",
89367          "application/json;stream=watch",
89368          "application/vnd.kubernetes.protobuf;stream=watch"
89369        ],
89370        "responses": {
89371          "200": {
89372            "description": "OK",
89373            "schema": {
89374              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89375            }
89376          },
89377          "401": {
89378            "description": "Unauthorized"
89379          }
89380        },
89381        "schemes": [
89382          "https"
89383        ],
89384        "tags": [
89385          "policy_v1beta1"
89386        ],
89387        "x-kubernetes-action": "watch",
89388        "x-kubernetes-group-version-kind": {
89389          "group": "policy",
89390          "kind": "PodDisruptionBudget",
89391          "version": "v1beta1"
89392        }
89393      },
89394      "parameters": [
89395        {
89396          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
89397          "in": "query",
89398          "name": "allowWatchBookmarks",
89399          "type": "boolean",
89400          "uniqueItems": true
89401        },
89402        {
89403          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89404          "in": "query",
89405          "name": "continue",
89406          "type": "string",
89407          "uniqueItems": true
89408        },
89409        {
89410          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89411          "in": "query",
89412          "name": "fieldSelector",
89413          "type": "string",
89414          "uniqueItems": true
89415        },
89416        {
89417          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89418          "in": "query",
89419          "name": "labelSelector",
89420          "type": "string",
89421          "uniqueItems": true
89422        },
89423        {
89424          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89425          "in": "query",
89426          "name": "limit",
89427          "type": "integer",
89428          "uniqueItems": true
89429        },
89430        {
89431          "description": "name of the PodDisruptionBudget",
89432          "in": "path",
89433          "name": "name",
89434          "required": true,
89435          "type": "string",
89436          "uniqueItems": true
89437        },
89438        {
89439          "description": "object name and auth scope, such as for teams and projects",
89440          "in": "path",
89441          "name": "namespace",
89442          "required": true,
89443          "type": "string",
89444          "uniqueItems": true
89445        },
89446        {
89447          "description": "If 'true', then the output is pretty printed.",
89448          "in": "query",
89449          "name": "pretty",
89450          "type": "string",
89451          "uniqueItems": true
89452        },
89453        {
89454          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
89455          "in": "query",
89456          "name": "resourceVersion",
89457          "type": "string",
89458          "uniqueItems": true
89459        },
89460        {
89461          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89462          "in": "query",
89463          "name": "timeoutSeconds",
89464          "type": "integer",
89465          "uniqueItems": true
89466        },
89467        {
89468          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89469          "in": "query",
89470          "name": "watch",
89471          "type": "boolean",
89472          "uniqueItems": true
89473        }
89474      ]
89475    },
89476    "/apis/policy/v1beta1/watch/poddisruptionbudgets": {
89477      "get": {
89478        "consumes": [
89479          "*/*"
89480        ],
89481        "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.",
89482        "operationId": "watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces",
89483        "produces": [
89484          "application/json",
89485          "application/yaml",
89486          "application/vnd.kubernetes.protobuf",
89487          "application/json;stream=watch",
89488          "application/vnd.kubernetes.protobuf;stream=watch"
89489        ],
89490        "responses": {
89491          "200": {
89492            "description": "OK",
89493            "schema": {
89494              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89495            }
89496          },
89497          "401": {
89498            "description": "Unauthorized"
89499          }
89500        },
89501        "schemes": [
89502          "https"
89503        ],
89504        "tags": [
89505          "policy_v1beta1"
89506        ],
89507        "x-kubernetes-action": "watchlist",
89508        "x-kubernetes-group-version-kind": {
89509          "group": "policy",
89510          "kind": "PodDisruptionBudget",
89511          "version": "v1beta1"
89512        }
89513      },
89514      "parameters": [
89515        {
89516          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
89517          "in": "query",
89518          "name": "allowWatchBookmarks",
89519          "type": "boolean",
89520          "uniqueItems": true
89521        },
89522        {
89523          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89524          "in": "query",
89525          "name": "continue",
89526          "type": "string",
89527          "uniqueItems": true
89528        },
89529        {
89530          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89531          "in": "query",
89532          "name": "fieldSelector",
89533          "type": "string",
89534          "uniqueItems": true
89535        },
89536        {
89537          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89538          "in": "query",
89539          "name": "labelSelector",
89540          "type": "string",
89541          "uniqueItems": true
89542        },
89543        {
89544          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89545          "in": "query",
89546          "name": "limit",
89547          "type": "integer",
89548          "uniqueItems": true
89549        },
89550        {
89551          "description": "If 'true', then the output is pretty printed.",
89552          "in": "query",
89553          "name": "pretty",
89554          "type": "string",
89555          "uniqueItems": true
89556        },
89557        {
89558          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
89559          "in": "query",
89560          "name": "resourceVersion",
89561          "type": "string",
89562          "uniqueItems": true
89563        },
89564        {
89565          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89566          "in": "query",
89567          "name": "timeoutSeconds",
89568          "type": "integer",
89569          "uniqueItems": true
89570        },
89571        {
89572          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89573          "in": "query",
89574          "name": "watch",
89575          "type": "boolean",
89576          "uniqueItems": true
89577        }
89578      ]
89579    },
89580    "/apis/policy/v1beta1/watch/podsecuritypolicies": {
89581      "get": {
89582        "consumes": [
89583          "*/*"
89584        ],
89585        "description": "watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead.",
89586        "operationId": "watchPolicyV1beta1PodSecurityPolicyList",
89587        "produces": [
89588          "application/json",
89589          "application/yaml",
89590          "application/vnd.kubernetes.protobuf",
89591          "application/json;stream=watch",
89592          "application/vnd.kubernetes.protobuf;stream=watch"
89593        ],
89594        "responses": {
89595          "200": {
89596            "description": "OK",
89597            "schema": {
89598              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89599            }
89600          },
89601          "401": {
89602            "description": "Unauthorized"
89603          }
89604        },
89605        "schemes": [
89606          "https"
89607        ],
89608        "tags": [
89609          "policy_v1beta1"
89610        ],
89611        "x-kubernetes-action": "watchlist",
89612        "x-kubernetes-group-version-kind": {
89613          "group": "policy",
89614          "kind": "PodSecurityPolicy",
89615          "version": "v1beta1"
89616        }
89617      },
89618      "parameters": [
89619        {
89620          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
89621          "in": "query",
89622          "name": "allowWatchBookmarks",
89623          "type": "boolean",
89624          "uniqueItems": true
89625        },
89626        {
89627          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89628          "in": "query",
89629          "name": "continue",
89630          "type": "string",
89631          "uniqueItems": true
89632        },
89633        {
89634          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89635          "in": "query",
89636          "name": "fieldSelector",
89637          "type": "string",
89638          "uniqueItems": true
89639        },
89640        {
89641          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89642          "in": "query",
89643          "name": "labelSelector",
89644          "type": "string",
89645          "uniqueItems": true
89646        },
89647        {
89648          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89649          "in": "query",
89650          "name": "limit",
89651          "type": "integer",
89652          "uniqueItems": true
89653        },
89654        {
89655          "description": "If 'true', then the output is pretty printed.",
89656          "in": "query",
89657          "name": "pretty",
89658          "type": "string",
89659          "uniqueItems": true
89660        },
89661        {
89662          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
89663          "in": "query",
89664          "name": "resourceVersion",
89665          "type": "string",
89666          "uniqueItems": true
89667        },
89668        {
89669          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89670          "in": "query",
89671          "name": "timeoutSeconds",
89672          "type": "integer",
89673          "uniqueItems": true
89674        },
89675        {
89676          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89677          "in": "query",
89678          "name": "watch",
89679          "type": "boolean",
89680          "uniqueItems": true
89681        }
89682      ]
89683    },
89684    "/apis/policy/v1beta1/watch/podsecuritypolicies/{name}": {
89685      "get": {
89686        "consumes": [
89687          "*/*"
89688        ],
89689        "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.",
89690        "operationId": "watchPolicyV1beta1PodSecurityPolicy",
89691        "produces": [
89692          "application/json",
89693          "application/yaml",
89694          "application/vnd.kubernetes.protobuf",
89695          "application/json;stream=watch",
89696          "application/vnd.kubernetes.protobuf;stream=watch"
89697        ],
89698        "responses": {
89699          "200": {
89700            "description": "OK",
89701            "schema": {
89702              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
89703            }
89704          },
89705          "401": {
89706            "description": "Unauthorized"
89707          }
89708        },
89709        "schemes": [
89710          "https"
89711        ],
89712        "tags": [
89713          "policy_v1beta1"
89714        ],
89715        "x-kubernetes-action": "watch",
89716        "x-kubernetes-group-version-kind": {
89717          "group": "policy",
89718          "kind": "PodSecurityPolicy",
89719          "version": "v1beta1"
89720        }
89721      },
89722      "parameters": [
89723        {
89724          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
89725          "in": "query",
89726          "name": "allowWatchBookmarks",
89727          "type": "boolean",
89728          "uniqueItems": true
89729        },
89730        {
89731          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89732          "in": "query",
89733          "name": "continue",
89734          "type": "string",
89735          "uniqueItems": true
89736        },
89737        {
89738          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89739          "in": "query",
89740          "name": "fieldSelector",
89741          "type": "string",
89742          "uniqueItems": true
89743        },
89744        {
89745          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89746          "in": "query",
89747          "name": "labelSelector",
89748          "type": "string",
89749          "uniqueItems": true
89750        },
89751        {
89752          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89753          "in": "query",
89754          "name": "limit",
89755          "type": "integer",
89756          "uniqueItems": true
89757        },
89758        {
89759          "description": "name of the PodSecurityPolicy",
89760          "in": "path",
89761          "name": "name",
89762          "required": true,
89763          "type": "string",
89764          "uniqueItems": true
89765        },
89766        {
89767          "description": "If 'true', then the output is pretty printed.",
89768          "in": "query",
89769          "name": "pretty",
89770          "type": "string",
89771          "uniqueItems": true
89772        },
89773        {
89774          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
89775          "in": "query",
89776          "name": "resourceVersion",
89777          "type": "string",
89778          "uniqueItems": true
89779        },
89780        {
89781          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89782          "in": "query",
89783          "name": "timeoutSeconds",
89784          "type": "integer",
89785          "uniqueItems": true
89786        },
89787        {
89788          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89789          "in": "query",
89790          "name": "watch",
89791          "type": "boolean",
89792          "uniqueItems": true
89793        }
89794      ]
89795    },
89796    "/apis/rbac.authorization.k8s.io/": {
89797      "get": {
89798        "consumes": [
89799          "application/json",
89800          "application/yaml",
89801          "application/vnd.kubernetes.protobuf"
89802        ],
89803        "description": "get information of a group",
89804        "operationId": "getRbacAuthorizationAPIGroup",
89805        "produces": [
89806          "application/json",
89807          "application/yaml",
89808          "application/vnd.kubernetes.protobuf"
89809        ],
89810        "responses": {
89811          "200": {
89812            "description": "OK",
89813            "schema": {
89814              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
89815            }
89816          },
89817          "401": {
89818            "description": "Unauthorized"
89819          }
89820        },
89821        "schemes": [
89822          "https"
89823        ],
89824        "tags": [
89825          "rbacAuthorization"
89826        ]
89827      }
89828    },
89829    "/apis/rbac.authorization.k8s.io/v1/": {
89830      "get": {
89831        "consumes": [
89832          "application/json",
89833          "application/yaml",
89834          "application/vnd.kubernetes.protobuf"
89835        ],
89836        "description": "get available resources",
89837        "operationId": "getRbacAuthorizationV1APIResources",
89838        "produces": [
89839          "application/json",
89840          "application/yaml",
89841          "application/vnd.kubernetes.protobuf"
89842        ],
89843        "responses": {
89844          "200": {
89845            "description": "OK",
89846            "schema": {
89847              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
89848            }
89849          },
89850          "401": {
89851            "description": "Unauthorized"
89852          }
89853        },
89854        "schemes": [
89855          "https"
89856        ],
89857        "tags": [
89858          "rbacAuthorization_v1"
89859        ]
89860      }
89861    },
89862    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings": {
89863      "delete": {
89864        "consumes": [
89865          "*/*"
89866        ],
89867        "description": "delete collection of ClusterRoleBinding",
89868        "operationId": "deleteRbacAuthorizationV1CollectionClusterRoleBinding",
89869        "parameters": [
89870          {
89871            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
89872            "in": "query",
89873            "name": "allowWatchBookmarks",
89874            "type": "boolean",
89875            "uniqueItems": true
89876          },
89877          {
89878            "in": "body",
89879            "name": "body",
89880            "schema": {
89881              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
89882            }
89883          },
89884          {
89885            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
89886            "in": "query",
89887            "name": "continue",
89888            "type": "string",
89889            "uniqueItems": true
89890          },
89891          {
89892            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
89893            "in": "query",
89894            "name": "dryRun",
89895            "type": "string",
89896            "uniqueItems": true
89897          },
89898          {
89899            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
89900            "in": "query",
89901            "name": "fieldSelector",
89902            "type": "string",
89903            "uniqueItems": true
89904          },
89905          {
89906            "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.",
89907            "in": "query",
89908            "name": "gracePeriodSeconds",
89909            "type": "integer",
89910            "uniqueItems": true
89911          },
89912          {
89913            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
89914            "in": "query",
89915            "name": "labelSelector",
89916            "type": "string",
89917            "uniqueItems": true
89918          },
89919          {
89920            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
89921            "in": "query",
89922            "name": "limit",
89923            "type": "integer",
89924            "uniqueItems": true
89925          },
89926          {
89927            "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.",
89928            "in": "query",
89929            "name": "orphanDependents",
89930            "type": "boolean",
89931            "uniqueItems": true
89932          },
89933          {
89934            "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.",
89935            "in": "query",
89936            "name": "propagationPolicy",
89937            "type": "string",
89938            "uniqueItems": true
89939          },
89940          {
89941            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
89942            "in": "query",
89943            "name": "resourceVersion",
89944            "type": "string",
89945            "uniqueItems": true
89946          },
89947          {
89948            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
89949            "in": "query",
89950            "name": "timeoutSeconds",
89951            "type": "integer",
89952            "uniqueItems": true
89953          },
89954          {
89955            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
89956            "in": "query",
89957            "name": "watch",
89958            "type": "boolean",
89959            "uniqueItems": true
89960          }
89961        ],
89962        "produces": [
89963          "application/json",
89964          "application/yaml",
89965          "application/vnd.kubernetes.protobuf"
89966        ],
89967        "responses": {
89968          "200": {
89969            "description": "OK",
89970            "schema": {
89971              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
89972            }
89973          },
89974          "401": {
89975            "description": "Unauthorized"
89976          }
89977        },
89978        "schemes": [
89979          "https"
89980        ],
89981        "tags": [
89982          "rbacAuthorization_v1"
89983        ],
89984        "x-kubernetes-action": "deletecollection",
89985        "x-kubernetes-group-version-kind": {
89986          "group": "rbac.authorization.k8s.io",
89987          "kind": "ClusterRoleBinding",
89988          "version": "v1"
89989        }
89990      },
89991      "get": {
89992        "consumes": [
89993          "*/*"
89994        ],
89995        "description": "list or watch objects of kind ClusterRoleBinding",
89996        "operationId": "listRbacAuthorizationV1ClusterRoleBinding",
89997        "parameters": [
89998          {
89999            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
90000            "in": "query",
90001            "name": "allowWatchBookmarks",
90002            "type": "boolean",
90003            "uniqueItems": true
90004          },
90005          {
90006            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90007            "in": "query",
90008            "name": "continue",
90009            "type": "string",
90010            "uniqueItems": true
90011          },
90012          {
90013            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90014            "in": "query",
90015            "name": "fieldSelector",
90016            "type": "string",
90017            "uniqueItems": true
90018          },
90019          {
90020            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90021            "in": "query",
90022            "name": "labelSelector",
90023            "type": "string",
90024            "uniqueItems": true
90025          },
90026          {
90027            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90028            "in": "query",
90029            "name": "limit",
90030            "type": "integer",
90031            "uniqueItems": true
90032          },
90033          {
90034            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
90035            "in": "query",
90036            "name": "resourceVersion",
90037            "type": "string",
90038            "uniqueItems": true
90039          },
90040          {
90041            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90042            "in": "query",
90043            "name": "timeoutSeconds",
90044            "type": "integer",
90045            "uniqueItems": true
90046          },
90047          {
90048            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90049            "in": "query",
90050            "name": "watch",
90051            "type": "boolean",
90052            "uniqueItems": true
90053          }
90054        ],
90055        "produces": [
90056          "application/json",
90057          "application/yaml",
90058          "application/vnd.kubernetes.protobuf",
90059          "application/json;stream=watch",
90060          "application/vnd.kubernetes.protobuf;stream=watch"
90061        ],
90062        "responses": {
90063          "200": {
90064            "description": "OK",
90065            "schema": {
90066              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBindingList"
90067            }
90068          },
90069          "401": {
90070            "description": "Unauthorized"
90071          }
90072        },
90073        "schemes": [
90074          "https"
90075        ],
90076        "tags": [
90077          "rbacAuthorization_v1"
90078        ],
90079        "x-kubernetes-action": "list",
90080        "x-kubernetes-group-version-kind": {
90081          "group": "rbac.authorization.k8s.io",
90082          "kind": "ClusterRoleBinding",
90083          "version": "v1"
90084        }
90085      },
90086      "parameters": [
90087        {
90088          "description": "If 'true', then the output is pretty printed.",
90089          "in": "query",
90090          "name": "pretty",
90091          "type": "string",
90092          "uniqueItems": true
90093        }
90094      ],
90095      "post": {
90096        "consumes": [
90097          "*/*"
90098        ],
90099        "description": "create a ClusterRoleBinding",
90100        "operationId": "createRbacAuthorizationV1ClusterRoleBinding",
90101        "parameters": [
90102          {
90103            "in": "body",
90104            "name": "body",
90105            "required": true,
90106            "schema": {
90107              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90108            }
90109          },
90110          {
90111            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90112            "in": "query",
90113            "name": "dryRun",
90114            "type": "string",
90115            "uniqueItems": true
90116          },
90117          {
90118            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
90119            "in": "query",
90120            "name": "fieldManager",
90121            "type": "string",
90122            "uniqueItems": true
90123          }
90124        ],
90125        "produces": [
90126          "application/json",
90127          "application/yaml",
90128          "application/vnd.kubernetes.protobuf"
90129        ],
90130        "responses": {
90131          "200": {
90132            "description": "OK",
90133            "schema": {
90134              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90135            }
90136          },
90137          "201": {
90138            "description": "Created",
90139            "schema": {
90140              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90141            }
90142          },
90143          "202": {
90144            "description": "Accepted",
90145            "schema": {
90146              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90147            }
90148          },
90149          "401": {
90150            "description": "Unauthorized"
90151          }
90152        },
90153        "schemes": [
90154          "https"
90155        ],
90156        "tags": [
90157          "rbacAuthorization_v1"
90158        ],
90159        "x-kubernetes-action": "post",
90160        "x-kubernetes-group-version-kind": {
90161          "group": "rbac.authorization.k8s.io",
90162          "kind": "ClusterRoleBinding",
90163          "version": "v1"
90164        }
90165      }
90166    },
90167    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": {
90168      "delete": {
90169        "consumes": [
90170          "*/*"
90171        ],
90172        "description": "delete a ClusterRoleBinding",
90173        "operationId": "deleteRbacAuthorizationV1ClusterRoleBinding",
90174        "parameters": [
90175          {
90176            "in": "body",
90177            "name": "body",
90178            "schema": {
90179              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90180            }
90181          },
90182          {
90183            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90184            "in": "query",
90185            "name": "dryRun",
90186            "type": "string",
90187            "uniqueItems": true
90188          },
90189          {
90190            "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.",
90191            "in": "query",
90192            "name": "gracePeriodSeconds",
90193            "type": "integer",
90194            "uniqueItems": true
90195          },
90196          {
90197            "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.",
90198            "in": "query",
90199            "name": "orphanDependents",
90200            "type": "boolean",
90201            "uniqueItems": true
90202          },
90203          {
90204            "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.",
90205            "in": "query",
90206            "name": "propagationPolicy",
90207            "type": "string",
90208            "uniqueItems": true
90209          }
90210        ],
90211        "produces": [
90212          "application/json",
90213          "application/yaml",
90214          "application/vnd.kubernetes.protobuf"
90215        ],
90216        "responses": {
90217          "200": {
90218            "description": "OK",
90219            "schema": {
90220              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90221            }
90222          },
90223          "202": {
90224            "description": "Accepted",
90225            "schema": {
90226              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90227            }
90228          },
90229          "401": {
90230            "description": "Unauthorized"
90231          }
90232        },
90233        "schemes": [
90234          "https"
90235        ],
90236        "tags": [
90237          "rbacAuthorization_v1"
90238        ],
90239        "x-kubernetes-action": "delete",
90240        "x-kubernetes-group-version-kind": {
90241          "group": "rbac.authorization.k8s.io",
90242          "kind": "ClusterRoleBinding",
90243          "version": "v1"
90244        }
90245      },
90246      "get": {
90247        "consumes": [
90248          "*/*"
90249        ],
90250        "description": "read the specified ClusterRoleBinding",
90251        "operationId": "readRbacAuthorizationV1ClusterRoleBinding",
90252        "produces": [
90253          "application/json",
90254          "application/yaml",
90255          "application/vnd.kubernetes.protobuf"
90256        ],
90257        "responses": {
90258          "200": {
90259            "description": "OK",
90260            "schema": {
90261              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90262            }
90263          },
90264          "401": {
90265            "description": "Unauthorized"
90266          }
90267        },
90268        "schemes": [
90269          "https"
90270        ],
90271        "tags": [
90272          "rbacAuthorization_v1"
90273        ],
90274        "x-kubernetes-action": "get",
90275        "x-kubernetes-group-version-kind": {
90276          "group": "rbac.authorization.k8s.io",
90277          "kind": "ClusterRoleBinding",
90278          "version": "v1"
90279        }
90280      },
90281      "parameters": [
90282        {
90283          "description": "name of the ClusterRoleBinding",
90284          "in": "path",
90285          "name": "name",
90286          "required": true,
90287          "type": "string",
90288          "uniqueItems": true
90289        },
90290        {
90291          "description": "If 'true', then the output is pretty printed.",
90292          "in": "query",
90293          "name": "pretty",
90294          "type": "string",
90295          "uniqueItems": true
90296        }
90297      ],
90298      "patch": {
90299        "consumes": [
90300          "application/json-patch+json",
90301          "application/merge-patch+json",
90302          "application/strategic-merge-patch+json"
90303        ],
90304        "description": "partially update the specified ClusterRoleBinding",
90305        "operationId": "patchRbacAuthorizationV1ClusterRoleBinding",
90306        "parameters": [
90307          {
90308            "in": "body",
90309            "name": "body",
90310            "required": true,
90311            "schema": {
90312              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
90313            }
90314          },
90315          {
90316            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90317            "in": "query",
90318            "name": "dryRun",
90319            "type": "string",
90320            "uniqueItems": true
90321          },
90322          {
90323            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
90324            "in": "query",
90325            "name": "fieldManager",
90326            "type": "string",
90327            "uniqueItems": true
90328          },
90329          {
90330            "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.",
90331            "in": "query",
90332            "name": "force",
90333            "type": "boolean",
90334            "uniqueItems": true
90335          }
90336        ],
90337        "produces": [
90338          "application/json",
90339          "application/yaml",
90340          "application/vnd.kubernetes.protobuf"
90341        ],
90342        "responses": {
90343          "200": {
90344            "description": "OK",
90345            "schema": {
90346              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90347            }
90348          },
90349          "401": {
90350            "description": "Unauthorized"
90351          }
90352        },
90353        "schemes": [
90354          "https"
90355        ],
90356        "tags": [
90357          "rbacAuthorization_v1"
90358        ],
90359        "x-kubernetes-action": "patch",
90360        "x-kubernetes-group-version-kind": {
90361          "group": "rbac.authorization.k8s.io",
90362          "kind": "ClusterRoleBinding",
90363          "version": "v1"
90364        }
90365      },
90366      "put": {
90367        "consumes": [
90368          "*/*"
90369        ],
90370        "description": "replace the specified ClusterRoleBinding",
90371        "operationId": "replaceRbacAuthorizationV1ClusterRoleBinding",
90372        "parameters": [
90373          {
90374            "in": "body",
90375            "name": "body",
90376            "required": true,
90377            "schema": {
90378              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90379            }
90380          },
90381          {
90382            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90383            "in": "query",
90384            "name": "dryRun",
90385            "type": "string",
90386            "uniqueItems": true
90387          },
90388          {
90389            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
90390            "in": "query",
90391            "name": "fieldManager",
90392            "type": "string",
90393            "uniqueItems": true
90394          }
90395        ],
90396        "produces": [
90397          "application/json",
90398          "application/yaml",
90399          "application/vnd.kubernetes.protobuf"
90400        ],
90401        "responses": {
90402          "200": {
90403            "description": "OK",
90404            "schema": {
90405              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90406            }
90407          },
90408          "201": {
90409            "description": "Created",
90410            "schema": {
90411              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding"
90412            }
90413          },
90414          "401": {
90415            "description": "Unauthorized"
90416          }
90417        },
90418        "schemes": [
90419          "https"
90420        ],
90421        "tags": [
90422          "rbacAuthorization_v1"
90423        ],
90424        "x-kubernetes-action": "put",
90425        "x-kubernetes-group-version-kind": {
90426          "group": "rbac.authorization.k8s.io",
90427          "kind": "ClusterRoleBinding",
90428          "version": "v1"
90429        }
90430      }
90431    },
90432    "/apis/rbac.authorization.k8s.io/v1/clusterroles": {
90433      "delete": {
90434        "consumes": [
90435          "*/*"
90436        ],
90437        "description": "delete collection of ClusterRole",
90438        "operationId": "deleteRbacAuthorizationV1CollectionClusterRole",
90439        "parameters": [
90440          {
90441            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
90442            "in": "query",
90443            "name": "allowWatchBookmarks",
90444            "type": "boolean",
90445            "uniqueItems": true
90446          },
90447          {
90448            "in": "body",
90449            "name": "body",
90450            "schema": {
90451              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90452            }
90453          },
90454          {
90455            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90456            "in": "query",
90457            "name": "continue",
90458            "type": "string",
90459            "uniqueItems": true
90460          },
90461          {
90462            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90463            "in": "query",
90464            "name": "dryRun",
90465            "type": "string",
90466            "uniqueItems": true
90467          },
90468          {
90469            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90470            "in": "query",
90471            "name": "fieldSelector",
90472            "type": "string",
90473            "uniqueItems": true
90474          },
90475          {
90476            "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.",
90477            "in": "query",
90478            "name": "gracePeriodSeconds",
90479            "type": "integer",
90480            "uniqueItems": true
90481          },
90482          {
90483            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90484            "in": "query",
90485            "name": "labelSelector",
90486            "type": "string",
90487            "uniqueItems": true
90488          },
90489          {
90490            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90491            "in": "query",
90492            "name": "limit",
90493            "type": "integer",
90494            "uniqueItems": true
90495          },
90496          {
90497            "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.",
90498            "in": "query",
90499            "name": "orphanDependents",
90500            "type": "boolean",
90501            "uniqueItems": true
90502          },
90503          {
90504            "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.",
90505            "in": "query",
90506            "name": "propagationPolicy",
90507            "type": "string",
90508            "uniqueItems": true
90509          },
90510          {
90511            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
90512            "in": "query",
90513            "name": "resourceVersion",
90514            "type": "string",
90515            "uniqueItems": true
90516          },
90517          {
90518            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90519            "in": "query",
90520            "name": "timeoutSeconds",
90521            "type": "integer",
90522            "uniqueItems": true
90523          },
90524          {
90525            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90526            "in": "query",
90527            "name": "watch",
90528            "type": "boolean",
90529            "uniqueItems": true
90530          }
90531        ],
90532        "produces": [
90533          "application/json",
90534          "application/yaml",
90535          "application/vnd.kubernetes.protobuf"
90536        ],
90537        "responses": {
90538          "200": {
90539            "description": "OK",
90540            "schema": {
90541              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90542            }
90543          },
90544          "401": {
90545            "description": "Unauthorized"
90546          }
90547        },
90548        "schemes": [
90549          "https"
90550        ],
90551        "tags": [
90552          "rbacAuthorization_v1"
90553        ],
90554        "x-kubernetes-action": "deletecollection",
90555        "x-kubernetes-group-version-kind": {
90556          "group": "rbac.authorization.k8s.io",
90557          "kind": "ClusterRole",
90558          "version": "v1"
90559        }
90560      },
90561      "get": {
90562        "consumes": [
90563          "*/*"
90564        ],
90565        "description": "list or watch objects of kind ClusterRole",
90566        "operationId": "listRbacAuthorizationV1ClusterRole",
90567        "parameters": [
90568          {
90569            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
90570            "in": "query",
90571            "name": "allowWatchBookmarks",
90572            "type": "boolean",
90573            "uniqueItems": true
90574          },
90575          {
90576            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
90577            "in": "query",
90578            "name": "continue",
90579            "type": "string",
90580            "uniqueItems": true
90581          },
90582          {
90583            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
90584            "in": "query",
90585            "name": "fieldSelector",
90586            "type": "string",
90587            "uniqueItems": true
90588          },
90589          {
90590            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
90591            "in": "query",
90592            "name": "labelSelector",
90593            "type": "string",
90594            "uniqueItems": true
90595          },
90596          {
90597            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
90598            "in": "query",
90599            "name": "limit",
90600            "type": "integer",
90601            "uniqueItems": true
90602          },
90603          {
90604            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
90605            "in": "query",
90606            "name": "resourceVersion",
90607            "type": "string",
90608            "uniqueItems": true
90609          },
90610          {
90611            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
90612            "in": "query",
90613            "name": "timeoutSeconds",
90614            "type": "integer",
90615            "uniqueItems": true
90616          },
90617          {
90618            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
90619            "in": "query",
90620            "name": "watch",
90621            "type": "boolean",
90622            "uniqueItems": true
90623          }
90624        ],
90625        "produces": [
90626          "application/json",
90627          "application/yaml",
90628          "application/vnd.kubernetes.protobuf",
90629          "application/json;stream=watch",
90630          "application/vnd.kubernetes.protobuf;stream=watch"
90631        ],
90632        "responses": {
90633          "200": {
90634            "description": "OK",
90635            "schema": {
90636              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleList"
90637            }
90638          },
90639          "401": {
90640            "description": "Unauthorized"
90641          }
90642        },
90643        "schemes": [
90644          "https"
90645        ],
90646        "tags": [
90647          "rbacAuthorization_v1"
90648        ],
90649        "x-kubernetes-action": "list",
90650        "x-kubernetes-group-version-kind": {
90651          "group": "rbac.authorization.k8s.io",
90652          "kind": "ClusterRole",
90653          "version": "v1"
90654        }
90655      },
90656      "parameters": [
90657        {
90658          "description": "If 'true', then the output is pretty printed.",
90659          "in": "query",
90660          "name": "pretty",
90661          "type": "string",
90662          "uniqueItems": true
90663        }
90664      ],
90665      "post": {
90666        "consumes": [
90667          "*/*"
90668        ],
90669        "description": "create a ClusterRole",
90670        "operationId": "createRbacAuthorizationV1ClusterRole",
90671        "parameters": [
90672          {
90673            "in": "body",
90674            "name": "body",
90675            "required": true,
90676            "schema": {
90677              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90678            }
90679          },
90680          {
90681            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90682            "in": "query",
90683            "name": "dryRun",
90684            "type": "string",
90685            "uniqueItems": true
90686          },
90687          {
90688            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
90689            "in": "query",
90690            "name": "fieldManager",
90691            "type": "string",
90692            "uniqueItems": true
90693          }
90694        ],
90695        "produces": [
90696          "application/json",
90697          "application/yaml",
90698          "application/vnd.kubernetes.protobuf"
90699        ],
90700        "responses": {
90701          "200": {
90702            "description": "OK",
90703            "schema": {
90704              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90705            }
90706          },
90707          "201": {
90708            "description": "Created",
90709            "schema": {
90710              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90711            }
90712          },
90713          "202": {
90714            "description": "Accepted",
90715            "schema": {
90716              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90717            }
90718          },
90719          "401": {
90720            "description": "Unauthorized"
90721          }
90722        },
90723        "schemes": [
90724          "https"
90725        ],
90726        "tags": [
90727          "rbacAuthorization_v1"
90728        ],
90729        "x-kubernetes-action": "post",
90730        "x-kubernetes-group-version-kind": {
90731          "group": "rbac.authorization.k8s.io",
90732          "kind": "ClusterRole",
90733          "version": "v1"
90734        }
90735      }
90736    },
90737    "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": {
90738      "delete": {
90739        "consumes": [
90740          "*/*"
90741        ],
90742        "description": "delete a ClusterRole",
90743        "operationId": "deleteRbacAuthorizationV1ClusterRole",
90744        "parameters": [
90745          {
90746            "in": "body",
90747            "name": "body",
90748            "schema": {
90749              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
90750            }
90751          },
90752          {
90753            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90754            "in": "query",
90755            "name": "dryRun",
90756            "type": "string",
90757            "uniqueItems": true
90758          },
90759          {
90760            "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.",
90761            "in": "query",
90762            "name": "gracePeriodSeconds",
90763            "type": "integer",
90764            "uniqueItems": true
90765          },
90766          {
90767            "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.",
90768            "in": "query",
90769            "name": "orphanDependents",
90770            "type": "boolean",
90771            "uniqueItems": true
90772          },
90773          {
90774            "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.",
90775            "in": "query",
90776            "name": "propagationPolicy",
90777            "type": "string",
90778            "uniqueItems": true
90779          }
90780        ],
90781        "produces": [
90782          "application/json",
90783          "application/yaml",
90784          "application/vnd.kubernetes.protobuf"
90785        ],
90786        "responses": {
90787          "200": {
90788            "description": "OK",
90789            "schema": {
90790              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90791            }
90792          },
90793          "202": {
90794            "description": "Accepted",
90795            "schema": {
90796              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
90797            }
90798          },
90799          "401": {
90800            "description": "Unauthorized"
90801          }
90802        },
90803        "schemes": [
90804          "https"
90805        ],
90806        "tags": [
90807          "rbacAuthorization_v1"
90808        ],
90809        "x-kubernetes-action": "delete",
90810        "x-kubernetes-group-version-kind": {
90811          "group": "rbac.authorization.k8s.io",
90812          "kind": "ClusterRole",
90813          "version": "v1"
90814        }
90815      },
90816      "get": {
90817        "consumes": [
90818          "*/*"
90819        ],
90820        "description": "read the specified ClusterRole",
90821        "operationId": "readRbacAuthorizationV1ClusterRole",
90822        "produces": [
90823          "application/json",
90824          "application/yaml",
90825          "application/vnd.kubernetes.protobuf"
90826        ],
90827        "responses": {
90828          "200": {
90829            "description": "OK",
90830            "schema": {
90831              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90832            }
90833          },
90834          "401": {
90835            "description": "Unauthorized"
90836          }
90837        },
90838        "schemes": [
90839          "https"
90840        ],
90841        "tags": [
90842          "rbacAuthorization_v1"
90843        ],
90844        "x-kubernetes-action": "get",
90845        "x-kubernetes-group-version-kind": {
90846          "group": "rbac.authorization.k8s.io",
90847          "kind": "ClusterRole",
90848          "version": "v1"
90849        }
90850      },
90851      "parameters": [
90852        {
90853          "description": "name of the ClusterRole",
90854          "in": "path",
90855          "name": "name",
90856          "required": true,
90857          "type": "string",
90858          "uniqueItems": true
90859        },
90860        {
90861          "description": "If 'true', then the output is pretty printed.",
90862          "in": "query",
90863          "name": "pretty",
90864          "type": "string",
90865          "uniqueItems": true
90866        }
90867      ],
90868      "patch": {
90869        "consumes": [
90870          "application/json-patch+json",
90871          "application/merge-patch+json",
90872          "application/strategic-merge-patch+json"
90873        ],
90874        "description": "partially update the specified ClusterRole",
90875        "operationId": "patchRbacAuthorizationV1ClusterRole",
90876        "parameters": [
90877          {
90878            "in": "body",
90879            "name": "body",
90880            "required": true,
90881            "schema": {
90882              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
90883            }
90884          },
90885          {
90886            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90887            "in": "query",
90888            "name": "dryRun",
90889            "type": "string",
90890            "uniqueItems": true
90891          },
90892          {
90893            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
90894            "in": "query",
90895            "name": "fieldManager",
90896            "type": "string",
90897            "uniqueItems": true
90898          },
90899          {
90900            "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.",
90901            "in": "query",
90902            "name": "force",
90903            "type": "boolean",
90904            "uniqueItems": true
90905          }
90906        ],
90907        "produces": [
90908          "application/json",
90909          "application/yaml",
90910          "application/vnd.kubernetes.protobuf"
90911        ],
90912        "responses": {
90913          "200": {
90914            "description": "OK",
90915            "schema": {
90916              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90917            }
90918          },
90919          "401": {
90920            "description": "Unauthorized"
90921          }
90922        },
90923        "schemes": [
90924          "https"
90925        ],
90926        "tags": [
90927          "rbacAuthorization_v1"
90928        ],
90929        "x-kubernetes-action": "patch",
90930        "x-kubernetes-group-version-kind": {
90931          "group": "rbac.authorization.k8s.io",
90932          "kind": "ClusterRole",
90933          "version": "v1"
90934        }
90935      },
90936      "put": {
90937        "consumes": [
90938          "*/*"
90939        ],
90940        "description": "replace the specified ClusterRole",
90941        "operationId": "replaceRbacAuthorizationV1ClusterRole",
90942        "parameters": [
90943          {
90944            "in": "body",
90945            "name": "body",
90946            "required": true,
90947            "schema": {
90948              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90949            }
90950          },
90951          {
90952            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
90953            "in": "query",
90954            "name": "dryRun",
90955            "type": "string",
90956            "uniqueItems": true
90957          },
90958          {
90959            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
90960            "in": "query",
90961            "name": "fieldManager",
90962            "type": "string",
90963            "uniqueItems": true
90964          }
90965        ],
90966        "produces": [
90967          "application/json",
90968          "application/yaml",
90969          "application/vnd.kubernetes.protobuf"
90970        ],
90971        "responses": {
90972          "200": {
90973            "description": "OK",
90974            "schema": {
90975              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90976            }
90977          },
90978          "201": {
90979            "description": "Created",
90980            "schema": {
90981              "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole"
90982            }
90983          },
90984          "401": {
90985            "description": "Unauthorized"
90986          }
90987        },
90988        "schemes": [
90989          "https"
90990        ],
90991        "tags": [
90992          "rbacAuthorization_v1"
90993        ],
90994        "x-kubernetes-action": "put",
90995        "x-kubernetes-group-version-kind": {
90996          "group": "rbac.authorization.k8s.io",
90997          "kind": "ClusterRole",
90998          "version": "v1"
90999        }
91000      }
91001    },
91002    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": {
91003      "delete": {
91004        "consumes": [
91005          "*/*"
91006        ],
91007        "description": "delete collection of RoleBinding",
91008        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRoleBinding",
91009        "parameters": [
91010          {
91011            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
91012            "in": "query",
91013            "name": "allowWatchBookmarks",
91014            "type": "boolean",
91015            "uniqueItems": true
91016          },
91017          {
91018            "in": "body",
91019            "name": "body",
91020            "schema": {
91021              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91022            }
91023          },
91024          {
91025            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91026            "in": "query",
91027            "name": "continue",
91028            "type": "string",
91029            "uniqueItems": true
91030          },
91031          {
91032            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91033            "in": "query",
91034            "name": "dryRun",
91035            "type": "string",
91036            "uniqueItems": true
91037          },
91038          {
91039            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91040            "in": "query",
91041            "name": "fieldSelector",
91042            "type": "string",
91043            "uniqueItems": true
91044          },
91045          {
91046            "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.",
91047            "in": "query",
91048            "name": "gracePeriodSeconds",
91049            "type": "integer",
91050            "uniqueItems": true
91051          },
91052          {
91053            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91054            "in": "query",
91055            "name": "labelSelector",
91056            "type": "string",
91057            "uniqueItems": true
91058          },
91059          {
91060            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91061            "in": "query",
91062            "name": "limit",
91063            "type": "integer",
91064            "uniqueItems": true
91065          },
91066          {
91067            "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.",
91068            "in": "query",
91069            "name": "orphanDependents",
91070            "type": "boolean",
91071            "uniqueItems": true
91072          },
91073          {
91074            "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.",
91075            "in": "query",
91076            "name": "propagationPolicy",
91077            "type": "string",
91078            "uniqueItems": true
91079          },
91080          {
91081            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
91082            "in": "query",
91083            "name": "resourceVersion",
91084            "type": "string",
91085            "uniqueItems": true
91086          },
91087          {
91088            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91089            "in": "query",
91090            "name": "timeoutSeconds",
91091            "type": "integer",
91092            "uniqueItems": true
91093          },
91094          {
91095            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91096            "in": "query",
91097            "name": "watch",
91098            "type": "boolean",
91099            "uniqueItems": true
91100          }
91101        ],
91102        "produces": [
91103          "application/json",
91104          "application/yaml",
91105          "application/vnd.kubernetes.protobuf"
91106        ],
91107        "responses": {
91108          "200": {
91109            "description": "OK",
91110            "schema": {
91111              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91112            }
91113          },
91114          "401": {
91115            "description": "Unauthorized"
91116          }
91117        },
91118        "schemes": [
91119          "https"
91120        ],
91121        "tags": [
91122          "rbacAuthorization_v1"
91123        ],
91124        "x-kubernetes-action": "deletecollection",
91125        "x-kubernetes-group-version-kind": {
91126          "group": "rbac.authorization.k8s.io",
91127          "kind": "RoleBinding",
91128          "version": "v1"
91129        }
91130      },
91131      "get": {
91132        "consumes": [
91133          "*/*"
91134        ],
91135        "description": "list or watch objects of kind RoleBinding",
91136        "operationId": "listRbacAuthorizationV1NamespacedRoleBinding",
91137        "parameters": [
91138          {
91139            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
91140            "in": "query",
91141            "name": "allowWatchBookmarks",
91142            "type": "boolean",
91143            "uniqueItems": true
91144          },
91145          {
91146            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91147            "in": "query",
91148            "name": "continue",
91149            "type": "string",
91150            "uniqueItems": true
91151          },
91152          {
91153            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91154            "in": "query",
91155            "name": "fieldSelector",
91156            "type": "string",
91157            "uniqueItems": true
91158          },
91159          {
91160            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91161            "in": "query",
91162            "name": "labelSelector",
91163            "type": "string",
91164            "uniqueItems": true
91165          },
91166          {
91167            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91168            "in": "query",
91169            "name": "limit",
91170            "type": "integer",
91171            "uniqueItems": true
91172          },
91173          {
91174            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
91175            "in": "query",
91176            "name": "resourceVersion",
91177            "type": "string",
91178            "uniqueItems": true
91179          },
91180          {
91181            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91182            "in": "query",
91183            "name": "timeoutSeconds",
91184            "type": "integer",
91185            "uniqueItems": true
91186          },
91187          {
91188            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91189            "in": "query",
91190            "name": "watch",
91191            "type": "boolean",
91192            "uniqueItems": true
91193          }
91194        ],
91195        "produces": [
91196          "application/json",
91197          "application/yaml",
91198          "application/vnd.kubernetes.protobuf",
91199          "application/json;stream=watch",
91200          "application/vnd.kubernetes.protobuf;stream=watch"
91201        ],
91202        "responses": {
91203          "200": {
91204            "description": "OK",
91205            "schema": {
91206              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
91207            }
91208          },
91209          "401": {
91210            "description": "Unauthorized"
91211          }
91212        },
91213        "schemes": [
91214          "https"
91215        ],
91216        "tags": [
91217          "rbacAuthorization_v1"
91218        ],
91219        "x-kubernetes-action": "list",
91220        "x-kubernetes-group-version-kind": {
91221          "group": "rbac.authorization.k8s.io",
91222          "kind": "RoleBinding",
91223          "version": "v1"
91224        }
91225      },
91226      "parameters": [
91227        {
91228          "description": "object name and auth scope, such as for teams and projects",
91229          "in": "path",
91230          "name": "namespace",
91231          "required": true,
91232          "type": "string",
91233          "uniqueItems": true
91234        },
91235        {
91236          "description": "If 'true', then the output is pretty printed.",
91237          "in": "query",
91238          "name": "pretty",
91239          "type": "string",
91240          "uniqueItems": true
91241        }
91242      ],
91243      "post": {
91244        "consumes": [
91245          "*/*"
91246        ],
91247        "description": "create a RoleBinding",
91248        "operationId": "createRbacAuthorizationV1NamespacedRoleBinding",
91249        "parameters": [
91250          {
91251            "in": "body",
91252            "name": "body",
91253            "required": true,
91254            "schema": {
91255              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91256            }
91257          },
91258          {
91259            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91260            "in": "query",
91261            "name": "dryRun",
91262            "type": "string",
91263            "uniqueItems": true
91264          },
91265          {
91266            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91267            "in": "query",
91268            "name": "fieldManager",
91269            "type": "string",
91270            "uniqueItems": true
91271          }
91272        ],
91273        "produces": [
91274          "application/json",
91275          "application/yaml",
91276          "application/vnd.kubernetes.protobuf"
91277        ],
91278        "responses": {
91279          "200": {
91280            "description": "OK",
91281            "schema": {
91282              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91283            }
91284          },
91285          "201": {
91286            "description": "Created",
91287            "schema": {
91288              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91289            }
91290          },
91291          "202": {
91292            "description": "Accepted",
91293            "schema": {
91294              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91295            }
91296          },
91297          "401": {
91298            "description": "Unauthorized"
91299          }
91300        },
91301        "schemes": [
91302          "https"
91303        ],
91304        "tags": [
91305          "rbacAuthorization_v1"
91306        ],
91307        "x-kubernetes-action": "post",
91308        "x-kubernetes-group-version-kind": {
91309          "group": "rbac.authorization.k8s.io",
91310          "kind": "RoleBinding",
91311          "version": "v1"
91312        }
91313      }
91314    },
91315    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": {
91316      "delete": {
91317        "consumes": [
91318          "*/*"
91319        ],
91320        "description": "delete a RoleBinding",
91321        "operationId": "deleteRbacAuthorizationV1NamespacedRoleBinding",
91322        "parameters": [
91323          {
91324            "in": "body",
91325            "name": "body",
91326            "schema": {
91327              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91328            }
91329          },
91330          {
91331            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91332            "in": "query",
91333            "name": "dryRun",
91334            "type": "string",
91335            "uniqueItems": true
91336          },
91337          {
91338            "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.",
91339            "in": "query",
91340            "name": "gracePeriodSeconds",
91341            "type": "integer",
91342            "uniqueItems": true
91343          },
91344          {
91345            "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.",
91346            "in": "query",
91347            "name": "orphanDependents",
91348            "type": "boolean",
91349            "uniqueItems": true
91350          },
91351          {
91352            "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.",
91353            "in": "query",
91354            "name": "propagationPolicy",
91355            "type": "string",
91356            "uniqueItems": true
91357          }
91358        ],
91359        "produces": [
91360          "application/json",
91361          "application/yaml",
91362          "application/vnd.kubernetes.protobuf"
91363        ],
91364        "responses": {
91365          "200": {
91366            "description": "OK",
91367            "schema": {
91368              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91369            }
91370          },
91371          "202": {
91372            "description": "Accepted",
91373            "schema": {
91374              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91375            }
91376          },
91377          "401": {
91378            "description": "Unauthorized"
91379          }
91380        },
91381        "schemes": [
91382          "https"
91383        ],
91384        "tags": [
91385          "rbacAuthorization_v1"
91386        ],
91387        "x-kubernetes-action": "delete",
91388        "x-kubernetes-group-version-kind": {
91389          "group": "rbac.authorization.k8s.io",
91390          "kind": "RoleBinding",
91391          "version": "v1"
91392        }
91393      },
91394      "get": {
91395        "consumes": [
91396          "*/*"
91397        ],
91398        "description": "read the specified RoleBinding",
91399        "operationId": "readRbacAuthorizationV1NamespacedRoleBinding",
91400        "produces": [
91401          "application/json",
91402          "application/yaml",
91403          "application/vnd.kubernetes.protobuf"
91404        ],
91405        "responses": {
91406          "200": {
91407            "description": "OK",
91408            "schema": {
91409              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91410            }
91411          },
91412          "401": {
91413            "description": "Unauthorized"
91414          }
91415        },
91416        "schemes": [
91417          "https"
91418        ],
91419        "tags": [
91420          "rbacAuthorization_v1"
91421        ],
91422        "x-kubernetes-action": "get",
91423        "x-kubernetes-group-version-kind": {
91424          "group": "rbac.authorization.k8s.io",
91425          "kind": "RoleBinding",
91426          "version": "v1"
91427        }
91428      },
91429      "parameters": [
91430        {
91431          "description": "name of the RoleBinding",
91432          "in": "path",
91433          "name": "name",
91434          "required": true,
91435          "type": "string",
91436          "uniqueItems": true
91437        },
91438        {
91439          "description": "object name and auth scope, such as for teams and projects",
91440          "in": "path",
91441          "name": "namespace",
91442          "required": true,
91443          "type": "string",
91444          "uniqueItems": true
91445        },
91446        {
91447          "description": "If 'true', then the output is pretty printed.",
91448          "in": "query",
91449          "name": "pretty",
91450          "type": "string",
91451          "uniqueItems": true
91452        }
91453      ],
91454      "patch": {
91455        "consumes": [
91456          "application/json-patch+json",
91457          "application/merge-patch+json",
91458          "application/strategic-merge-patch+json"
91459        ],
91460        "description": "partially update the specified RoleBinding",
91461        "operationId": "patchRbacAuthorizationV1NamespacedRoleBinding",
91462        "parameters": [
91463          {
91464            "in": "body",
91465            "name": "body",
91466            "required": true,
91467            "schema": {
91468              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
91469            }
91470          },
91471          {
91472            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91473            "in": "query",
91474            "name": "dryRun",
91475            "type": "string",
91476            "uniqueItems": true
91477          },
91478          {
91479            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
91480            "in": "query",
91481            "name": "fieldManager",
91482            "type": "string",
91483            "uniqueItems": true
91484          },
91485          {
91486            "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.",
91487            "in": "query",
91488            "name": "force",
91489            "type": "boolean",
91490            "uniqueItems": true
91491          }
91492        ],
91493        "produces": [
91494          "application/json",
91495          "application/yaml",
91496          "application/vnd.kubernetes.protobuf"
91497        ],
91498        "responses": {
91499          "200": {
91500            "description": "OK",
91501            "schema": {
91502              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91503            }
91504          },
91505          "401": {
91506            "description": "Unauthorized"
91507          }
91508        },
91509        "schemes": [
91510          "https"
91511        ],
91512        "tags": [
91513          "rbacAuthorization_v1"
91514        ],
91515        "x-kubernetes-action": "patch",
91516        "x-kubernetes-group-version-kind": {
91517          "group": "rbac.authorization.k8s.io",
91518          "kind": "RoleBinding",
91519          "version": "v1"
91520        }
91521      },
91522      "put": {
91523        "consumes": [
91524          "*/*"
91525        ],
91526        "description": "replace the specified RoleBinding",
91527        "operationId": "replaceRbacAuthorizationV1NamespacedRoleBinding",
91528        "parameters": [
91529          {
91530            "in": "body",
91531            "name": "body",
91532            "required": true,
91533            "schema": {
91534              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91535            }
91536          },
91537          {
91538            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91539            "in": "query",
91540            "name": "dryRun",
91541            "type": "string",
91542            "uniqueItems": true
91543          },
91544          {
91545            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91546            "in": "query",
91547            "name": "fieldManager",
91548            "type": "string",
91549            "uniqueItems": true
91550          }
91551        ],
91552        "produces": [
91553          "application/json",
91554          "application/yaml",
91555          "application/vnd.kubernetes.protobuf"
91556        ],
91557        "responses": {
91558          "200": {
91559            "description": "OK",
91560            "schema": {
91561              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91562            }
91563          },
91564          "201": {
91565            "description": "Created",
91566            "schema": {
91567              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding"
91568            }
91569          },
91570          "401": {
91571            "description": "Unauthorized"
91572          }
91573        },
91574        "schemes": [
91575          "https"
91576        ],
91577        "tags": [
91578          "rbacAuthorization_v1"
91579        ],
91580        "x-kubernetes-action": "put",
91581        "x-kubernetes-group-version-kind": {
91582          "group": "rbac.authorization.k8s.io",
91583          "kind": "RoleBinding",
91584          "version": "v1"
91585        }
91586      }
91587    },
91588    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": {
91589      "delete": {
91590        "consumes": [
91591          "*/*"
91592        ],
91593        "description": "delete collection of Role",
91594        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRole",
91595        "parameters": [
91596          {
91597            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
91598            "in": "query",
91599            "name": "allowWatchBookmarks",
91600            "type": "boolean",
91601            "uniqueItems": true
91602          },
91603          {
91604            "in": "body",
91605            "name": "body",
91606            "schema": {
91607              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91608            }
91609          },
91610          {
91611            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91612            "in": "query",
91613            "name": "continue",
91614            "type": "string",
91615            "uniqueItems": true
91616          },
91617          {
91618            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91619            "in": "query",
91620            "name": "dryRun",
91621            "type": "string",
91622            "uniqueItems": true
91623          },
91624          {
91625            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91626            "in": "query",
91627            "name": "fieldSelector",
91628            "type": "string",
91629            "uniqueItems": true
91630          },
91631          {
91632            "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.",
91633            "in": "query",
91634            "name": "gracePeriodSeconds",
91635            "type": "integer",
91636            "uniqueItems": true
91637          },
91638          {
91639            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91640            "in": "query",
91641            "name": "labelSelector",
91642            "type": "string",
91643            "uniqueItems": true
91644          },
91645          {
91646            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91647            "in": "query",
91648            "name": "limit",
91649            "type": "integer",
91650            "uniqueItems": true
91651          },
91652          {
91653            "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.",
91654            "in": "query",
91655            "name": "orphanDependents",
91656            "type": "boolean",
91657            "uniqueItems": true
91658          },
91659          {
91660            "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.",
91661            "in": "query",
91662            "name": "propagationPolicy",
91663            "type": "string",
91664            "uniqueItems": true
91665          },
91666          {
91667            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
91668            "in": "query",
91669            "name": "resourceVersion",
91670            "type": "string",
91671            "uniqueItems": true
91672          },
91673          {
91674            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91675            "in": "query",
91676            "name": "timeoutSeconds",
91677            "type": "integer",
91678            "uniqueItems": true
91679          },
91680          {
91681            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91682            "in": "query",
91683            "name": "watch",
91684            "type": "boolean",
91685            "uniqueItems": true
91686          }
91687        ],
91688        "produces": [
91689          "application/json",
91690          "application/yaml",
91691          "application/vnd.kubernetes.protobuf"
91692        ],
91693        "responses": {
91694          "200": {
91695            "description": "OK",
91696            "schema": {
91697              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91698            }
91699          },
91700          "401": {
91701            "description": "Unauthorized"
91702          }
91703        },
91704        "schemes": [
91705          "https"
91706        ],
91707        "tags": [
91708          "rbacAuthorization_v1"
91709        ],
91710        "x-kubernetes-action": "deletecollection",
91711        "x-kubernetes-group-version-kind": {
91712          "group": "rbac.authorization.k8s.io",
91713          "kind": "Role",
91714          "version": "v1"
91715        }
91716      },
91717      "get": {
91718        "consumes": [
91719          "*/*"
91720        ],
91721        "description": "list or watch objects of kind Role",
91722        "operationId": "listRbacAuthorizationV1NamespacedRole",
91723        "parameters": [
91724          {
91725            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
91726            "in": "query",
91727            "name": "allowWatchBookmarks",
91728            "type": "boolean",
91729            "uniqueItems": true
91730          },
91731          {
91732            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
91733            "in": "query",
91734            "name": "continue",
91735            "type": "string",
91736            "uniqueItems": true
91737          },
91738          {
91739            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
91740            "in": "query",
91741            "name": "fieldSelector",
91742            "type": "string",
91743            "uniqueItems": true
91744          },
91745          {
91746            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
91747            "in": "query",
91748            "name": "labelSelector",
91749            "type": "string",
91750            "uniqueItems": true
91751          },
91752          {
91753            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
91754            "in": "query",
91755            "name": "limit",
91756            "type": "integer",
91757            "uniqueItems": true
91758          },
91759          {
91760            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
91761            "in": "query",
91762            "name": "resourceVersion",
91763            "type": "string",
91764            "uniqueItems": true
91765          },
91766          {
91767            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
91768            "in": "query",
91769            "name": "timeoutSeconds",
91770            "type": "integer",
91771            "uniqueItems": true
91772          },
91773          {
91774            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
91775            "in": "query",
91776            "name": "watch",
91777            "type": "boolean",
91778            "uniqueItems": true
91779          }
91780        ],
91781        "produces": [
91782          "application/json",
91783          "application/yaml",
91784          "application/vnd.kubernetes.protobuf",
91785          "application/json;stream=watch",
91786          "application/vnd.kubernetes.protobuf;stream=watch"
91787        ],
91788        "responses": {
91789          "200": {
91790            "description": "OK",
91791            "schema": {
91792              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
91793            }
91794          },
91795          "401": {
91796            "description": "Unauthorized"
91797          }
91798        },
91799        "schemes": [
91800          "https"
91801        ],
91802        "tags": [
91803          "rbacAuthorization_v1"
91804        ],
91805        "x-kubernetes-action": "list",
91806        "x-kubernetes-group-version-kind": {
91807          "group": "rbac.authorization.k8s.io",
91808          "kind": "Role",
91809          "version": "v1"
91810        }
91811      },
91812      "parameters": [
91813        {
91814          "description": "object name and auth scope, such as for teams and projects",
91815          "in": "path",
91816          "name": "namespace",
91817          "required": true,
91818          "type": "string",
91819          "uniqueItems": true
91820        },
91821        {
91822          "description": "If 'true', then the output is pretty printed.",
91823          "in": "query",
91824          "name": "pretty",
91825          "type": "string",
91826          "uniqueItems": true
91827        }
91828      ],
91829      "post": {
91830        "consumes": [
91831          "*/*"
91832        ],
91833        "description": "create a Role",
91834        "operationId": "createRbacAuthorizationV1NamespacedRole",
91835        "parameters": [
91836          {
91837            "in": "body",
91838            "name": "body",
91839            "required": true,
91840            "schema": {
91841              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
91842            }
91843          },
91844          {
91845            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91846            "in": "query",
91847            "name": "dryRun",
91848            "type": "string",
91849            "uniqueItems": true
91850          },
91851          {
91852            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
91853            "in": "query",
91854            "name": "fieldManager",
91855            "type": "string",
91856            "uniqueItems": true
91857          }
91858        ],
91859        "produces": [
91860          "application/json",
91861          "application/yaml",
91862          "application/vnd.kubernetes.protobuf"
91863        ],
91864        "responses": {
91865          "200": {
91866            "description": "OK",
91867            "schema": {
91868              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
91869            }
91870          },
91871          "201": {
91872            "description": "Created",
91873            "schema": {
91874              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
91875            }
91876          },
91877          "202": {
91878            "description": "Accepted",
91879            "schema": {
91880              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
91881            }
91882          },
91883          "401": {
91884            "description": "Unauthorized"
91885          }
91886        },
91887        "schemes": [
91888          "https"
91889        ],
91890        "tags": [
91891          "rbacAuthorization_v1"
91892        ],
91893        "x-kubernetes-action": "post",
91894        "x-kubernetes-group-version-kind": {
91895          "group": "rbac.authorization.k8s.io",
91896          "kind": "Role",
91897          "version": "v1"
91898        }
91899      }
91900    },
91901    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": {
91902      "delete": {
91903        "consumes": [
91904          "*/*"
91905        ],
91906        "description": "delete a Role",
91907        "operationId": "deleteRbacAuthorizationV1NamespacedRole",
91908        "parameters": [
91909          {
91910            "in": "body",
91911            "name": "body",
91912            "schema": {
91913              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
91914            }
91915          },
91916          {
91917            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
91918            "in": "query",
91919            "name": "dryRun",
91920            "type": "string",
91921            "uniqueItems": true
91922          },
91923          {
91924            "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.",
91925            "in": "query",
91926            "name": "gracePeriodSeconds",
91927            "type": "integer",
91928            "uniqueItems": true
91929          },
91930          {
91931            "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.",
91932            "in": "query",
91933            "name": "orphanDependents",
91934            "type": "boolean",
91935            "uniqueItems": true
91936          },
91937          {
91938            "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.",
91939            "in": "query",
91940            "name": "propagationPolicy",
91941            "type": "string",
91942            "uniqueItems": true
91943          }
91944        ],
91945        "produces": [
91946          "application/json",
91947          "application/yaml",
91948          "application/vnd.kubernetes.protobuf"
91949        ],
91950        "responses": {
91951          "200": {
91952            "description": "OK",
91953            "schema": {
91954              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91955            }
91956          },
91957          "202": {
91958            "description": "Accepted",
91959            "schema": {
91960              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
91961            }
91962          },
91963          "401": {
91964            "description": "Unauthorized"
91965          }
91966        },
91967        "schemes": [
91968          "https"
91969        ],
91970        "tags": [
91971          "rbacAuthorization_v1"
91972        ],
91973        "x-kubernetes-action": "delete",
91974        "x-kubernetes-group-version-kind": {
91975          "group": "rbac.authorization.k8s.io",
91976          "kind": "Role",
91977          "version": "v1"
91978        }
91979      },
91980      "get": {
91981        "consumes": [
91982          "*/*"
91983        ],
91984        "description": "read the specified Role",
91985        "operationId": "readRbacAuthorizationV1NamespacedRole",
91986        "produces": [
91987          "application/json",
91988          "application/yaml",
91989          "application/vnd.kubernetes.protobuf"
91990        ],
91991        "responses": {
91992          "200": {
91993            "description": "OK",
91994            "schema": {
91995              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
91996            }
91997          },
91998          "401": {
91999            "description": "Unauthorized"
92000          }
92001        },
92002        "schemes": [
92003          "https"
92004        ],
92005        "tags": [
92006          "rbacAuthorization_v1"
92007        ],
92008        "x-kubernetes-action": "get",
92009        "x-kubernetes-group-version-kind": {
92010          "group": "rbac.authorization.k8s.io",
92011          "kind": "Role",
92012          "version": "v1"
92013        }
92014      },
92015      "parameters": [
92016        {
92017          "description": "name of the Role",
92018          "in": "path",
92019          "name": "name",
92020          "required": true,
92021          "type": "string",
92022          "uniqueItems": true
92023        },
92024        {
92025          "description": "object name and auth scope, such as for teams and projects",
92026          "in": "path",
92027          "name": "namespace",
92028          "required": true,
92029          "type": "string",
92030          "uniqueItems": true
92031        },
92032        {
92033          "description": "If 'true', then the output is pretty printed.",
92034          "in": "query",
92035          "name": "pretty",
92036          "type": "string",
92037          "uniqueItems": true
92038        }
92039      ],
92040      "patch": {
92041        "consumes": [
92042          "application/json-patch+json",
92043          "application/merge-patch+json",
92044          "application/strategic-merge-patch+json"
92045        ],
92046        "description": "partially update the specified Role",
92047        "operationId": "patchRbacAuthorizationV1NamespacedRole",
92048        "parameters": [
92049          {
92050            "in": "body",
92051            "name": "body",
92052            "required": true,
92053            "schema": {
92054              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
92055            }
92056          },
92057          {
92058            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92059            "in": "query",
92060            "name": "dryRun",
92061            "type": "string",
92062            "uniqueItems": true
92063          },
92064          {
92065            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
92066            "in": "query",
92067            "name": "fieldManager",
92068            "type": "string",
92069            "uniqueItems": true
92070          },
92071          {
92072            "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.",
92073            "in": "query",
92074            "name": "force",
92075            "type": "boolean",
92076            "uniqueItems": true
92077          }
92078        ],
92079        "produces": [
92080          "application/json",
92081          "application/yaml",
92082          "application/vnd.kubernetes.protobuf"
92083        ],
92084        "responses": {
92085          "200": {
92086            "description": "OK",
92087            "schema": {
92088              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
92089            }
92090          },
92091          "401": {
92092            "description": "Unauthorized"
92093          }
92094        },
92095        "schemes": [
92096          "https"
92097        ],
92098        "tags": [
92099          "rbacAuthorization_v1"
92100        ],
92101        "x-kubernetes-action": "patch",
92102        "x-kubernetes-group-version-kind": {
92103          "group": "rbac.authorization.k8s.io",
92104          "kind": "Role",
92105          "version": "v1"
92106        }
92107      },
92108      "put": {
92109        "consumes": [
92110          "*/*"
92111        ],
92112        "description": "replace the specified Role",
92113        "operationId": "replaceRbacAuthorizationV1NamespacedRole",
92114        "parameters": [
92115          {
92116            "in": "body",
92117            "name": "body",
92118            "required": true,
92119            "schema": {
92120              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
92121            }
92122          },
92123          {
92124            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
92125            "in": "query",
92126            "name": "dryRun",
92127            "type": "string",
92128            "uniqueItems": true
92129          },
92130          {
92131            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
92132            "in": "query",
92133            "name": "fieldManager",
92134            "type": "string",
92135            "uniqueItems": true
92136          }
92137        ],
92138        "produces": [
92139          "application/json",
92140          "application/yaml",
92141          "application/vnd.kubernetes.protobuf"
92142        ],
92143        "responses": {
92144          "200": {
92145            "description": "OK",
92146            "schema": {
92147              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
92148            }
92149          },
92150          "201": {
92151            "description": "Created",
92152            "schema": {
92153              "$ref": "#/definitions/io.k8s.api.rbac.v1.Role"
92154            }
92155          },
92156          "401": {
92157            "description": "Unauthorized"
92158          }
92159        },
92160        "schemes": [
92161          "https"
92162        ],
92163        "tags": [
92164          "rbacAuthorization_v1"
92165        ],
92166        "x-kubernetes-action": "put",
92167        "x-kubernetes-group-version-kind": {
92168          "group": "rbac.authorization.k8s.io",
92169          "kind": "Role",
92170          "version": "v1"
92171        }
92172      }
92173    },
92174    "/apis/rbac.authorization.k8s.io/v1/rolebindings": {
92175      "get": {
92176        "consumes": [
92177          "*/*"
92178        ],
92179        "description": "list or watch objects of kind RoleBinding",
92180        "operationId": "listRbacAuthorizationV1RoleBindingForAllNamespaces",
92181        "produces": [
92182          "application/json",
92183          "application/yaml",
92184          "application/vnd.kubernetes.protobuf",
92185          "application/json;stream=watch",
92186          "application/vnd.kubernetes.protobuf;stream=watch"
92187        ],
92188        "responses": {
92189          "200": {
92190            "description": "OK",
92191            "schema": {
92192              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBindingList"
92193            }
92194          },
92195          "401": {
92196            "description": "Unauthorized"
92197          }
92198        },
92199        "schemes": [
92200          "https"
92201        ],
92202        "tags": [
92203          "rbacAuthorization_v1"
92204        ],
92205        "x-kubernetes-action": "list",
92206        "x-kubernetes-group-version-kind": {
92207          "group": "rbac.authorization.k8s.io",
92208          "kind": "RoleBinding",
92209          "version": "v1"
92210        }
92211      },
92212      "parameters": [
92213        {
92214          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92215          "in": "query",
92216          "name": "allowWatchBookmarks",
92217          "type": "boolean",
92218          "uniqueItems": true
92219        },
92220        {
92221          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92222          "in": "query",
92223          "name": "continue",
92224          "type": "string",
92225          "uniqueItems": true
92226        },
92227        {
92228          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92229          "in": "query",
92230          "name": "fieldSelector",
92231          "type": "string",
92232          "uniqueItems": true
92233        },
92234        {
92235          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92236          "in": "query",
92237          "name": "labelSelector",
92238          "type": "string",
92239          "uniqueItems": true
92240        },
92241        {
92242          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92243          "in": "query",
92244          "name": "limit",
92245          "type": "integer",
92246          "uniqueItems": true
92247        },
92248        {
92249          "description": "If 'true', then the output is pretty printed.",
92250          "in": "query",
92251          "name": "pretty",
92252          "type": "string",
92253          "uniqueItems": true
92254        },
92255        {
92256          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92257          "in": "query",
92258          "name": "resourceVersion",
92259          "type": "string",
92260          "uniqueItems": true
92261        },
92262        {
92263          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92264          "in": "query",
92265          "name": "timeoutSeconds",
92266          "type": "integer",
92267          "uniqueItems": true
92268        },
92269        {
92270          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92271          "in": "query",
92272          "name": "watch",
92273          "type": "boolean",
92274          "uniqueItems": true
92275        }
92276      ]
92277    },
92278    "/apis/rbac.authorization.k8s.io/v1/roles": {
92279      "get": {
92280        "consumes": [
92281          "*/*"
92282        ],
92283        "description": "list or watch objects of kind Role",
92284        "operationId": "listRbacAuthorizationV1RoleForAllNamespaces",
92285        "produces": [
92286          "application/json",
92287          "application/yaml",
92288          "application/vnd.kubernetes.protobuf",
92289          "application/json;stream=watch",
92290          "application/vnd.kubernetes.protobuf;stream=watch"
92291        ],
92292        "responses": {
92293          "200": {
92294            "description": "OK",
92295            "schema": {
92296              "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleList"
92297            }
92298          },
92299          "401": {
92300            "description": "Unauthorized"
92301          }
92302        },
92303        "schemes": [
92304          "https"
92305        ],
92306        "tags": [
92307          "rbacAuthorization_v1"
92308        ],
92309        "x-kubernetes-action": "list",
92310        "x-kubernetes-group-version-kind": {
92311          "group": "rbac.authorization.k8s.io",
92312          "kind": "Role",
92313          "version": "v1"
92314        }
92315      },
92316      "parameters": [
92317        {
92318          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92319          "in": "query",
92320          "name": "allowWatchBookmarks",
92321          "type": "boolean",
92322          "uniqueItems": true
92323        },
92324        {
92325          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92326          "in": "query",
92327          "name": "continue",
92328          "type": "string",
92329          "uniqueItems": true
92330        },
92331        {
92332          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92333          "in": "query",
92334          "name": "fieldSelector",
92335          "type": "string",
92336          "uniqueItems": true
92337        },
92338        {
92339          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92340          "in": "query",
92341          "name": "labelSelector",
92342          "type": "string",
92343          "uniqueItems": true
92344        },
92345        {
92346          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92347          "in": "query",
92348          "name": "limit",
92349          "type": "integer",
92350          "uniqueItems": true
92351        },
92352        {
92353          "description": "If 'true', then the output is pretty printed.",
92354          "in": "query",
92355          "name": "pretty",
92356          "type": "string",
92357          "uniqueItems": true
92358        },
92359        {
92360          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92361          "in": "query",
92362          "name": "resourceVersion",
92363          "type": "string",
92364          "uniqueItems": true
92365        },
92366        {
92367          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92368          "in": "query",
92369          "name": "timeoutSeconds",
92370          "type": "integer",
92371          "uniqueItems": true
92372        },
92373        {
92374          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92375          "in": "query",
92376          "name": "watch",
92377          "type": "boolean",
92378          "uniqueItems": true
92379        }
92380      ]
92381    },
92382    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings": {
92383      "get": {
92384        "consumes": [
92385          "*/*"
92386        ],
92387        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
92388        "operationId": "watchRbacAuthorizationV1ClusterRoleBindingList",
92389        "produces": [
92390          "application/json",
92391          "application/yaml",
92392          "application/vnd.kubernetes.protobuf",
92393          "application/json;stream=watch",
92394          "application/vnd.kubernetes.protobuf;stream=watch"
92395        ],
92396        "responses": {
92397          "200": {
92398            "description": "OK",
92399            "schema": {
92400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
92401            }
92402          },
92403          "401": {
92404            "description": "Unauthorized"
92405          }
92406        },
92407        "schemes": [
92408          "https"
92409        ],
92410        "tags": [
92411          "rbacAuthorization_v1"
92412        ],
92413        "x-kubernetes-action": "watchlist",
92414        "x-kubernetes-group-version-kind": {
92415          "group": "rbac.authorization.k8s.io",
92416          "kind": "ClusterRoleBinding",
92417          "version": "v1"
92418        }
92419      },
92420      "parameters": [
92421        {
92422          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92423          "in": "query",
92424          "name": "allowWatchBookmarks",
92425          "type": "boolean",
92426          "uniqueItems": true
92427        },
92428        {
92429          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92430          "in": "query",
92431          "name": "continue",
92432          "type": "string",
92433          "uniqueItems": true
92434        },
92435        {
92436          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92437          "in": "query",
92438          "name": "fieldSelector",
92439          "type": "string",
92440          "uniqueItems": true
92441        },
92442        {
92443          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92444          "in": "query",
92445          "name": "labelSelector",
92446          "type": "string",
92447          "uniqueItems": true
92448        },
92449        {
92450          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92451          "in": "query",
92452          "name": "limit",
92453          "type": "integer",
92454          "uniqueItems": true
92455        },
92456        {
92457          "description": "If 'true', then the output is pretty printed.",
92458          "in": "query",
92459          "name": "pretty",
92460          "type": "string",
92461          "uniqueItems": true
92462        },
92463        {
92464          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92465          "in": "query",
92466          "name": "resourceVersion",
92467          "type": "string",
92468          "uniqueItems": true
92469        },
92470        {
92471          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92472          "in": "query",
92473          "name": "timeoutSeconds",
92474          "type": "integer",
92475          "uniqueItems": true
92476        },
92477        {
92478          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92479          "in": "query",
92480          "name": "watch",
92481          "type": "boolean",
92482          "uniqueItems": true
92483        }
92484      ]
92485    },
92486    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": {
92487      "get": {
92488        "consumes": [
92489          "*/*"
92490        ],
92491        "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.",
92492        "operationId": "watchRbacAuthorizationV1ClusterRoleBinding",
92493        "produces": [
92494          "application/json",
92495          "application/yaml",
92496          "application/vnd.kubernetes.protobuf",
92497          "application/json;stream=watch",
92498          "application/vnd.kubernetes.protobuf;stream=watch"
92499        ],
92500        "responses": {
92501          "200": {
92502            "description": "OK",
92503            "schema": {
92504              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
92505            }
92506          },
92507          "401": {
92508            "description": "Unauthorized"
92509          }
92510        },
92511        "schemes": [
92512          "https"
92513        ],
92514        "tags": [
92515          "rbacAuthorization_v1"
92516        ],
92517        "x-kubernetes-action": "watch",
92518        "x-kubernetes-group-version-kind": {
92519          "group": "rbac.authorization.k8s.io",
92520          "kind": "ClusterRoleBinding",
92521          "version": "v1"
92522        }
92523      },
92524      "parameters": [
92525        {
92526          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92527          "in": "query",
92528          "name": "allowWatchBookmarks",
92529          "type": "boolean",
92530          "uniqueItems": true
92531        },
92532        {
92533          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92534          "in": "query",
92535          "name": "continue",
92536          "type": "string",
92537          "uniqueItems": true
92538        },
92539        {
92540          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92541          "in": "query",
92542          "name": "fieldSelector",
92543          "type": "string",
92544          "uniqueItems": true
92545        },
92546        {
92547          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92548          "in": "query",
92549          "name": "labelSelector",
92550          "type": "string",
92551          "uniqueItems": true
92552        },
92553        {
92554          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92555          "in": "query",
92556          "name": "limit",
92557          "type": "integer",
92558          "uniqueItems": true
92559        },
92560        {
92561          "description": "name of the ClusterRoleBinding",
92562          "in": "path",
92563          "name": "name",
92564          "required": true,
92565          "type": "string",
92566          "uniqueItems": true
92567        },
92568        {
92569          "description": "If 'true', then the output is pretty printed.",
92570          "in": "query",
92571          "name": "pretty",
92572          "type": "string",
92573          "uniqueItems": true
92574        },
92575        {
92576          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92577          "in": "query",
92578          "name": "resourceVersion",
92579          "type": "string",
92580          "uniqueItems": true
92581        },
92582        {
92583          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92584          "in": "query",
92585          "name": "timeoutSeconds",
92586          "type": "integer",
92587          "uniqueItems": true
92588        },
92589        {
92590          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92591          "in": "query",
92592          "name": "watch",
92593          "type": "boolean",
92594          "uniqueItems": true
92595        }
92596      ]
92597    },
92598    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles": {
92599      "get": {
92600        "consumes": [
92601          "*/*"
92602        ],
92603        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
92604        "operationId": "watchRbacAuthorizationV1ClusterRoleList",
92605        "produces": [
92606          "application/json",
92607          "application/yaml",
92608          "application/vnd.kubernetes.protobuf",
92609          "application/json;stream=watch",
92610          "application/vnd.kubernetes.protobuf;stream=watch"
92611        ],
92612        "responses": {
92613          "200": {
92614            "description": "OK",
92615            "schema": {
92616              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
92617            }
92618          },
92619          "401": {
92620            "description": "Unauthorized"
92621          }
92622        },
92623        "schemes": [
92624          "https"
92625        ],
92626        "tags": [
92627          "rbacAuthorization_v1"
92628        ],
92629        "x-kubernetes-action": "watchlist",
92630        "x-kubernetes-group-version-kind": {
92631          "group": "rbac.authorization.k8s.io",
92632          "kind": "ClusterRole",
92633          "version": "v1"
92634        }
92635      },
92636      "parameters": [
92637        {
92638          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92639          "in": "query",
92640          "name": "allowWatchBookmarks",
92641          "type": "boolean",
92642          "uniqueItems": true
92643        },
92644        {
92645          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92646          "in": "query",
92647          "name": "continue",
92648          "type": "string",
92649          "uniqueItems": true
92650        },
92651        {
92652          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92653          "in": "query",
92654          "name": "fieldSelector",
92655          "type": "string",
92656          "uniqueItems": true
92657        },
92658        {
92659          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92660          "in": "query",
92661          "name": "labelSelector",
92662          "type": "string",
92663          "uniqueItems": true
92664        },
92665        {
92666          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92667          "in": "query",
92668          "name": "limit",
92669          "type": "integer",
92670          "uniqueItems": true
92671        },
92672        {
92673          "description": "If 'true', then the output is pretty printed.",
92674          "in": "query",
92675          "name": "pretty",
92676          "type": "string",
92677          "uniqueItems": true
92678        },
92679        {
92680          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92681          "in": "query",
92682          "name": "resourceVersion",
92683          "type": "string",
92684          "uniqueItems": true
92685        },
92686        {
92687          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92688          "in": "query",
92689          "name": "timeoutSeconds",
92690          "type": "integer",
92691          "uniqueItems": true
92692        },
92693        {
92694          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92695          "in": "query",
92696          "name": "watch",
92697          "type": "boolean",
92698          "uniqueItems": true
92699        }
92700      ]
92701    },
92702    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": {
92703      "get": {
92704        "consumes": [
92705          "*/*"
92706        ],
92707        "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.",
92708        "operationId": "watchRbacAuthorizationV1ClusterRole",
92709        "produces": [
92710          "application/json",
92711          "application/yaml",
92712          "application/vnd.kubernetes.protobuf",
92713          "application/json;stream=watch",
92714          "application/vnd.kubernetes.protobuf;stream=watch"
92715        ],
92716        "responses": {
92717          "200": {
92718            "description": "OK",
92719            "schema": {
92720              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
92721            }
92722          },
92723          "401": {
92724            "description": "Unauthorized"
92725          }
92726        },
92727        "schemes": [
92728          "https"
92729        ],
92730        "tags": [
92731          "rbacAuthorization_v1"
92732        ],
92733        "x-kubernetes-action": "watch",
92734        "x-kubernetes-group-version-kind": {
92735          "group": "rbac.authorization.k8s.io",
92736          "kind": "ClusterRole",
92737          "version": "v1"
92738        }
92739      },
92740      "parameters": [
92741        {
92742          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92743          "in": "query",
92744          "name": "allowWatchBookmarks",
92745          "type": "boolean",
92746          "uniqueItems": true
92747        },
92748        {
92749          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92750          "in": "query",
92751          "name": "continue",
92752          "type": "string",
92753          "uniqueItems": true
92754        },
92755        {
92756          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92757          "in": "query",
92758          "name": "fieldSelector",
92759          "type": "string",
92760          "uniqueItems": true
92761        },
92762        {
92763          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92764          "in": "query",
92765          "name": "labelSelector",
92766          "type": "string",
92767          "uniqueItems": true
92768        },
92769        {
92770          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92771          "in": "query",
92772          "name": "limit",
92773          "type": "integer",
92774          "uniqueItems": true
92775        },
92776        {
92777          "description": "name of the ClusterRole",
92778          "in": "path",
92779          "name": "name",
92780          "required": true,
92781          "type": "string",
92782          "uniqueItems": true
92783        },
92784        {
92785          "description": "If 'true', then the output is pretty printed.",
92786          "in": "query",
92787          "name": "pretty",
92788          "type": "string",
92789          "uniqueItems": true
92790        },
92791        {
92792          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92793          "in": "query",
92794          "name": "resourceVersion",
92795          "type": "string",
92796          "uniqueItems": true
92797        },
92798        {
92799          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92800          "in": "query",
92801          "name": "timeoutSeconds",
92802          "type": "integer",
92803          "uniqueItems": true
92804        },
92805        {
92806          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92807          "in": "query",
92808          "name": "watch",
92809          "type": "boolean",
92810          "uniqueItems": true
92811        }
92812      ]
92813    },
92814    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": {
92815      "get": {
92816        "consumes": [
92817          "*/*"
92818        ],
92819        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
92820        "operationId": "watchRbacAuthorizationV1NamespacedRoleBindingList",
92821        "produces": [
92822          "application/json",
92823          "application/yaml",
92824          "application/vnd.kubernetes.protobuf",
92825          "application/json;stream=watch",
92826          "application/vnd.kubernetes.protobuf;stream=watch"
92827        ],
92828        "responses": {
92829          "200": {
92830            "description": "OK",
92831            "schema": {
92832              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
92833            }
92834          },
92835          "401": {
92836            "description": "Unauthorized"
92837          }
92838        },
92839        "schemes": [
92840          "https"
92841        ],
92842        "tags": [
92843          "rbacAuthorization_v1"
92844        ],
92845        "x-kubernetes-action": "watchlist",
92846        "x-kubernetes-group-version-kind": {
92847          "group": "rbac.authorization.k8s.io",
92848          "kind": "RoleBinding",
92849          "version": "v1"
92850        }
92851      },
92852      "parameters": [
92853        {
92854          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92855          "in": "query",
92856          "name": "allowWatchBookmarks",
92857          "type": "boolean",
92858          "uniqueItems": true
92859        },
92860        {
92861          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92862          "in": "query",
92863          "name": "continue",
92864          "type": "string",
92865          "uniqueItems": true
92866        },
92867        {
92868          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92869          "in": "query",
92870          "name": "fieldSelector",
92871          "type": "string",
92872          "uniqueItems": true
92873        },
92874        {
92875          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92876          "in": "query",
92877          "name": "labelSelector",
92878          "type": "string",
92879          "uniqueItems": true
92880        },
92881        {
92882          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92883          "in": "query",
92884          "name": "limit",
92885          "type": "integer",
92886          "uniqueItems": true
92887        },
92888        {
92889          "description": "object name and auth scope, such as for teams and projects",
92890          "in": "path",
92891          "name": "namespace",
92892          "required": true,
92893          "type": "string",
92894          "uniqueItems": true
92895        },
92896        {
92897          "description": "If 'true', then the output is pretty printed.",
92898          "in": "query",
92899          "name": "pretty",
92900          "type": "string",
92901          "uniqueItems": true
92902        },
92903        {
92904          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
92905          "in": "query",
92906          "name": "resourceVersion",
92907          "type": "string",
92908          "uniqueItems": true
92909        },
92910        {
92911          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
92912          "in": "query",
92913          "name": "timeoutSeconds",
92914          "type": "integer",
92915          "uniqueItems": true
92916        },
92917        {
92918          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
92919          "in": "query",
92920          "name": "watch",
92921          "type": "boolean",
92922          "uniqueItems": true
92923        }
92924      ]
92925    },
92926    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": {
92927      "get": {
92928        "consumes": [
92929          "*/*"
92930        ],
92931        "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.",
92932        "operationId": "watchRbacAuthorizationV1NamespacedRoleBinding",
92933        "produces": [
92934          "application/json",
92935          "application/yaml",
92936          "application/vnd.kubernetes.protobuf",
92937          "application/json;stream=watch",
92938          "application/vnd.kubernetes.protobuf;stream=watch"
92939        ],
92940        "responses": {
92941          "200": {
92942            "description": "OK",
92943            "schema": {
92944              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
92945            }
92946          },
92947          "401": {
92948            "description": "Unauthorized"
92949          }
92950        },
92951        "schemes": [
92952          "https"
92953        ],
92954        "tags": [
92955          "rbacAuthorization_v1"
92956        ],
92957        "x-kubernetes-action": "watch",
92958        "x-kubernetes-group-version-kind": {
92959          "group": "rbac.authorization.k8s.io",
92960          "kind": "RoleBinding",
92961          "version": "v1"
92962        }
92963      },
92964      "parameters": [
92965        {
92966          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
92967          "in": "query",
92968          "name": "allowWatchBookmarks",
92969          "type": "boolean",
92970          "uniqueItems": true
92971        },
92972        {
92973          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
92974          "in": "query",
92975          "name": "continue",
92976          "type": "string",
92977          "uniqueItems": true
92978        },
92979        {
92980          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
92981          "in": "query",
92982          "name": "fieldSelector",
92983          "type": "string",
92984          "uniqueItems": true
92985        },
92986        {
92987          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
92988          "in": "query",
92989          "name": "labelSelector",
92990          "type": "string",
92991          "uniqueItems": true
92992        },
92993        {
92994          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
92995          "in": "query",
92996          "name": "limit",
92997          "type": "integer",
92998          "uniqueItems": true
92999        },
93000        {
93001          "description": "name of the RoleBinding",
93002          "in": "path",
93003          "name": "name",
93004          "required": true,
93005          "type": "string",
93006          "uniqueItems": true
93007        },
93008        {
93009          "description": "object name and auth scope, such as for teams and projects",
93010          "in": "path",
93011          "name": "namespace",
93012          "required": true,
93013          "type": "string",
93014          "uniqueItems": true
93015        },
93016        {
93017          "description": "If 'true', then the output is pretty printed.",
93018          "in": "query",
93019          "name": "pretty",
93020          "type": "string",
93021          "uniqueItems": true
93022        },
93023        {
93024          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93025          "in": "query",
93026          "name": "resourceVersion",
93027          "type": "string",
93028          "uniqueItems": true
93029        },
93030        {
93031          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93032          "in": "query",
93033          "name": "timeoutSeconds",
93034          "type": "integer",
93035          "uniqueItems": true
93036        },
93037        {
93038          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93039          "in": "query",
93040          "name": "watch",
93041          "type": "boolean",
93042          "uniqueItems": true
93043        }
93044      ]
93045    },
93046    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": {
93047      "get": {
93048        "consumes": [
93049          "*/*"
93050        ],
93051        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
93052        "operationId": "watchRbacAuthorizationV1NamespacedRoleList",
93053        "produces": [
93054          "application/json",
93055          "application/yaml",
93056          "application/vnd.kubernetes.protobuf",
93057          "application/json;stream=watch",
93058          "application/vnd.kubernetes.protobuf;stream=watch"
93059        ],
93060        "responses": {
93061          "200": {
93062            "description": "OK",
93063            "schema": {
93064              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93065            }
93066          },
93067          "401": {
93068            "description": "Unauthorized"
93069          }
93070        },
93071        "schemes": [
93072          "https"
93073        ],
93074        "tags": [
93075          "rbacAuthorization_v1"
93076        ],
93077        "x-kubernetes-action": "watchlist",
93078        "x-kubernetes-group-version-kind": {
93079          "group": "rbac.authorization.k8s.io",
93080          "kind": "Role",
93081          "version": "v1"
93082        }
93083      },
93084      "parameters": [
93085        {
93086          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
93087          "in": "query",
93088          "name": "allowWatchBookmarks",
93089          "type": "boolean",
93090          "uniqueItems": true
93091        },
93092        {
93093          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93094          "in": "query",
93095          "name": "continue",
93096          "type": "string",
93097          "uniqueItems": true
93098        },
93099        {
93100          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93101          "in": "query",
93102          "name": "fieldSelector",
93103          "type": "string",
93104          "uniqueItems": true
93105        },
93106        {
93107          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93108          "in": "query",
93109          "name": "labelSelector",
93110          "type": "string",
93111          "uniqueItems": true
93112        },
93113        {
93114          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93115          "in": "query",
93116          "name": "limit",
93117          "type": "integer",
93118          "uniqueItems": true
93119        },
93120        {
93121          "description": "object name and auth scope, such as for teams and projects",
93122          "in": "path",
93123          "name": "namespace",
93124          "required": true,
93125          "type": "string",
93126          "uniqueItems": true
93127        },
93128        {
93129          "description": "If 'true', then the output is pretty printed.",
93130          "in": "query",
93131          "name": "pretty",
93132          "type": "string",
93133          "uniqueItems": true
93134        },
93135        {
93136          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93137          "in": "query",
93138          "name": "resourceVersion",
93139          "type": "string",
93140          "uniqueItems": true
93141        },
93142        {
93143          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93144          "in": "query",
93145          "name": "timeoutSeconds",
93146          "type": "integer",
93147          "uniqueItems": true
93148        },
93149        {
93150          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93151          "in": "query",
93152          "name": "watch",
93153          "type": "boolean",
93154          "uniqueItems": true
93155        }
93156      ]
93157    },
93158    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": {
93159      "get": {
93160        "consumes": [
93161          "*/*"
93162        ],
93163        "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.",
93164        "operationId": "watchRbacAuthorizationV1NamespacedRole",
93165        "produces": [
93166          "application/json",
93167          "application/yaml",
93168          "application/vnd.kubernetes.protobuf",
93169          "application/json;stream=watch",
93170          "application/vnd.kubernetes.protobuf;stream=watch"
93171        ],
93172        "responses": {
93173          "200": {
93174            "description": "OK",
93175            "schema": {
93176              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93177            }
93178          },
93179          "401": {
93180            "description": "Unauthorized"
93181          }
93182        },
93183        "schemes": [
93184          "https"
93185        ],
93186        "tags": [
93187          "rbacAuthorization_v1"
93188        ],
93189        "x-kubernetes-action": "watch",
93190        "x-kubernetes-group-version-kind": {
93191          "group": "rbac.authorization.k8s.io",
93192          "kind": "Role",
93193          "version": "v1"
93194        }
93195      },
93196      "parameters": [
93197        {
93198          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
93199          "in": "query",
93200          "name": "allowWatchBookmarks",
93201          "type": "boolean",
93202          "uniqueItems": true
93203        },
93204        {
93205          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93206          "in": "query",
93207          "name": "continue",
93208          "type": "string",
93209          "uniqueItems": true
93210        },
93211        {
93212          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93213          "in": "query",
93214          "name": "fieldSelector",
93215          "type": "string",
93216          "uniqueItems": true
93217        },
93218        {
93219          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93220          "in": "query",
93221          "name": "labelSelector",
93222          "type": "string",
93223          "uniqueItems": true
93224        },
93225        {
93226          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93227          "in": "query",
93228          "name": "limit",
93229          "type": "integer",
93230          "uniqueItems": true
93231        },
93232        {
93233          "description": "name of the Role",
93234          "in": "path",
93235          "name": "name",
93236          "required": true,
93237          "type": "string",
93238          "uniqueItems": true
93239        },
93240        {
93241          "description": "object name and auth scope, such as for teams and projects",
93242          "in": "path",
93243          "name": "namespace",
93244          "required": true,
93245          "type": "string",
93246          "uniqueItems": true
93247        },
93248        {
93249          "description": "If 'true', then the output is pretty printed.",
93250          "in": "query",
93251          "name": "pretty",
93252          "type": "string",
93253          "uniqueItems": true
93254        },
93255        {
93256          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93257          "in": "query",
93258          "name": "resourceVersion",
93259          "type": "string",
93260          "uniqueItems": true
93261        },
93262        {
93263          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93264          "in": "query",
93265          "name": "timeoutSeconds",
93266          "type": "integer",
93267          "uniqueItems": true
93268        },
93269        {
93270          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93271          "in": "query",
93272          "name": "watch",
93273          "type": "boolean",
93274          "uniqueItems": true
93275        }
93276      ]
93277    },
93278    "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings": {
93279      "get": {
93280        "consumes": [
93281          "*/*"
93282        ],
93283        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
93284        "operationId": "watchRbacAuthorizationV1RoleBindingListForAllNamespaces",
93285        "produces": [
93286          "application/json",
93287          "application/yaml",
93288          "application/vnd.kubernetes.protobuf",
93289          "application/json;stream=watch",
93290          "application/vnd.kubernetes.protobuf;stream=watch"
93291        ],
93292        "responses": {
93293          "200": {
93294            "description": "OK",
93295            "schema": {
93296              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93297            }
93298          },
93299          "401": {
93300            "description": "Unauthorized"
93301          }
93302        },
93303        "schemes": [
93304          "https"
93305        ],
93306        "tags": [
93307          "rbacAuthorization_v1"
93308        ],
93309        "x-kubernetes-action": "watchlist",
93310        "x-kubernetes-group-version-kind": {
93311          "group": "rbac.authorization.k8s.io",
93312          "kind": "RoleBinding",
93313          "version": "v1"
93314        }
93315      },
93316      "parameters": [
93317        {
93318          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
93319          "in": "query",
93320          "name": "allowWatchBookmarks",
93321          "type": "boolean",
93322          "uniqueItems": true
93323        },
93324        {
93325          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93326          "in": "query",
93327          "name": "continue",
93328          "type": "string",
93329          "uniqueItems": true
93330        },
93331        {
93332          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93333          "in": "query",
93334          "name": "fieldSelector",
93335          "type": "string",
93336          "uniqueItems": true
93337        },
93338        {
93339          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93340          "in": "query",
93341          "name": "labelSelector",
93342          "type": "string",
93343          "uniqueItems": true
93344        },
93345        {
93346          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93347          "in": "query",
93348          "name": "limit",
93349          "type": "integer",
93350          "uniqueItems": true
93351        },
93352        {
93353          "description": "If 'true', then the output is pretty printed.",
93354          "in": "query",
93355          "name": "pretty",
93356          "type": "string",
93357          "uniqueItems": true
93358        },
93359        {
93360          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93361          "in": "query",
93362          "name": "resourceVersion",
93363          "type": "string",
93364          "uniqueItems": true
93365        },
93366        {
93367          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93368          "in": "query",
93369          "name": "timeoutSeconds",
93370          "type": "integer",
93371          "uniqueItems": true
93372        },
93373        {
93374          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93375          "in": "query",
93376          "name": "watch",
93377          "type": "boolean",
93378          "uniqueItems": true
93379        }
93380      ]
93381    },
93382    "/apis/rbac.authorization.k8s.io/v1/watch/roles": {
93383      "get": {
93384        "consumes": [
93385          "*/*"
93386        ],
93387        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
93388        "operationId": "watchRbacAuthorizationV1RoleListForAllNamespaces",
93389        "produces": [
93390          "application/json",
93391          "application/yaml",
93392          "application/vnd.kubernetes.protobuf",
93393          "application/json;stream=watch",
93394          "application/vnd.kubernetes.protobuf;stream=watch"
93395        ],
93396        "responses": {
93397          "200": {
93398            "description": "OK",
93399            "schema": {
93400              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
93401            }
93402          },
93403          "401": {
93404            "description": "Unauthorized"
93405          }
93406        },
93407        "schemes": [
93408          "https"
93409        ],
93410        "tags": [
93411          "rbacAuthorization_v1"
93412        ],
93413        "x-kubernetes-action": "watchlist",
93414        "x-kubernetes-group-version-kind": {
93415          "group": "rbac.authorization.k8s.io",
93416          "kind": "Role",
93417          "version": "v1"
93418        }
93419      },
93420      "parameters": [
93421        {
93422          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
93423          "in": "query",
93424          "name": "allowWatchBookmarks",
93425          "type": "boolean",
93426          "uniqueItems": true
93427        },
93428        {
93429          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93430          "in": "query",
93431          "name": "continue",
93432          "type": "string",
93433          "uniqueItems": true
93434        },
93435        {
93436          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93437          "in": "query",
93438          "name": "fieldSelector",
93439          "type": "string",
93440          "uniqueItems": true
93441        },
93442        {
93443          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93444          "in": "query",
93445          "name": "labelSelector",
93446          "type": "string",
93447          "uniqueItems": true
93448        },
93449        {
93450          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93451          "in": "query",
93452          "name": "limit",
93453          "type": "integer",
93454          "uniqueItems": true
93455        },
93456        {
93457          "description": "If 'true', then the output is pretty printed.",
93458          "in": "query",
93459          "name": "pretty",
93460          "type": "string",
93461          "uniqueItems": true
93462        },
93463        {
93464          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93465          "in": "query",
93466          "name": "resourceVersion",
93467          "type": "string",
93468          "uniqueItems": true
93469        },
93470        {
93471          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93472          "in": "query",
93473          "name": "timeoutSeconds",
93474          "type": "integer",
93475          "uniqueItems": true
93476        },
93477        {
93478          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93479          "in": "query",
93480          "name": "watch",
93481          "type": "boolean",
93482          "uniqueItems": true
93483        }
93484      ]
93485    },
93486    "/apis/rbac.authorization.k8s.io/v1alpha1/": {
93487      "get": {
93488        "consumes": [
93489          "application/json",
93490          "application/yaml",
93491          "application/vnd.kubernetes.protobuf"
93492        ],
93493        "description": "get available resources",
93494        "operationId": "getRbacAuthorizationV1alpha1APIResources",
93495        "produces": [
93496          "application/json",
93497          "application/yaml",
93498          "application/vnd.kubernetes.protobuf"
93499        ],
93500        "responses": {
93501          "200": {
93502            "description": "OK",
93503            "schema": {
93504              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
93505            }
93506          },
93507          "401": {
93508            "description": "Unauthorized"
93509          }
93510        },
93511        "schemes": [
93512          "https"
93513        ],
93514        "tags": [
93515          "rbacAuthorization_v1alpha1"
93516        ]
93517      }
93518    },
93519    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings": {
93520      "delete": {
93521        "consumes": [
93522          "*/*"
93523        ],
93524        "description": "delete collection of ClusterRoleBinding",
93525        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding",
93526        "parameters": [
93527          {
93528            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
93529            "in": "query",
93530            "name": "allowWatchBookmarks",
93531            "type": "boolean",
93532            "uniqueItems": true
93533          },
93534          {
93535            "in": "body",
93536            "name": "body",
93537            "schema": {
93538              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
93539            }
93540          },
93541          {
93542            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93543            "in": "query",
93544            "name": "continue",
93545            "type": "string",
93546            "uniqueItems": true
93547          },
93548          {
93549            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
93550            "in": "query",
93551            "name": "dryRun",
93552            "type": "string",
93553            "uniqueItems": true
93554          },
93555          {
93556            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93557            "in": "query",
93558            "name": "fieldSelector",
93559            "type": "string",
93560            "uniqueItems": true
93561          },
93562          {
93563            "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.",
93564            "in": "query",
93565            "name": "gracePeriodSeconds",
93566            "type": "integer",
93567            "uniqueItems": true
93568          },
93569          {
93570            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93571            "in": "query",
93572            "name": "labelSelector",
93573            "type": "string",
93574            "uniqueItems": true
93575          },
93576          {
93577            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93578            "in": "query",
93579            "name": "limit",
93580            "type": "integer",
93581            "uniqueItems": true
93582          },
93583          {
93584            "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.",
93585            "in": "query",
93586            "name": "orphanDependents",
93587            "type": "boolean",
93588            "uniqueItems": true
93589          },
93590          {
93591            "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.",
93592            "in": "query",
93593            "name": "propagationPolicy",
93594            "type": "string",
93595            "uniqueItems": true
93596          },
93597          {
93598            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93599            "in": "query",
93600            "name": "resourceVersion",
93601            "type": "string",
93602            "uniqueItems": true
93603          },
93604          {
93605            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93606            "in": "query",
93607            "name": "timeoutSeconds",
93608            "type": "integer",
93609            "uniqueItems": true
93610          },
93611          {
93612            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93613            "in": "query",
93614            "name": "watch",
93615            "type": "boolean",
93616            "uniqueItems": true
93617          }
93618        ],
93619        "produces": [
93620          "application/json",
93621          "application/yaml",
93622          "application/vnd.kubernetes.protobuf"
93623        ],
93624        "responses": {
93625          "200": {
93626            "description": "OK",
93627            "schema": {
93628              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
93629            }
93630          },
93631          "401": {
93632            "description": "Unauthorized"
93633          }
93634        },
93635        "schemes": [
93636          "https"
93637        ],
93638        "tags": [
93639          "rbacAuthorization_v1alpha1"
93640        ],
93641        "x-kubernetes-action": "deletecollection",
93642        "x-kubernetes-group-version-kind": {
93643          "group": "rbac.authorization.k8s.io",
93644          "kind": "ClusterRoleBinding",
93645          "version": "v1alpha1"
93646        }
93647      },
93648      "get": {
93649        "consumes": [
93650          "*/*"
93651        ],
93652        "description": "list or watch objects of kind ClusterRoleBinding",
93653        "operationId": "listRbacAuthorizationV1alpha1ClusterRoleBinding",
93654        "parameters": [
93655          {
93656            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
93657            "in": "query",
93658            "name": "allowWatchBookmarks",
93659            "type": "boolean",
93660            "uniqueItems": true
93661          },
93662          {
93663            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
93664            "in": "query",
93665            "name": "continue",
93666            "type": "string",
93667            "uniqueItems": true
93668          },
93669          {
93670            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
93671            "in": "query",
93672            "name": "fieldSelector",
93673            "type": "string",
93674            "uniqueItems": true
93675          },
93676          {
93677            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
93678            "in": "query",
93679            "name": "labelSelector",
93680            "type": "string",
93681            "uniqueItems": true
93682          },
93683          {
93684            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
93685            "in": "query",
93686            "name": "limit",
93687            "type": "integer",
93688            "uniqueItems": true
93689          },
93690          {
93691            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
93692            "in": "query",
93693            "name": "resourceVersion",
93694            "type": "string",
93695            "uniqueItems": true
93696          },
93697          {
93698            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
93699            "in": "query",
93700            "name": "timeoutSeconds",
93701            "type": "integer",
93702            "uniqueItems": true
93703          },
93704          {
93705            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
93706            "in": "query",
93707            "name": "watch",
93708            "type": "boolean",
93709            "uniqueItems": true
93710          }
93711        ],
93712        "produces": [
93713          "application/json",
93714          "application/yaml",
93715          "application/vnd.kubernetes.protobuf",
93716          "application/json;stream=watch",
93717          "application/vnd.kubernetes.protobuf;stream=watch"
93718        ],
93719        "responses": {
93720          "200": {
93721            "description": "OK",
93722            "schema": {
93723              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList"
93724            }
93725          },
93726          "401": {
93727            "description": "Unauthorized"
93728          }
93729        },
93730        "schemes": [
93731          "https"
93732        ],
93733        "tags": [
93734          "rbacAuthorization_v1alpha1"
93735        ],
93736        "x-kubernetes-action": "list",
93737        "x-kubernetes-group-version-kind": {
93738          "group": "rbac.authorization.k8s.io",
93739          "kind": "ClusterRoleBinding",
93740          "version": "v1alpha1"
93741        }
93742      },
93743      "parameters": [
93744        {
93745          "description": "If 'true', then the output is pretty printed.",
93746          "in": "query",
93747          "name": "pretty",
93748          "type": "string",
93749          "uniqueItems": true
93750        }
93751      ],
93752      "post": {
93753        "consumes": [
93754          "*/*"
93755        ],
93756        "description": "create a ClusterRoleBinding",
93757        "operationId": "createRbacAuthorizationV1alpha1ClusterRoleBinding",
93758        "parameters": [
93759          {
93760            "in": "body",
93761            "name": "body",
93762            "required": true,
93763            "schema": {
93764              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
93765            }
93766          },
93767          {
93768            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
93769            "in": "query",
93770            "name": "dryRun",
93771            "type": "string",
93772            "uniqueItems": true
93773          },
93774          {
93775            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
93776            "in": "query",
93777            "name": "fieldManager",
93778            "type": "string",
93779            "uniqueItems": true
93780          }
93781        ],
93782        "produces": [
93783          "application/json",
93784          "application/yaml",
93785          "application/vnd.kubernetes.protobuf"
93786        ],
93787        "responses": {
93788          "200": {
93789            "description": "OK",
93790            "schema": {
93791              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
93792            }
93793          },
93794          "201": {
93795            "description": "Created",
93796            "schema": {
93797              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
93798            }
93799          },
93800          "202": {
93801            "description": "Accepted",
93802            "schema": {
93803              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
93804            }
93805          },
93806          "401": {
93807            "description": "Unauthorized"
93808          }
93809        },
93810        "schemes": [
93811          "https"
93812        ],
93813        "tags": [
93814          "rbacAuthorization_v1alpha1"
93815        ],
93816        "x-kubernetes-action": "post",
93817        "x-kubernetes-group-version-kind": {
93818          "group": "rbac.authorization.k8s.io",
93819          "kind": "ClusterRoleBinding",
93820          "version": "v1alpha1"
93821        }
93822      }
93823    },
93824    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}": {
93825      "delete": {
93826        "consumes": [
93827          "*/*"
93828        ],
93829        "description": "delete a ClusterRoleBinding",
93830        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRoleBinding",
93831        "parameters": [
93832          {
93833            "in": "body",
93834            "name": "body",
93835            "schema": {
93836              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
93837            }
93838          },
93839          {
93840            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
93841            "in": "query",
93842            "name": "dryRun",
93843            "type": "string",
93844            "uniqueItems": true
93845          },
93846          {
93847            "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.",
93848            "in": "query",
93849            "name": "gracePeriodSeconds",
93850            "type": "integer",
93851            "uniqueItems": true
93852          },
93853          {
93854            "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.",
93855            "in": "query",
93856            "name": "orphanDependents",
93857            "type": "boolean",
93858            "uniqueItems": true
93859          },
93860          {
93861            "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.",
93862            "in": "query",
93863            "name": "propagationPolicy",
93864            "type": "string",
93865            "uniqueItems": true
93866          }
93867        ],
93868        "produces": [
93869          "application/json",
93870          "application/yaml",
93871          "application/vnd.kubernetes.protobuf"
93872        ],
93873        "responses": {
93874          "200": {
93875            "description": "OK",
93876            "schema": {
93877              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
93878            }
93879          },
93880          "202": {
93881            "description": "Accepted",
93882            "schema": {
93883              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
93884            }
93885          },
93886          "401": {
93887            "description": "Unauthorized"
93888          }
93889        },
93890        "schemes": [
93891          "https"
93892        ],
93893        "tags": [
93894          "rbacAuthorization_v1alpha1"
93895        ],
93896        "x-kubernetes-action": "delete",
93897        "x-kubernetes-group-version-kind": {
93898          "group": "rbac.authorization.k8s.io",
93899          "kind": "ClusterRoleBinding",
93900          "version": "v1alpha1"
93901        }
93902      },
93903      "get": {
93904        "consumes": [
93905          "*/*"
93906        ],
93907        "description": "read the specified ClusterRoleBinding",
93908        "operationId": "readRbacAuthorizationV1alpha1ClusterRoleBinding",
93909        "produces": [
93910          "application/json",
93911          "application/yaml",
93912          "application/vnd.kubernetes.protobuf"
93913        ],
93914        "responses": {
93915          "200": {
93916            "description": "OK",
93917            "schema": {
93918              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
93919            }
93920          },
93921          "401": {
93922            "description": "Unauthorized"
93923          }
93924        },
93925        "schemes": [
93926          "https"
93927        ],
93928        "tags": [
93929          "rbacAuthorization_v1alpha1"
93930        ],
93931        "x-kubernetes-action": "get",
93932        "x-kubernetes-group-version-kind": {
93933          "group": "rbac.authorization.k8s.io",
93934          "kind": "ClusterRoleBinding",
93935          "version": "v1alpha1"
93936        }
93937      },
93938      "parameters": [
93939        {
93940          "description": "name of the ClusterRoleBinding",
93941          "in": "path",
93942          "name": "name",
93943          "required": true,
93944          "type": "string",
93945          "uniqueItems": true
93946        },
93947        {
93948          "description": "If 'true', then the output is pretty printed.",
93949          "in": "query",
93950          "name": "pretty",
93951          "type": "string",
93952          "uniqueItems": true
93953        }
93954      ],
93955      "patch": {
93956        "consumes": [
93957          "application/json-patch+json",
93958          "application/merge-patch+json",
93959          "application/strategic-merge-patch+json"
93960        ],
93961        "description": "partially update the specified ClusterRoleBinding",
93962        "operationId": "patchRbacAuthorizationV1alpha1ClusterRoleBinding",
93963        "parameters": [
93964          {
93965            "in": "body",
93966            "name": "body",
93967            "required": true,
93968            "schema": {
93969              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
93970            }
93971          },
93972          {
93973            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
93974            "in": "query",
93975            "name": "dryRun",
93976            "type": "string",
93977            "uniqueItems": true
93978          },
93979          {
93980            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
93981            "in": "query",
93982            "name": "fieldManager",
93983            "type": "string",
93984            "uniqueItems": true
93985          },
93986          {
93987            "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.",
93988            "in": "query",
93989            "name": "force",
93990            "type": "boolean",
93991            "uniqueItems": true
93992          }
93993        ],
93994        "produces": [
93995          "application/json",
93996          "application/yaml",
93997          "application/vnd.kubernetes.protobuf"
93998        ],
93999        "responses": {
94000          "200": {
94001            "description": "OK",
94002            "schema": {
94003              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
94004            }
94005          },
94006          "401": {
94007            "description": "Unauthorized"
94008          }
94009        },
94010        "schemes": [
94011          "https"
94012        ],
94013        "tags": [
94014          "rbacAuthorization_v1alpha1"
94015        ],
94016        "x-kubernetes-action": "patch",
94017        "x-kubernetes-group-version-kind": {
94018          "group": "rbac.authorization.k8s.io",
94019          "kind": "ClusterRoleBinding",
94020          "version": "v1alpha1"
94021        }
94022      },
94023      "put": {
94024        "consumes": [
94025          "*/*"
94026        ],
94027        "description": "replace the specified ClusterRoleBinding",
94028        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRoleBinding",
94029        "parameters": [
94030          {
94031            "in": "body",
94032            "name": "body",
94033            "required": true,
94034            "schema": {
94035              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
94036            }
94037          },
94038          {
94039            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94040            "in": "query",
94041            "name": "dryRun",
94042            "type": "string",
94043            "uniqueItems": true
94044          },
94045          {
94046            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94047            "in": "query",
94048            "name": "fieldManager",
94049            "type": "string",
94050            "uniqueItems": true
94051          }
94052        ],
94053        "produces": [
94054          "application/json",
94055          "application/yaml",
94056          "application/vnd.kubernetes.protobuf"
94057        ],
94058        "responses": {
94059          "200": {
94060            "description": "OK",
94061            "schema": {
94062              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
94063            }
94064          },
94065          "201": {
94066            "description": "Created",
94067            "schema": {
94068              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding"
94069            }
94070          },
94071          "401": {
94072            "description": "Unauthorized"
94073          }
94074        },
94075        "schemes": [
94076          "https"
94077        ],
94078        "tags": [
94079          "rbacAuthorization_v1alpha1"
94080        ],
94081        "x-kubernetes-action": "put",
94082        "x-kubernetes-group-version-kind": {
94083          "group": "rbac.authorization.k8s.io",
94084          "kind": "ClusterRoleBinding",
94085          "version": "v1alpha1"
94086        }
94087      }
94088    },
94089    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles": {
94090      "delete": {
94091        "consumes": [
94092          "*/*"
94093        ],
94094        "description": "delete collection of ClusterRole",
94095        "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRole",
94096        "parameters": [
94097          {
94098            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
94099            "in": "query",
94100            "name": "allowWatchBookmarks",
94101            "type": "boolean",
94102            "uniqueItems": true
94103          },
94104          {
94105            "in": "body",
94106            "name": "body",
94107            "schema": {
94108              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94109            }
94110          },
94111          {
94112            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94113            "in": "query",
94114            "name": "continue",
94115            "type": "string",
94116            "uniqueItems": true
94117          },
94118          {
94119            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94120            "in": "query",
94121            "name": "dryRun",
94122            "type": "string",
94123            "uniqueItems": true
94124          },
94125          {
94126            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94127            "in": "query",
94128            "name": "fieldSelector",
94129            "type": "string",
94130            "uniqueItems": true
94131          },
94132          {
94133            "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.",
94134            "in": "query",
94135            "name": "gracePeriodSeconds",
94136            "type": "integer",
94137            "uniqueItems": true
94138          },
94139          {
94140            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94141            "in": "query",
94142            "name": "labelSelector",
94143            "type": "string",
94144            "uniqueItems": true
94145          },
94146          {
94147            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94148            "in": "query",
94149            "name": "limit",
94150            "type": "integer",
94151            "uniqueItems": true
94152          },
94153          {
94154            "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.",
94155            "in": "query",
94156            "name": "orphanDependents",
94157            "type": "boolean",
94158            "uniqueItems": true
94159          },
94160          {
94161            "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.",
94162            "in": "query",
94163            "name": "propagationPolicy",
94164            "type": "string",
94165            "uniqueItems": true
94166          },
94167          {
94168            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
94169            "in": "query",
94170            "name": "resourceVersion",
94171            "type": "string",
94172            "uniqueItems": true
94173          },
94174          {
94175            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94176            "in": "query",
94177            "name": "timeoutSeconds",
94178            "type": "integer",
94179            "uniqueItems": true
94180          },
94181          {
94182            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94183            "in": "query",
94184            "name": "watch",
94185            "type": "boolean",
94186            "uniqueItems": true
94187          }
94188        ],
94189        "produces": [
94190          "application/json",
94191          "application/yaml",
94192          "application/vnd.kubernetes.protobuf"
94193        ],
94194        "responses": {
94195          "200": {
94196            "description": "OK",
94197            "schema": {
94198              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94199            }
94200          },
94201          "401": {
94202            "description": "Unauthorized"
94203          }
94204        },
94205        "schemes": [
94206          "https"
94207        ],
94208        "tags": [
94209          "rbacAuthorization_v1alpha1"
94210        ],
94211        "x-kubernetes-action": "deletecollection",
94212        "x-kubernetes-group-version-kind": {
94213          "group": "rbac.authorization.k8s.io",
94214          "kind": "ClusterRole",
94215          "version": "v1alpha1"
94216        }
94217      },
94218      "get": {
94219        "consumes": [
94220          "*/*"
94221        ],
94222        "description": "list or watch objects of kind ClusterRole",
94223        "operationId": "listRbacAuthorizationV1alpha1ClusterRole",
94224        "parameters": [
94225          {
94226            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
94227            "in": "query",
94228            "name": "allowWatchBookmarks",
94229            "type": "boolean",
94230            "uniqueItems": true
94231          },
94232          {
94233            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94234            "in": "query",
94235            "name": "continue",
94236            "type": "string",
94237            "uniqueItems": true
94238          },
94239          {
94240            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94241            "in": "query",
94242            "name": "fieldSelector",
94243            "type": "string",
94244            "uniqueItems": true
94245          },
94246          {
94247            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94248            "in": "query",
94249            "name": "labelSelector",
94250            "type": "string",
94251            "uniqueItems": true
94252          },
94253          {
94254            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94255            "in": "query",
94256            "name": "limit",
94257            "type": "integer",
94258            "uniqueItems": true
94259          },
94260          {
94261            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
94262            "in": "query",
94263            "name": "resourceVersion",
94264            "type": "string",
94265            "uniqueItems": true
94266          },
94267          {
94268            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94269            "in": "query",
94270            "name": "timeoutSeconds",
94271            "type": "integer",
94272            "uniqueItems": true
94273          },
94274          {
94275            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94276            "in": "query",
94277            "name": "watch",
94278            "type": "boolean",
94279            "uniqueItems": true
94280          }
94281        ],
94282        "produces": [
94283          "application/json",
94284          "application/yaml",
94285          "application/vnd.kubernetes.protobuf",
94286          "application/json;stream=watch",
94287          "application/vnd.kubernetes.protobuf;stream=watch"
94288        ],
94289        "responses": {
94290          "200": {
94291            "description": "OK",
94292            "schema": {
94293              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleList"
94294            }
94295          },
94296          "401": {
94297            "description": "Unauthorized"
94298          }
94299        },
94300        "schemes": [
94301          "https"
94302        ],
94303        "tags": [
94304          "rbacAuthorization_v1alpha1"
94305        ],
94306        "x-kubernetes-action": "list",
94307        "x-kubernetes-group-version-kind": {
94308          "group": "rbac.authorization.k8s.io",
94309          "kind": "ClusterRole",
94310          "version": "v1alpha1"
94311        }
94312      },
94313      "parameters": [
94314        {
94315          "description": "If 'true', then the output is pretty printed.",
94316          "in": "query",
94317          "name": "pretty",
94318          "type": "string",
94319          "uniqueItems": true
94320        }
94321      ],
94322      "post": {
94323        "consumes": [
94324          "*/*"
94325        ],
94326        "description": "create a ClusterRole",
94327        "operationId": "createRbacAuthorizationV1alpha1ClusterRole",
94328        "parameters": [
94329          {
94330            "in": "body",
94331            "name": "body",
94332            "required": true,
94333            "schema": {
94334              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94335            }
94336          },
94337          {
94338            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94339            "in": "query",
94340            "name": "dryRun",
94341            "type": "string",
94342            "uniqueItems": true
94343          },
94344          {
94345            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94346            "in": "query",
94347            "name": "fieldManager",
94348            "type": "string",
94349            "uniqueItems": true
94350          }
94351        ],
94352        "produces": [
94353          "application/json",
94354          "application/yaml",
94355          "application/vnd.kubernetes.protobuf"
94356        ],
94357        "responses": {
94358          "200": {
94359            "description": "OK",
94360            "schema": {
94361              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94362            }
94363          },
94364          "201": {
94365            "description": "Created",
94366            "schema": {
94367              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94368            }
94369          },
94370          "202": {
94371            "description": "Accepted",
94372            "schema": {
94373              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94374            }
94375          },
94376          "401": {
94377            "description": "Unauthorized"
94378          }
94379        },
94380        "schemes": [
94381          "https"
94382        ],
94383        "tags": [
94384          "rbacAuthorization_v1alpha1"
94385        ],
94386        "x-kubernetes-action": "post",
94387        "x-kubernetes-group-version-kind": {
94388          "group": "rbac.authorization.k8s.io",
94389          "kind": "ClusterRole",
94390          "version": "v1alpha1"
94391        }
94392      }
94393    },
94394    "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}": {
94395      "delete": {
94396        "consumes": [
94397          "*/*"
94398        ],
94399        "description": "delete a ClusterRole",
94400        "operationId": "deleteRbacAuthorizationV1alpha1ClusterRole",
94401        "parameters": [
94402          {
94403            "in": "body",
94404            "name": "body",
94405            "schema": {
94406              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94407            }
94408          },
94409          {
94410            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94411            "in": "query",
94412            "name": "dryRun",
94413            "type": "string",
94414            "uniqueItems": true
94415          },
94416          {
94417            "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.",
94418            "in": "query",
94419            "name": "gracePeriodSeconds",
94420            "type": "integer",
94421            "uniqueItems": true
94422          },
94423          {
94424            "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.",
94425            "in": "query",
94426            "name": "orphanDependents",
94427            "type": "boolean",
94428            "uniqueItems": true
94429          },
94430          {
94431            "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.",
94432            "in": "query",
94433            "name": "propagationPolicy",
94434            "type": "string",
94435            "uniqueItems": true
94436          }
94437        ],
94438        "produces": [
94439          "application/json",
94440          "application/yaml",
94441          "application/vnd.kubernetes.protobuf"
94442        ],
94443        "responses": {
94444          "200": {
94445            "description": "OK",
94446            "schema": {
94447              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94448            }
94449          },
94450          "202": {
94451            "description": "Accepted",
94452            "schema": {
94453              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94454            }
94455          },
94456          "401": {
94457            "description": "Unauthorized"
94458          }
94459        },
94460        "schemes": [
94461          "https"
94462        ],
94463        "tags": [
94464          "rbacAuthorization_v1alpha1"
94465        ],
94466        "x-kubernetes-action": "delete",
94467        "x-kubernetes-group-version-kind": {
94468          "group": "rbac.authorization.k8s.io",
94469          "kind": "ClusterRole",
94470          "version": "v1alpha1"
94471        }
94472      },
94473      "get": {
94474        "consumes": [
94475          "*/*"
94476        ],
94477        "description": "read the specified ClusterRole",
94478        "operationId": "readRbacAuthorizationV1alpha1ClusterRole",
94479        "produces": [
94480          "application/json",
94481          "application/yaml",
94482          "application/vnd.kubernetes.protobuf"
94483        ],
94484        "responses": {
94485          "200": {
94486            "description": "OK",
94487            "schema": {
94488              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94489            }
94490          },
94491          "401": {
94492            "description": "Unauthorized"
94493          }
94494        },
94495        "schemes": [
94496          "https"
94497        ],
94498        "tags": [
94499          "rbacAuthorization_v1alpha1"
94500        ],
94501        "x-kubernetes-action": "get",
94502        "x-kubernetes-group-version-kind": {
94503          "group": "rbac.authorization.k8s.io",
94504          "kind": "ClusterRole",
94505          "version": "v1alpha1"
94506        }
94507      },
94508      "parameters": [
94509        {
94510          "description": "name of the ClusterRole",
94511          "in": "path",
94512          "name": "name",
94513          "required": true,
94514          "type": "string",
94515          "uniqueItems": true
94516        },
94517        {
94518          "description": "If 'true', then the output is pretty printed.",
94519          "in": "query",
94520          "name": "pretty",
94521          "type": "string",
94522          "uniqueItems": true
94523        }
94524      ],
94525      "patch": {
94526        "consumes": [
94527          "application/json-patch+json",
94528          "application/merge-patch+json",
94529          "application/strategic-merge-patch+json"
94530        ],
94531        "description": "partially update the specified ClusterRole",
94532        "operationId": "patchRbacAuthorizationV1alpha1ClusterRole",
94533        "parameters": [
94534          {
94535            "in": "body",
94536            "name": "body",
94537            "required": true,
94538            "schema": {
94539              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
94540            }
94541          },
94542          {
94543            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94544            "in": "query",
94545            "name": "dryRun",
94546            "type": "string",
94547            "uniqueItems": true
94548          },
94549          {
94550            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
94551            "in": "query",
94552            "name": "fieldManager",
94553            "type": "string",
94554            "uniqueItems": true
94555          },
94556          {
94557            "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.",
94558            "in": "query",
94559            "name": "force",
94560            "type": "boolean",
94561            "uniqueItems": true
94562          }
94563        ],
94564        "produces": [
94565          "application/json",
94566          "application/yaml",
94567          "application/vnd.kubernetes.protobuf"
94568        ],
94569        "responses": {
94570          "200": {
94571            "description": "OK",
94572            "schema": {
94573              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94574            }
94575          },
94576          "401": {
94577            "description": "Unauthorized"
94578          }
94579        },
94580        "schemes": [
94581          "https"
94582        ],
94583        "tags": [
94584          "rbacAuthorization_v1alpha1"
94585        ],
94586        "x-kubernetes-action": "patch",
94587        "x-kubernetes-group-version-kind": {
94588          "group": "rbac.authorization.k8s.io",
94589          "kind": "ClusterRole",
94590          "version": "v1alpha1"
94591        }
94592      },
94593      "put": {
94594        "consumes": [
94595          "*/*"
94596        ],
94597        "description": "replace the specified ClusterRole",
94598        "operationId": "replaceRbacAuthorizationV1alpha1ClusterRole",
94599        "parameters": [
94600          {
94601            "in": "body",
94602            "name": "body",
94603            "required": true,
94604            "schema": {
94605              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94606            }
94607          },
94608          {
94609            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94610            "in": "query",
94611            "name": "dryRun",
94612            "type": "string",
94613            "uniqueItems": true
94614          },
94615          {
94616            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94617            "in": "query",
94618            "name": "fieldManager",
94619            "type": "string",
94620            "uniqueItems": true
94621          }
94622        ],
94623        "produces": [
94624          "application/json",
94625          "application/yaml",
94626          "application/vnd.kubernetes.protobuf"
94627        ],
94628        "responses": {
94629          "200": {
94630            "description": "OK",
94631            "schema": {
94632              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94633            }
94634          },
94635          "201": {
94636            "description": "Created",
94637            "schema": {
94638              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole"
94639            }
94640          },
94641          "401": {
94642            "description": "Unauthorized"
94643          }
94644        },
94645        "schemes": [
94646          "https"
94647        ],
94648        "tags": [
94649          "rbacAuthorization_v1alpha1"
94650        ],
94651        "x-kubernetes-action": "put",
94652        "x-kubernetes-group-version-kind": {
94653          "group": "rbac.authorization.k8s.io",
94654          "kind": "ClusterRole",
94655          "version": "v1alpha1"
94656        }
94657      }
94658    },
94659    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings": {
94660      "delete": {
94661        "consumes": [
94662          "*/*"
94663        ],
94664        "description": "delete collection of RoleBinding",
94665        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding",
94666        "parameters": [
94667          {
94668            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
94669            "in": "query",
94670            "name": "allowWatchBookmarks",
94671            "type": "boolean",
94672            "uniqueItems": true
94673          },
94674          {
94675            "in": "body",
94676            "name": "body",
94677            "schema": {
94678              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94679            }
94680          },
94681          {
94682            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94683            "in": "query",
94684            "name": "continue",
94685            "type": "string",
94686            "uniqueItems": true
94687          },
94688          {
94689            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94690            "in": "query",
94691            "name": "dryRun",
94692            "type": "string",
94693            "uniqueItems": true
94694          },
94695          {
94696            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94697            "in": "query",
94698            "name": "fieldSelector",
94699            "type": "string",
94700            "uniqueItems": true
94701          },
94702          {
94703            "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.",
94704            "in": "query",
94705            "name": "gracePeriodSeconds",
94706            "type": "integer",
94707            "uniqueItems": true
94708          },
94709          {
94710            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94711            "in": "query",
94712            "name": "labelSelector",
94713            "type": "string",
94714            "uniqueItems": true
94715          },
94716          {
94717            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94718            "in": "query",
94719            "name": "limit",
94720            "type": "integer",
94721            "uniqueItems": true
94722          },
94723          {
94724            "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.",
94725            "in": "query",
94726            "name": "orphanDependents",
94727            "type": "boolean",
94728            "uniqueItems": true
94729          },
94730          {
94731            "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.",
94732            "in": "query",
94733            "name": "propagationPolicy",
94734            "type": "string",
94735            "uniqueItems": true
94736          },
94737          {
94738            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
94739            "in": "query",
94740            "name": "resourceVersion",
94741            "type": "string",
94742            "uniqueItems": true
94743          },
94744          {
94745            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94746            "in": "query",
94747            "name": "timeoutSeconds",
94748            "type": "integer",
94749            "uniqueItems": true
94750          },
94751          {
94752            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94753            "in": "query",
94754            "name": "watch",
94755            "type": "boolean",
94756            "uniqueItems": true
94757          }
94758        ],
94759        "produces": [
94760          "application/json",
94761          "application/yaml",
94762          "application/vnd.kubernetes.protobuf"
94763        ],
94764        "responses": {
94765          "200": {
94766            "description": "OK",
94767            "schema": {
94768              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
94769            }
94770          },
94771          "401": {
94772            "description": "Unauthorized"
94773          }
94774        },
94775        "schemes": [
94776          "https"
94777        ],
94778        "tags": [
94779          "rbacAuthorization_v1alpha1"
94780        ],
94781        "x-kubernetes-action": "deletecollection",
94782        "x-kubernetes-group-version-kind": {
94783          "group": "rbac.authorization.k8s.io",
94784          "kind": "RoleBinding",
94785          "version": "v1alpha1"
94786        }
94787      },
94788      "get": {
94789        "consumes": [
94790          "*/*"
94791        ],
94792        "description": "list or watch objects of kind RoleBinding",
94793        "operationId": "listRbacAuthorizationV1alpha1NamespacedRoleBinding",
94794        "parameters": [
94795          {
94796            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
94797            "in": "query",
94798            "name": "allowWatchBookmarks",
94799            "type": "boolean",
94800            "uniqueItems": true
94801          },
94802          {
94803            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
94804            "in": "query",
94805            "name": "continue",
94806            "type": "string",
94807            "uniqueItems": true
94808          },
94809          {
94810            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
94811            "in": "query",
94812            "name": "fieldSelector",
94813            "type": "string",
94814            "uniqueItems": true
94815          },
94816          {
94817            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
94818            "in": "query",
94819            "name": "labelSelector",
94820            "type": "string",
94821            "uniqueItems": true
94822          },
94823          {
94824            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
94825            "in": "query",
94826            "name": "limit",
94827            "type": "integer",
94828            "uniqueItems": true
94829          },
94830          {
94831            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
94832            "in": "query",
94833            "name": "resourceVersion",
94834            "type": "string",
94835            "uniqueItems": true
94836          },
94837          {
94838            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
94839            "in": "query",
94840            "name": "timeoutSeconds",
94841            "type": "integer",
94842            "uniqueItems": true
94843          },
94844          {
94845            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
94846            "in": "query",
94847            "name": "watch",
94848            "type": "boolean",
94849            "uniqueItems": true
94850          }
94851        ],
94852        "produces": [
94853          "application/json",
94854          "application/yaml",
94855          "application/vnd.kubernetes.protobuf",
94856          "application/json;stream=watch",
94857          "application/vnd.kubernetes.protobuf;stream=watch"
94858        ],
94859        "responses": {
94860          "200": {
94861            "description": "OK",
94862            "schema": {
94863              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
94864            }
94865          },
94866          "401": {
94867            "description": "Unauthorized"
94868          }
94869        },
94870        "schemes": [
94871          "https"
94872        ],
94873        "tags": [
94874          "rbacAuthorization_v1alpha1"
94875        ],
94876        "x-kubernetes-action": "list",
94877        "x-kubernetes-group-version-kind": {
94878          "group": "rbac.authorization.k8s.io",
94879          "kind": "RoleBinding",
94880          "version": "v1alpha1"
94881        }
94882      },
94883      "parameters": [
94884        {
94885          "description": "object name and auth scope, such as for teams and projects",
94886          "in": "path",
94887          "name": "namespace",
94888          "required": true,
94889          "type": "string",
94890          "uniqueItems": true
94891        },
94892        {
94893          "description": "If 'true', then the output is pretty printed.",
94894          "in": "query",
94895          "name": "pretty",
94896          "type": "string",
94897          "uniqueItems": true
94898        }
94899      ],
94900      "post": {
94901        "consumes": [
94902          "*/*"
94903        ],
94904        "description": "create a RoleBinding",
94905        "operationId": "createRbacAuthorizationV1alpha1NamespacedRoleBinding",
94906        "parameters": [
94907          {
94908            "in": "body",
94909            "name": "body",
94910            "required": true,
94911            "schema": {
94912              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
94913            }
94914          },
94915          {
94916            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94917            "in": "query",
94918            "name": "dryRun",
94919            "type": "string",
94920            "uniqueItems": true
94921          },
94922          {
94923            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
94924            "in": "query",
94925            "name": "fieldManager",
94926            "type": "string",
94927            "uniqueItems": true
94928          }
94929        ],
94930        "produces": [
94931          "application/json",
94932          "application/yaml",
94933          "application/vnd.kubernetes.protobuf"
94934        ],
94935        "responses": {
94936          "200": {
94937            "description": "OK",
94938            "schema": {
94939              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
94940            }
94941          },
94942          "201": {
94943            "description": "Created",
94944            "schema": {
94945              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
94946            }
94947          },
94948          "202": {
94949            "description": "Accepted",
94950            "schema": {
94951              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
94952            }
94953          },
94954          "401": {
94955            "description": "Unauthorized"
94956          }
94957        },
94958        "schemes": [
94959          "https"
94960        ],
94961        "tags": [
94962          "rbacAuthorization_v1alpha1"
94963        ],
94964        "x-kubernetes-action": "post",
94965        "x-kubernetes-group-version-kind": {
94966          "group": "rbac.authorization.k8s.io",
94967          "kind": "RoleBinding",
94968          "version": "v1alpha1"
94969        }
94970      }
94971    },
94972    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}": {
94973      "delete": {
94974        "consumes": [
94975          "*/*"
94976        ],
94977        "description": "delete a RoleBinding",
94978        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRoleBinding",
94979        "parameters": [
94980          {
94981            "in": "body",
94982            "name": "body",
94983            "schema": {
94984              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
94985            }
94986          },
94987          {
94988            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
94989            "in": "query",
94990            "name": "dryRun",
94991            "type": "string",
94992            "uniqueItems": true
94993          },
94994          {
94995            "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.",
94996            "in": "query",
94997            "name": "gracePeriodSeconds",
94998            "type": "integer",
94999            "uniqueItems": true
95000          },
95001          {
95002            "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.",
95003            "in": "query",
95004            "name": "orphanDependents",
95005            "type": "boolean",
95006            "uniqueItems": true
95007          },
95008          {
95009            "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.",
95010            "in": "query",
95011            "name": "propagationPolicy",
95012            "type": "string",
95013            "uniqueItems": true
95014          }
95015        ],
95016        "produces": [
95017          "application/json",
95018          "application/yaml",
95019          "application/vnd.kubernetes.protobuf"
95020        ],
95021        "responses": {
95022          "200": {
95023            "description": "OK",
95024            "schema": {
95025              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95026            }
95027          },
95028          "202": {
95029            "description": "Accepted",
95030            "schema": {
95031              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95032            }
95033          },
95034          "401": {
95035            "description": "Unauthorized"
95036          }
95037        },
95038        "schemes": [
95039          "https"
95040        ],
95041        "tags": [
95042          "rbacAuthorization_v1alpha1"
95043        ],
95044        "x-kubernetes-action": "delete",
95045        "x-kubernetes-group-version-kind": {
95046          "group": "rbac.authorization.k8s.io",
95047          "kind": "RoleBinding",
95048          "version": "v1alpha1"
95049        }
95050      },
95051      "get": {
95052        "consumes": [
95053          "*/*"
95054        ],
95055        "description": "read the specified RoleBinding",
95056        "operationId": "readRbacAuthorizationV1alpha1NamespacedRoleBinding",
95057        "produces": [
95058          "application/json",
95059          "application/yaml",
95060          "application/vnd.kubernetes.protobuf"
95061        ],
95062        "responses": {
95063          "200": {
95064            "description": "OK",
95065            "schema": {
95066              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
95067            }
95068          },
95069          "401": {
95070            "description": "Unauthorized"
95071          }
95072        },
95073        "schemes": [
95074          "https"
95075        ],
95076        "tags": [
95077          "rbacAuthorization_v1alpha1"
95078        ],
95079        "x-kubernetes-action": "get",
95080        "x-kubernetes-group-version-kind": {
95081          "group": "rbac.authorization.k8s.io",
95082          "kind": "RoleBinding",
95083          "version": "v1alpha1"
95084        }
95085      },
95086      "parameters": [
95087        {
95088          "description": "name of the RoleBinding",
95089          "in": "path",
95090          "name": "name",
95091          "required": true,
95092          "type": "string",
95093          "uniqueItems": true
95094        },
95095        {
95096          "description": "object name and auth scope, such as for teams and projects",
95097          "in": "path",
95098          "name": "namespace",
95099          "required": true,
95100          "type": "string",
95101          "uniqueItems": true
95102        },
95103        {
95104          "description": "If 'true', then the output is pretty printed.",
95105          "in": "query",
95106          "name": "pretty",
95107          "type": "string",
95108          "uniqueItems": true
95109        }
95110      ],
95111      "patch": {
95112        "consumes": [
95113          "application/json-patch+json",
95114          "application/merge-patch+json",
95115          "application/strategic-merge-patch+json"
95116        ],
95117        "description": "partially update the specified RoleBinding",
95118        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRoleBinding",
95119        "parameters": [
95120          {
95121            "in": "body",
95122            "name": "body",
95123            "required": true,
95124            "schema": {
95125              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
95126            }
95127          },
95128          {
95129            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95130            "in": "query",
95131            "name": "dryRun",
95132            "type": "string",
95133            "uniqueItems": true
95134          },
95135          {
95136            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
95137            "in": "query",
95138            "name": "fieldManager",
95139            "type": "string",
95140            "uniqueItems": true
95141          },
95142          {
95143            "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.",
95144            "in": "query",
95145            "name": "force",
95146            "type": "boolean",
95147            "uniqueItems": true
95148          }
95149        ],
95150        "produces": [
95151          "application/json",
95152          "application/yaml",
95153          "application/vnd.kubernetes.protobuf"
95154        ],
95155        "responses": {
95156          "200": {
95157            "description": "OK",
95158            "schema": {
95159              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
95160            }
95161          },
95162          "401": {
95163            "description": "Unauthorized"
95164          }
95165        },
95166        "schemes": [
95167          "https"
95168        ],
95169        "tags": [
95170          "rbacAuthorization_v1alpha1"
95171        ],
95172        "x-kubernetes-action": "patch",
95173        "x-kubernetes-group-version-kind": {
95174          "group": "rbac.authorization.k8s.io",
95175          "kind": "RoleBinding",
95176          "version": "v1alpha1"
95177        }
95178      },
95179      "put": {
95180        "consumes": [
95181          "*/*"
95182        ],
95183        "description": "replace the specified RoleBinding",
95184        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRoleBinding",
95185        "parameters": [
95186          {
95187            "in": "body",
95188            "name": "body",
95189            "required": true,
95190            "schema": {
95191              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
95192            }
95193          },
95194          {
95195            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95196            "in": "query",
95197            "name": "dryRun",
95198            "type": "string",
95199            "uniqueItems": true
95200          },
95201          {
95202            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95203            "in": "query",
95204            "name": "fieldManager",
95205            "type": "string",
95206            "uniqueItems": true
95207          }
95208        ],
95209        "produces": [
95210          "application/json",
95211          "application/yaml",
95212          "application/vnd.kubernetes.protobuf"
95213        ],
95214        "responses": {
95215          "200": {
95216            "description": "OK",
95217            "schema": {
95218              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
95219            }
95220          },
95221          "201": {
95222            "description": "Created",
95223            "schema": {
95224              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding"
95225            }
95226          },
95227          "401": {
95228            "description": "Unauthorized"
95229          }
95230        },
95231        "schemes": [
95232          "https"
95233        ],
95234        "tags": [
95235          "rbacAuthorization_v1alpha1"
95236        ],
95237        "x-kubernetes-action": "put",
95238        "x-kubernetes-group-version-kind": {
95239          "group": "rbac.authorization.k8s.io",
95240          "kind": "RoleBinding",
95241          "version": "v1alpha1"
95242        }
95243      }
95244    },
95245    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles": {
95246      "delete": {
95247        "consumes": [
95248          "*/*"
95249        ],
95250        "description": "delete collection of Role",
95251        "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRole",
95252        "parameters": [
95253          {
95254            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
95255            "in": "query",
95256            "name": "allowWatchBookmarks",
95257            "type": "boolean",
95258            "uniqueItems": true
95259          },
95260          {
95261            "in": "body",
95262            "name": "body",
95263            "schema": {
95264              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95265            }
95266          },
95267          {
95268            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95269            "in": "query",
95270            "name": "continue",
95271            "type": "string",
95272            "uniqueItems": true
95273          },
95274          {
95275            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95276            "in": "query",
95277            "name": "dryRun",
95278            "type": "string",
95279            "uniqueItems": true
95280          },
95281          {
95282            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95283            "in": "query",
95284            "name": "fieldSelector",
95285            "type": "string",
95286            "uniqueItems": true
95287          },
95288          {
95289            "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.",
95290            "in": "query",
95291            "name": "gracePeriodSeconds",
95292            "type": "integer",
95293            "uniqueItems": true
95294          },
95295          {
95296            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95297            "in": "query",
95298            "name": "labelSelector",
95299            "type": "string",
95300            "uniqueItems": true
95301          },
95302          {
95303            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95304            "in": "query",
95305            "name": "limit",
95306            "type": "integer",
95307            "uniqueItems": true
95308          },
95309          {
95310            "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.",
95311            "in": "query",
95312            "name": "orphanDependents",
95313            "type": "boolean",
95314            "uniqueItems": true
95315          },
95316          {
95317            "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.",
95318            "in": "query",
95319            "name": "propagationPolicy",
95320            "type": "string",
95321            "uniqueItems": true
95322          },
95323          {
95324            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
95325            "in": "query",
95326            "name": "resourceVersion",
95327            "type": "string",
95328            "uniqueItems": true
95329          },
95330          {
95331            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95332            "in": "query",
95333            "name": "timeoutSeconds",
95334            "type": "integer",
95335            "uniqueItems": true
95336          },
95337          {
95338            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
95339            "in": "query",
95340            "name": "watch",
95341            "type": "boolean",
95342            "uniqueItems": true
95343          }
95344        ],
95345        "produces": [
95346          "application/json",
95347          "application/yaml",
95348          "application/vnd.kubernetes.protobuf"
95349        ],
95350        "responses": {
95351          "200": {
95352            "description": "OK",
95353            "schema": {
95354              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95355            }
95356          },
95357          "401": {
95358            "description": "Unauthorized"
95359          }
95360        },
95361        "schemes": [
95362          "https"
95363        ],
95364        "tags": [
95365          "rbacAuthorization_v1alpha1"
95366        ],
95367        "x-kubernetes-action": "deletecollection",
95368        "x-kubernetes-group-version-kind": {
95369          "group": "rbac.authorization.k8s.io",
95370          "kind": "Role",
95371          "version": "v1alpha1"
95372        }
95373      },
95374      "get": {
95375        "consumes": [
95376          "*/*"
95377        ],
95378        "description": "list or watch objects of kind Role",
95379        "operationId": "listRbacAuthorizationV1alpha1NamespacedRole",
95380        "parameters": [
95381          {
95382            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
95383            "in": "query",
95384            "name": "allowWatchBookmarks",
95385            "type": "boolean",
95386            "uniqueItems": true
95387          },
95388          {
95389            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95390            "in": "query",
95391            "name": "continue",
95392            "type": "string",
95393            "uniqueItems": true
95394          },
95395          {
95396            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95397            "in": "query",
95398            "name": "fieldSelector",
95399            "type": "string",
95400            "uniqueItems": true
95401          },
95402          {
95403            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95404            "in": "query",
95405            "name": "labelSelector",
95406            "type": "string",
95407            "uniqueItems": true
95408          },
95409          {
95410            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95411            "in": "query",
95412            "name": "limit",
95413            "type": "integer",
95414            "uniqueItems": true
95415          },
95416          {
95417            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
95418            "in": "query",
95419            "name": "resourceVersion",
95420            "type": "string",
95421            "uniqueItems": true
95422          },
95423          {
95424            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95425            "in": "query",
95426            "name": "timeoutSeconds",
95427            "type": "integer",
95428            "uniqueItems": true
95429          },
95430          {
95431            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
95432            "in": "query",
95433            "name": "watch",
95434            "type": "boolean",
95435            "uniqueItems": true
95436          }
95437        ],
95438        "produces": [
95439          "application/json",
95440          "application/yaml",
95441          "application/vnd.kubernetes.protobuf",
95442          "application/json;stream=watch",
95443          "application/vnd.kubernetes.protobuf;stream=watch"
95444        ],
95445        "responses": {
95446          "200": {
95447            "description": "OK",
95448            "schema": {
95449              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
95450            }
95451          },
95452          "401": {
95453            "description": "Unauthorized"
95454          }
95455        },
95456        "schemes": [
95457          "https"
95458        ],
95459        "tags": [
95460          "rbacAuthorization_v1alpha1"
95461        ],
95462        "x-kubernetes-action": "list",
95463        "x-kubernetes-group-version-kind": {
95464          "group": "rbac.authorization.k8s.io",
95465          "kind": "Role",
95466          "version": "v1alpha1"
95467        }
95468      },
95469      "parameters": [
95470        {
95471          "description": "object name and auth scope, such as for teams and projects",
95472          "in": "path",
95473          "name": "namespace",
95474          "required": true,
95475          "type": "string",
95476          "uniqueItems": true
95477        },
95478        {
95479          "description": "If 'true', then the output is pretty printed.",
95480          "in": "query",
95481          "name": "pretty",
95482          "type": "string",
95483          "uniqueItems": true
95484        }
95485      ],
95486      "post": {
95487        "consumes": [
95488          "*/*"
95489        ],
95490        "description": "create a Role",
95491        "operationId": "createRbacAuthorizationV1alpha1NamespacedRole",
95492        "parameters": [
95493          {
95494            "in": "body",
95495            "name": "body",
95496            "required": true,
95497            "schema": {
95498              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95499            }
95500          },
95501          {
95502            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95503            "in": "query",
95504            "name": "dryRun",
95505            "type": "string",
95506            "uniqueItems": true
95507          },
95508          {
95509            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95510            "in": "query",
95511            "name": "fieldManager",
95512            "type": "string",
95513            "uniqueItems": true
95514          }
95515        ],
95516        "produces": [
95517          "application/json",
95518          "application/yaml",
95519          "application/vnd.kubernetes.protobuf"
95520        ],
95521        "responses": {
95522          "200": {
95523            "description": "OK",
95524            "schema": {
95525              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95526            }
95527          },
95528          "201": {
95529            "description": "Created",
95530            "schema": {
95531              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95532            }
95533          },
95534          "202": {
95535            "description": "Accepted",
95536            "schema": {
95537              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95538            }
95539          },
95540          "401": {
95541            "description": "Unauthorized"
95542          }
95543        },
95544        "schemes": [
95545          "https"
95546        ],
95547        "tags": [
95548          "rbacAuthorization_v1alpha1"
95549        ],
95550        "x-kubernetes-action": "post",
95551        "x-kubernetes-group-version-kind": {
95552          "group": "rbac.authorization.k8s.io",
95553          "kind": "Role",
95554          "version": "v1alpha1"
95555        }
95556      }
95557    },
95558    "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}": {
95559      "delete": {
95560        "consumes": [
95561          "*/*"
95562        ],
95563        "description": "delete a Role",
95564        "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRole",
95565        "parameters": [
95566          {
95567            "in": "body",
95568            "name": "body",
95569            "schema": {
95570              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
95571            }
95572          },
95573          {
95574            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95575            "in": "query",
95576            "name": "dryRun",
95577            "type": "string",
95578            "uniqueItems": true
95579          },
95580          {
95581            "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.",
95582            "in": "query",
95583            "name": "gracePeriodSeconds",
95584            "type": "integer",
95585            "uniqueItems": true
95586          },
95587          {
95588            "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.",
95589            "in": "query",
95590            "name": "orphanDependents",
95591            "type": "boolean",
95592            "uniqueItems": true
95593          },
95594          {
95595            "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.",
95596            "in": "query",
95597            "name": "propagationPolicy",
95598            "type": "string",
95599            "uniqueItems": true
95600          }
95601        ],
95602        "produces": [
95603          "application/json",
95604          "application/yaml",
95605          "application/vnd.kubernetes.protobuf"
95606        ],
95607        "responses": {
95608          "200": {
95609            "description": "OK",
95610            "schema": {
95611              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95612            }
95613          },
95614          "202": {
95615            "description": "Accepted",
95616            "schema": {
95617              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
95618            }
95619          },
95620          "401": {
95621            "description": "Unauthorized"
95622          }
95623        },
95624        "schemes": [
95625          "https"
95626        ],
95627        "tags": [
95628          "rbacAuthorization_v1alpha1"
95629        ],
95630        "x-kubernetes-action": "delete",
95631        "x-kubernetes-group-version-kind": {
95632          "group": "rbac.authorization.k8s.io",
95633          "kind": "Role",
95634          "version": "v1alpha1"
95635        }
95636      },
95637      "get": {
95638        "consumes": [
95639          "*/*"
95640        ],
95641        "description": "read the specified Role",
95642        "operationId": "readRbacAuthorizationV1alpha1NamespacedRole",
95643        "produces": [
95644          "application/json",
95645          "application/yaml",
95646          "application/vnd.kubernetes.protobuf"
95647        ],
95648        "responses": {
95649          "200": {
95650            "description": "OK",
95651            "schema": {
95652              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95653            }
95654          },
95655          "401": {
95656            "description": "Unauthorized"
95657          }
95658        },
95659        "schemes": [
95660          "https"
95661        ],
95662        "tags": [
95663          "rbacAuthorization_v1alpha1"
95664        ],
95665        "x-kubernetes-action": "get",
95666        "x-kubernetes-group-version-kind": {
95667          "group": "rbac.authorization.k8s.io",
95668          "kind": "Role",
95669          "version": "v1alpha1"
95670        }
95671      },
95672      "parameters": [
95673        {
95674          "description": "name of the Role",
95675          "in": "path",
95676          "name": "name",
95677          "required": true,
95678          "type": "string",
95679          "uniqueItems": true
95680        },
95681        {
95682          "description": "object name and auth scope, such as for teams and projects",
95683          "in": "path",
95684          "name": "namespace",
95685          "required": true,
95686          "type": "string",
95687          "uniqueItems": true
95688        },
95689        {
95690          "description": "If 'true', then the output is pretty printed.",
95691          "in": "query",
95692          "name": "pretty",
95693          "type": "string",
95694          "uniqueItems": true
95695        }
95696      ],
95697      "patch": {
95698        "consumes": [
95699          "application/json-patch+json",
95700          "application/merge-patch+json",
95701          "application/strategic-merge-patch+json"
95702        ],
95703        "description": "partially update the specified Role",
95704        "operationId": "patchRbacAuthorizationV1alpha1NamespacedRole",
95705        "parameters": [
95706          {
95707            "in": "body",
95708            "name": "body",
95709            "required": true,
95710            "schema": {
95711              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
95712            }
95713          },
95714          {
95715            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95716            "in": "query",
95717            "name": "dryRun",
95718            "type": "string",
95719            "uniqueItems": true
95720          },
95721          {
95722            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
95723            "in": "query",
95724            "name": "fieldManager",
95725            "type": "string",
95726            "uniqueItems": true
95727          },
95728          {
95729            "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.",
95730            "in": "query",
95731            "name": "force",
95732            "type": "boolean",
95733            "uniqueItems": true
95734          }
95735        ],
95736        "produces": [
95737          "application/json",
95738          "application/yaml",
95739          "application/vnd.kubernetes.protobuf"
95740        ],
95741        "responses": {
95742          "200": {
95743            "description": "OK",
95744            "schema": {
95745              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95746            }
95747          },
95748          "401": {
95749            "description": "Unauthorized"
95750          }
95751        },
95752        "schemes": [
95753          "https"
95754        ],
95755        "tags": [
95756          "rbacAuthorization_v1alpha1"
95757        ],
95758        "x-kubernetes-action": "patch",
95759        "x-kubernetes-group-version-kind": {
95760          "group": "rbac.authorization.k8s.io",
95761          "kind": "Role",
95762          "version": "v1alpha1"
95763        }
95764      },
95765      "put": {
95766        "consumes": [
95767          "*/*"
95768        ],
95769        "description": "replace the specified Role",
95770        "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRole",
95771        "parameters": [
95772          {
95773            "in": "body",
95774            "name": "body",
95775            "required": true,
95776            "schema": {
95777              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95778            }
95779          },
95780          {
95781            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
95782            "in": "query",
95783            "name": "dryRun",
95784            "type": "string",
95785            "uniqueItems": true
95786          },
95787          {
95788            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
95789            "in": "query",
95790            "name": "fieldManager",
95791            "type": "string",
95792            "uniqueItems": true
95793          }
95794        ],
95795        "produces": [
95796          "application/json",
95797          "application/yaml",
95798          "application/vnd.kubernetes.protobuf"
95799        ],
95800        "responses": {
95801          "200": {
95802            "description": "OK",
95803            "schema": {
95804              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95805            }
95806          },
95807          "201": {
95808            "description": "Created",
95809            "schema": {
95810              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role"
95811            }
95812          },
95813          "401": {
95814            "description": "Unauthorized"
95815          }
95816        },
95817        "schemes": [
95818          "https"
95819        ],
95820        "tags": [
95821          "rbacAuthorization_v1alpha1"
95822        ],
95823        "x-kubernetes-action": "put",
95824        "x-kubernetes-group-version-kind": {
95825          "group": "rbac.authorization.k8s.io",
95826          "kind": "Role",
95827          "version": "v1alpha1"
95828        }
95829      }
95830    },
95831    "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings": {
95832      "get": {
95833        "consumes": [
95834          "*/*"
95835        ],
95836        "description": "list or watch objects of kind RoleBinding",
95837        "operationId": "listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces",
95838        "produces": [
95839          "application/json",
95840          "application/yaml",
95841          "application/vnd.kubernetes.protobuf",
95842          "application/json;stream=watch",
95843          "application/vnd.kubernetes.protobuf;stream=watch"
95844        ],
95845        "responses": {
95846          "200": {
95847            "description": "OK",
95848            "schema": {
95849              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBindingList"
95850            }
95851          },
95852          "401": {
95853            "description": "Unauthorized"
95854          }
95855        },
95856        "schemes": [
95857          "https"
95858        ],
95859        "tags": [
95860          "rbacAuthorization_v1alpha1"
95861        ],
95862        "x-kubernetes-action": "list",
95863        "x-kubernetes-group-version-kind": {
95864          "group": "rbac.authorization.k8s.io",
95865          "kind": "RoleBinding",
95866          "version": "v1alpha1"
95867        }
95868      },
95869      "parameters": [
95870        {
95871          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
95872          "in": "query",
95873          "name": "allowWatchBookmarks",
95874          "type": "boolean",
95875          "uniqueItems": true
95876        },
95877        {
95878          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95879          "in": "query",
95880          "name": "continue",
95881          "type": "string",
95882          "uniqueItems": true
95883        },
95884        {
95885          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95886          "in": "query",
95887          "name": "fieldSelector",
95888          "type": "string",
95889          "uniqueItems": true
95890        },
95891        {
95892          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95893          "in": "query",
95894          "name": "labelSelector",
95895          "type": "string",
95896          "uniqueItems": true
95897        },
95898        {
95899          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
95900          "in": "query",
95901          "name": "limit",
95902          "type": "integer",
95903          "uniqueItems": true
95904        },
95905        {
95906          "description": "If 'true', then the output is pretty printed.",
95907          "in": "query",
95908          "name": "pretty",
95909          "type": "string",
95910          "uniqueItems": true
95911        },
95912        {
95913          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
95914          "in": "query",
95915          "name": "resourceVersion",
95916          "type": "string",
95917          "uniqueItems": true
95918        },
95919        {
95920          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
95921          "in": "query",
95922          "name": "timeoutSeconds",
95923          "type": "integer",
95924          "uniqueItems": true
95925        },
95926        {
95927          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
95928          "in": "query",
95929          "name": "watch",
95930          "type": "boolean",
95931          "uniqueItems": true
95932        }
95933      ]
95934    },
95935    "/apis/rbac.authorization.k8s.io/v1alpha1/roles": {
95936      "get": {
95937        "consumes": [
95938          "*/*"
95939        ],
95940        "description": "list or watch objects of kind Role",
95941        "operationId": "listRbacAuthorizationV1alpha1RoleForAllNamespaces",
95942        "produces": [
95943          "application/json",
95944          "application/yaml",
95945          "application/vnd.kubernetes.protobuf",
95946          "application/json;stream=watch",
95947          "application/vnd.kubernetes.protobuf;stream=watch"
95948        ],
95949        "responses": {
95950          "200": {
95951            "description": "OK",
95952            "schema": {
95953              "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleList"
95954            }
95955          },
95956          "401": {
95957            "description": "Unauthorized"
95958          }
95959        },
95960        "schemes": [
95961          "https"
95962        ],
95963        "tags": [
95964          "rbacAuthorization_v1alpha1"
95965        ],
95966        "x-kubernetes-action": "list",
95967        "x-kubernetes-group-version-kind": {
95968          "group": "rbac.authorization.k8s.io",
95969          "kind": "Role",
95970          "version": "v1alpha1"
95971        }
95972      },
95973      "parameters": [
95974        {
95975          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
95976          "in": "query",
95977          "name": "allowWatchBookmarks",
95978          "type": "boolean",
95979          "uniqueItems": true
95980        },
95981        {
95982          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
95983          "in": "query",
95984          "name": "continue",
95985          "type": "string",
95986          "uniqueItems": true
95987        },
95988        {
95989          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
95990          "in": "query",
95991          "name": "fieldSelector",
95992          "type": "string",
95993          "uniqueItems": true
95994        },
95995        {
95996          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
95997          "in": "query",
95998          "name": "labelSelector",
95999          "type": "string",
96000          "uniqueItems": true
96001        },
96002        {
96003          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96004          "in": "query",
96005          "name": "limit",
96006          "type": "integer",
96007          "uniqueItems": true
96008        },
96009        {
96010          "description": "If 'true', then the output is pretty printed.",
96011          "in": "query",
96012          "name": "pretty",
96013          "type": "string",
96014          "uniqueItems": true
96015        },
96016        {
96017          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96018          "in": "query",
96019          "name": "resourceVersion",
96020          "type": "string",
96021          "uniqueItems": true
96022        },
96023        {
96024          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96025          "in": "query",
96026          "name": "timeoutSeconds",
96027          "type": "integer",
96028          "uniqueItems": true
96029        },
96030        {
96031          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96032          "in": "query",
96033          "name": "watch",
96034          "type": "boolean",
96035          "uniqueItems": true
96036        }
96037      ]
96038    },
96039    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings": {
96040      "get": {
96041        "consumes": [
96042          "*/*"
96043        ],
96044        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
96045        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBindingList",
96046        "produces": [
96047          "application/json",
96048          "application/yaml",
96049          "application/vnd.kubernetes.protobuf",
96050          "application/json;stream=watch",
96051          "application/vnd.kubernetes.protobuf;stream=watch"
96052        ],
96053        "responses": {
96054          "200": {
96055            "description": "OK",
96056            "schema": {
96057              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96058            }
96059          },
96060          "401": {
96061            "description": "Unauthorized"
96062          }
96063        },
96064        "schemes": [
96065          "https"
96066        ],
96067        "tags": [
96068          "rbacAuthorization_v1alpha1"
96069        ],
96070        "x-kubernetes-action": "watchlist",
96071        "x-kubernetes-group-version-kind": {
96072          "group": "rbac.authorization.k8s.io",
96073          "kind": "ClusterRoleBinding",
96074          "version": "v1alpha1"
96075        }
96076      },
96077      "parameters": [
96078        {
96079          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96080          "in": "query",
96081          "name": "allowWatchBookmarks",
96082          "type": "boolean",
96083          "uniqueItems": true
96084        },
96085        {
96086          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96087          "in": "query",
96088          "name": "continue",
96089          "type": "string",
96090          "uniqueItems": true
96091        },
96092        {
96093          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96094          "in": "query",
96095          "name": "fieldSelector",
96096          "type": "string",
96097          "uniqueItems": true
96098        },
96099        {
96100          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96101          "in": "query",
96102          "name": "labelSelector",
96103          "type": "string",
96104          "uniqueItems": true
96105        },
96106        {
96107          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96108          "in": "query",
96109          "name": "limit",
96110          "type": "integer",
96111          "uniqueItems": true
96112        },
96113        {
96114          "description": "If 'true', then the output is pretty printed.",
96115          "in": "query",
96116          "name": "pretty",
96117          "type": "string",
96118          "uniqueItems": true
96119        },
96120        {
96121          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96122          "in": "query",
96123          "name": "resourceVersion",
96124          "type": "string",
96125          "uniqueItems": true
96126        },
96127        {
96128          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96129          "in": "query",
96130          "name": "timeoutSeconds",
96131          "type": "integer",
96132          "uniqueItems": true
96133        },
96134        {
96135          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96136          "in": "query",
96137          "name": "watch",
96138          "type": "boolean",
96139          "uniqueItems": true
96140        }
96141      ]
96142    },
96143    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}": {
96144      "get": {
96145        "consumes": [
96146          "*/*"
96147        ],
96148        "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.",
96149        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBinding",
96150        "produces": [
96151          "application/json",
96152          "application/yaml",
96153          "application/vnd.kubernetes.protobuf",
96154          "application/json;stream=watch",
96155          "application/vnd.kubernetes.protobuf;stream=watch"
96156        ],
96157        "responses": {
96158          "200": {
96159            "description": "OK",
96160            "schema": {
96161              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96162            }
96163          },
96164          "401": {
96165            "description": "Unauthorized"
96166          }
96167        },
96168        "schemes": [
96169          "https"
96170        ],
96171        "tags": [
96172          "rbacAuthorization_v1alpha1"
96173        ],
96174        "x-kubernetes-action": "watch",
96175        "x-kubernetes-group-version-kind": {
96176          "group": "rbac.authorization.k8s.io",
96177          "kind": "ClusterRoleBinding",
96178          "version": "v1alpha1"
96179        }
96180      },
96181      "parameters": [
96182        {
96183          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96184          "in": "query",
96185          "name": "allowWatchBookmarks",
96186          "type": "boolean",
96187          "uniqueItems": true
96188        },
96189        {
96190          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96191          "in": "query",
96192          "name": "continue",
96193          "type": "string",
96194          "uniqueItems": true
96195        },
96196        {
96197          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96198          "in": "query",
96199          "name": "fieldSelector",
96200          "type": "string",
96201          "uniqueItems": true
96202        },
96203        {
96204          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96205          "in": "query",
96206          "name": "labelSelector",
96207          "type": "string",
96208          "uniqueItems": true
96209        },
96210        {
96211          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96212          "in": "query",
96213          "name": "limit",
96214          "type": "integer",
96215          "uniqueItems": true
96216        },
96217        {
96218          "description": "name of the ClusterRoleBinding",
96219          "in": "path",
96220          "name": "name",
96221          "required": true,
96222          "type": "string",
96223          "uniqueItems": true
96224        },
96225        {
96226          "description": "If 'true', then the output is pretty printed.",
96227          "in": "query",
96228          "name": "pretty",
96229          "type": "string",
96230          "uniqueItems": true
96231        },
96232        {
96233          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96234          "in": "query",
96235          "name": "resourceVersion",
96236          "type": "string",
96237          "uniqueItems": true
96238        },
96239        {
96240          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96241          "in": "query",
96242          "name": "timeoutSeconds",
96243          "type": "integer",
96244          "uniqueItems": true
96245        },
96246        {
96247          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96248          "in": "query",
96249          "name": "watch",
96250          "type": "boolean",
96251          "uniqueItems": true
96252        }
96253      ]
96254    },
96255    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles": {
96256      "get": {
96257        "consumes": [
96258          "*/*"
96259        ],
96260        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
96261        "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleList",
96262        "produces": [
96263          "application/json",
96264          "application/yaml",
96265          "application/vnd.kubernetes.protobuf",
96266          "application/json;stream=watch",
96267          "application/vnd.kubernetes.protobuf;stream=watch"
96268        ],
96269        "responses": {
96270          "200": {
96271            "description": "OK",
96272            "schema": {
96273              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96274            }
96275          },
96276          "401": {
96277            "description": "Unauthorized"
96278          }
96279        },
96280        "schemes": [
96281          "https"
96282        ],
96283        "tags": [
96284          "rbacAuthorization_v1alpha1"
96285        ],
96286        "x-kubernetes-action": "watchlist",
96287        "x-kubernetes-group-version-kind": {
96288          "group": "rbac.authorization.k8s.io",
96289          "kind": "ClusterRole",
96290          "version": "v1alpha1"
96291        }
96292      },
96293      "parameters": [
96294        {
96295          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96296          "in": "query",
96297          "name": "allowWatchBookmarks",
96298          "type": "boolean",
96299          "uniqueItems": true
96300        },
96301        {
96302          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96303          "in": "query",
96304          "name": "continue",
96305          "type": "string",
96306          "uniqueItems": true
96307        },
96308        {
96309          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96310          "in": "query",
96311          "name": "fieldSelector",
96312          "type": "string",
96313          "uniqueItems": true
96314        },
96315        {
96316          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96317          "in": "query",
96318          "name": "labelSelector",
96319          "type": "string",
96320          "uniqueItems": true
96321        },
96322        {
96323          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96324          "in": "query",
96325          "name": "limit",
96326          "type": "integer",
96327          "uniqueItems": true
96328        },
96329        {
96330          "description": "If 'true', then the output is pretty printed.",
96331          "in": "query",
96332          "name": "pretty",
96333          "type": "string",
96334          "uniqueItems": true
96335        },
96336        {
96337          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96338          "in": "query",
96339          "name": "resourceVersion",
96340          "type": "string",
96341          "uniqueItems": true
96342        },
96343        {
96344          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96345          "in": "query",
96346          "name": "timeoutSeconds",
96347          "type": "integer",
96348          "uniqueItems": true
96349        },
96350        {
96351          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96352          "in": "query",
96353          "name": "watch",
96354          "type": "boolean",
96355          "uniqueItems": true
96356        }
96357      ]
96358    },
96359    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}": {
96360      "get": {
96361        "consumes": [
96362          "*/*"
96363        ],
96364        "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.",
96365        "operationId": "watchRbacAuthorizationV1alpha1ClusterRole",
96366        "produces": [
96367          "application/json",
96368          "application/yaml",
96369          "application/vnd.kubernetes.protobuf",
96370          "application/json;stream=watch",
96371          "application/vnd.kubernetes.protobuf;stream=watch"
96372        ],
96373        "responses": {
96374          "200": {
96375            "description": "OK",
96376            "schema": {
96377              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96378            }
96379          },
96380          "401": {
96381            "description": "Unauthorized"
96382          }
96383        },
96384        "schemes": [
96385          "https"
96386        ],
96387        "tags": [
96388          "rbacAuthorization_v1alpha1"
96389        ],
96390        "x-kubernetes-action": "watch",
96391        "x-kubernetes-group-version-kind": {
96392          "group": "rbac.authorization.k8s.io",
96393          "kind": "ClusterRole",
96394          "version": "v1alpha1"
96395        }
96396      },
96397      "parameters": [
96398        {
96399          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96400          "in": "query",
96401          "name": "allowWatchBookmarks",
96402          "type": "boolean",
96403          "uniqueItems": true
96404        },
96405        {
96406          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96407          "in": "query",
96408          "name": "continue",
96409          "type": "string",
96410          "uniqueItems": true
96411        },
96412        {
96413          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96414          "in": "query",
96415          "name": "fieldSelector",
96416          "type": "string",
96417          "uniqueItems": true
96418        },
96419        {
96420          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96421          "in": "query",
96422          "name": "labelSelector",
96423          "type": "string",
96424          "uniqueItems": true
96425        },
96426        {
96427          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96428          "in": "query",
96429          "name": "limit",
96430          "type": "integer",
96431          "uniqueItems": true
96432        },
96433        {
96434          "description": "name of the ClusterRole",
96435          "in": "path",
96436          "name": "name",
96437          "required": true,
96438          "type": "string",
96439          "uniqueItems": true
96440        },
96441        {
96442          "description": "If 'true', then the output is pretty printed.",
96443          "in": "query",
96444          "name": "pretty",
96445          "type": "string",
96446          "uniqueItems": true
96447        },
96448        {
96449          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96450          "in": "query",
96451          "name": "resourceVersion",
96452          "type": "string",
96453          "uniqueItems": true
96454        },
96455        {
96456          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96457          "in": "query",
96458          "name": "timeoutSeconds",
96459          "type": "integer",
96460          "uniqueItems": true
96461        },
96462        {
96463          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96464          "in": "query",
96465          "name": "watch",
96466          "type": "boolean",
96467          "uniqueItems": true
96468        }
96469      ]
96470    },
96471    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings": {
96472      "get": {
96473        "consumes": [
96474          "*/*"
96475        ],
96476        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
96477        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBindingList",
96478        "produces": [
96479          "application/json",
96480          "application/yaml",
96481          "application/vnd.kubernetes.protobuf",
96482          "application/json;stream=watch",
96483          "application/vnd.kubernetes.protobuf;stream=watch"
96484        ],
96485        "responses": {
96486          "200": {
96487            "description": "OK",
96488            "schema": {
96489              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96490            }
96491          },
96492          "401": {
96493            "description": "Unauthorized"
96494          }
96495        },
96496        "schemes": [
96497          "https"
96498        ],
96499        "tags": [
96500          "rbacAuthorization_v1alpha1"
96501        ],
96502        "x-kubernetes-action": "watchlist",
96503        "x-kubernetes-group-version-kind": {
96504          "group": "rbac.authorization.k8s.io",
96505          "kind": "RoleBinding",
96506          "version": "v1alpha1"
96507        }
96508      },
96509      "parameters": [
96510        {
96511          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96512          "in": "query",
96513          "name": "allowWatchBookmarks",
96514          "type": "boolean",
96515          "uniqueItems": true
96516        },
96517        {
96518          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96519          "in": "query",
96520          "name": "continue",
96521          "type": "string",
96522          "uniqueItems": true
96523        },
96524        {
96525          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96526          "in": "query",
96527          "name": "fieldSelector",
96528          "type": "string",
96529          "uniqueItems": true
96530        },
96531        {
96532          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96533          "in": "query",
96534          "name": "labelSelector",
96535          "type": "string",
96536          "uniqueItems": true
96537        },
96538        {
96539          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96540          "in": "query",
96541          "name": "limit",
96542          "type": "integer",
96543          "uniqueItems": true
96544        },
96545        {
96546          "description": "object name and auth scope, such as for teams and projects",
96547          "in": "path",
96548          "name": "namespace",
96549          "required": true,
96550          "type": "string",
96551          "uniqueItems": true
96552        },
96553        {
96554          "description": "If 'true', then the output is pretty printed.",
96555          "in": "query",
96556          "name": "pretty",
96557          "type": "string",
96558          "uniqueItems": true
96559        },
96560        {
96561          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96562          "in": "query",
96563          "name": "resourceVersion",
96564          "type": "string",
96565          "uniqueItems": true
96566        },
96567        {
96568          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96569          "in": "query",
96570          "name": "timeoutSeconds",
96571          "type": "integer",
96572          "uniqueItems": true
96573        },
96574        {
96575          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96576          "in": "query",
96577          "name": "watch",
96578          "type": "boolean",
96579          "uniqueItems": true
96580        }
96581      ]
96582    },
96583    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}": {
96584      "get": {
96585        "consumes": [
96586          "*/*"
96587        ],
96588        "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.",
96589        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBinding",
96590        "produces": [
96591          "application/json",
96592          "application/yaml",
96593          "application/vnd.kubernetes.protobuf",
96594          "application/json;stream=watch",
96595          "application/vnd.kubernetes.protobuf;stream=watch"
96596        ],
96597        "responses": {
96598          "200": {
96599            "description": "OK",
96600            "schema": {
96601              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96602            }
96603          },
96604          "401": {
96605            "description": "Unauthorized"
96606          }
96607        },
96608        "schemes": [
96609          "https"
96610        ],
96611        "tags": [
96612          "rbacAuthorization_v1alpha1"
96613        ],
96614        "x-kubernetes-action": "watch",
96615        "x-kubernetes-group-version-kind": {
96616          "group": "rbac.authorization.k8s.io",
96617          "kind": "RoleBinding",
96618          "version": "v1alpha1"
96619        }
96620      },
96621      "parameters": [
96622        {
96623          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96624          "in": "query",
96625          "name": "allowWatchBookmarks",
96626          "type": "boolean",
96627          "uniqueItems": true
96628        },
96629        {
96630          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96631          "in": "query",
96632          "name": "continue",
96633          "type": "string",
96634          "uniqueItems": true
96635        },
96636        {
96637          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96638          "in": "query",
96639          "name": "fieldSelector",
96640          "type": "string",
96641          "uniqueItems": true
96642        },
96643        {
96644          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96645          "in": "query",
96646          "name": "labelSelector",
96647          "type": "string",
96648          "uniqueItems": true
96649        },
96650        {
96651          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96652          "in": "query",
96653          "name": "limit",
96654          "type": "integer",
96655          "uniqueItems": true
96656        },
96657        {
96658          "description": "name of the RoleBinding",
96659          "in": "path",
96660          "name": "name",
96661          "required": true,
96662          "type": "string",
96663          "uniqueItems": true
96664        },
96665        {
96666          "description": "object name and auth scope, such as for teams and projects",
96667          "in": "path",
96668          "name": "namespace",
96669          "required": true,
96670          "type": "string",
96671          "uniqueItems": true
96672        },
96673        {
96674          "description": "If 'true', then the output is pretty printed.",
96675          "in": "query",
96676          "name": "pretty",
96677          "type": "string",
96678          "uniqueItems": true
96679        },
96680        {
96681          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96682          "in": "query",
96683          "name": "resourceVersion",
96684          "type": "string",
96685          "uniqueItems": true
96686        },
96687        {
96688          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96689          "in": "query",
96690          "name": "timeoutSeconds",
96691          "type": "integer",
96692          "uniqueItems": true
96693        },
96694        {
96695          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96696          "in": "query",
96697          "name": "watch",
96698          "type": "boolean",
96699          "uniqueItems": true
96700        }
96701      ]
96702    },
96703    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles": {
96704      "get": {
96705        "consumes": [
96706          "*/*"
96707        ],
96708        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
96709        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleList",
96710        "produces": [
96711          "application/json",
96712          "application/yaml",
96713          "application/vnd.kubernetes.protobuf",
96714          "application/json;stream=watch",
96715          "application/vnd.kubernetes.protobuf;stream=watch"
96716        ],
96717        "responses": {
96718          "200": {
96719            "description": "OK",
96720            "schema": {
96721              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96722            }
96723          },
96724          "401": {
96725            "description": "Unauthorized"
96726          }
96727        },
96728        "schemes": [
96729          "https"
96730        ],
96731        "tags": [
96732          "rbacAuthorization_v1alpha1"
96733        ],
96734        "x-kubernetes-action": "watchlist",
96735        "x-kubernetes-group-version-kind": {
96736          "group": "rbac.authorization.k8s.io",
96737          "kind": "Role",
96738          "version": "v1alpha1"
96739        }
96740      },
96741      "parameters": [
96742        {
96743          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96744          "in": "query",
96745          "name": "allowWatchBookmarks",
96746          "type": "boolean",
96747          "uniqueItems": true
96748        },
96749        {
96750          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96751          "in": "query",
96752          "name": "continue",
96753          "type": "string",
96754          "uniqueItems": true
96755        },
96756        {
96757          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96758          "in": "query",
96759          "name": "fieldSelector",
96760          "type": "string",
96761          "uniqueItems": true
96762        },
96763        {
96764          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96765          "in": "query",
96766          "name": "labelSelector",
96767          "type": "string",
96768          "uniqueItems": true
96769        },
96770        {
96771          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96772          "in": "query",
96773          "name": "limit",
96774          "type": "integer",
96775          "uniqueItems": true
96776        },
96777        {
96778          "description": "object name and auth scope, such as for teams and projects",
96779          "in": "path",
96780          "name": "namespace",
96781          "required": true,
96782          "type": "string",
96783          "uniqueItems": true
96784        },
96785        {
96786          "description": "If 'true', then the output is pretty printed.",
96787          "in": "query",
96788          "name": "pretty",
96789          "type": "string",
96790          "uniqueItems": true
96791        },
96792        {
96793          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96794          "in": "query",
96795          "name": "resourceVersion",
96796          "type": "string",
96797          "uniqueItems": true
96798        },
96799        {
96800          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96801          "in": "query",
96802          "name": "timeoutSeconds",
96803          "type": "integer",
96804          "uniqueItems": true
96805        },
96806        {
96807          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96808          "in": "query",
96809          "name": "watch",
96810          "type": "boolean",
96811          "uniqueItems": true
96812        }
96813      ]
96814    },
96815    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}": {
96816      "get": {
96817        "consumes": [
96818          "*/*"
96819        ],
96820        "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.",
96821        "operationId": "watchRbacAuthorizationV1alpha1NamespacedRole",
96822        "produces": [
96823          "application/json",
96824          "application/yaml",
96825          "application/vnd.kubernetes.protobuf",
96826          "application/json;stream=watch",
96827          "application/vnd.kubernetes.protobuf;stream=watch"
96828        ],
96829        "responses": {
96830          "200": {
96831            "description": "OK",
96832            "schema": {
96833              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96834            }
96835          },
96836          "401": {
96837            "description": "Unauthorized"
96838          }
96839        },
96840        "schemes": [
96841          "https"
96842        ],
96843        "tags": [
96844          "rbacAuthorization_v1alpha1"
96845        ],
96846        "x-kubernetes-action": "watch",
96847        "x-kubernetes-group-version-kind": {
96848          "group": "rbac.authorization.k8s.io",
96849          "kind": "Role",
96850          "version": "v1alpha1"
96851        }
96852      },
96853      "parameters": [
96854        {
96855          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96856          "in": "query",
96857          "name": "allowWatchBookmarks",
96858          "type": "boolean",
96859          "uniqueItems": true
96860        },
96861        {
96862          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96863          "in": "query",
96864          "name": "continue",
96865          "type": "string",
96866          "uniqueItems": true
96867        },
96868        {
96869          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96870          "in": "query",
96871          "name": "fieldSelector",
96872          "type": "string",
96873          "uniqueItems": true
96874        },
96875        {
96876          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96877          "in": "query",
96878          "name": "labelSelector",
96879          "type": "string",
96880          "uniqueItems": true
96881        },
96882        {
96883          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
96884          "in": "query",
96885          "name": "limit",
96886          "type": "integer",
96887          "uniqueItems": true
96888        },
96889        {
96890          "description": "name of the Role",
96891          "in": "path",
96892          "name": "name",
96893          "required": true,
96894          "type": "string",
96895          "uniqueItems": true
96896        },
96897        {
96898          "description": "object name and auth scope, such as for teams and projects",
96899          "in": "path",
96900          "name": "namespace",
96901          "required": true,
96902          "type": "string",
96903          "uniqueItems": true
96904        },
96905        {
96906          "description": "If 'true', then the output is pretty printed.",
96907          "in": "query",
96908          "name": "pretty",
96909          "type": "string",
96910          "uniqueItems": true
96911        },
96912        {
96913          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
96914          "in": "query",
96915          "name": "resourceVersion",
96916          "type": "string",
96917          "uniqueItems": true
96918        },
96919        {
96920          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
96921          "in": "query",
96922          "name": "timeoutSeconds",
96923          "type": "integer",
96924          "uniqueItems": true
96925        },
96926        {
96927          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
96928          "in": "query",
96929          "name": "watch",
96930          "type": "boolean",
96931          "uniqueItems": true
96932        }
96933      ]
96934    },
96935    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings": {
96936      "get": {
96937        "consumes": [
96938          "*/*"
96939        ],
96940        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
96941        "operationId": "watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces",
96942        "produces": [
96943          "application/json",
96944          "application/yaml",
96945          "application/vnd.kubernetes.protobuf",
96946          "application/json;stream=watch",
96947          "application/vnd.kubernetes.protobuf;stream=watch"
96948        ],
96949        "responses": {
96950          "200": {
96951            "description": "OK",
96952            "schema": {
96953              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
96954            }
96955          },
96956          "401": {
96957            "description": "Unauthorized"
96958          }
96959        },
96960        "schemes": [
96961          "https"
96962        ],
96963        "tags": [
96964          "rbacAuthorization_v1alpha1"
96965        ],
96966        "x-kubernetes-action": "watchlist",
96967        "x-kubernetes-group-version-kind": {
96968          "group": "rbac.authorization.k8s.io",
96969          "kind": "RoleBinding",
96970          "version": "v1alpha1"
96971        }
96972      },
96973      "parameters": [
96974        {
96975          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
96976          "in": "query",
96977          "name": "allowWatchBookmarks",
96978          "type": "boolean",
96979          "uniqueItems": true
96980        },
96981        {
96982          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
96983          "in": "query",
96984          "name": "continue",
96985          "type": "string",
96986          "uniqueItems": true
96987        },
96988        {
96989          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
96990          "in": "query",
96991          "name": "fieldSelector",
96992          "type": "string",
96993          "uniqueItems": true
96994        },
96995        {
96996          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
96997          "in": "query",
96998          "name": "labelSelector",
96999          "type": "string",
97000          "uniqueItems": true
97001        },
97002        {
97003          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97004          "in": "query",
97005          "name": "limit",
97006          "type": "integer",
97007          "uniqueItems": true
97008        },
97009        {
97010          "description": "If 'true', then the output is pretty printed.",
97011          "in": "query",
97012          "name": "pretty",
97013          "type": "string",
97014          "uniqueItems": true
97015        },
97016        {
97017          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
97018          "in": "query",
97019          "name": "resourceVersion",
97020          "type": "string",
97021          "uniqueItems": true
97022        },
97023        {
97024          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97025          "in": "query",
97026          "name": "timeoutSeconds",
97027          "type": "integer",
97028          "uniqueItems": true
97029        },
97030        {
97031          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97032          "in": "query",
97033          "name": "watch",
97034          "type": "boolean",
97035          "uniqueItems": true
97036        }
97037      ]
97038    },
97039    "/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles": {
97040      "get": {
97041        "consumes": [
97042          "*/*"
97043        ],
97044        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
97045        "operationId": "watchRbacAuthorizationV1alpha1RoleListForAllNamespaces",
97046        "produces": [
97047          "application/json",
97048          "application/yaml",
97049          "application/vnd.kubernetes.protobuf",
97050          "application/json;stream=watch",
97051          "application/vnd.kubernetes.protobuf;stream=watch"
97052        ],
97053        "responses": {
97054          "200": {
97055            "description": "OK",
97056            "schema": {
97057              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
97058            }
97059          },
97060          "401": {
97061            "description": "Unauthorized"
97062          }
97063        },
97064        "schemes": [
97065          "https"
97066        ],
97067        "tags": [
97068          "rbacAuthorization_v1alpha1"
97069        ],
97070        "x-kubernetes-action": "watchlist",
97071        "x-kubernetes-group-version-kind": {
97072          "group": "rbac.authorization.k8s.io",
97073          "kind": "Role",
97074          "version": "v1alpha1"
97075        }
97076      },
97077      "parameters": [
97078        {
97079          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
97080          "in": "query",
97081          "name": "allowWatchBookmarks",
97082          "type": "boolean",
97083          "uniqueItems": true
97084        },
97085        {
97086          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97087          "in": "query",
97088          "name": "continue",
97089          "type": "string",
97090          "uniqueItems": true
97091        },
97092        {
97093          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97094          "in": "query",
97095          "name": "fieldSelector",
97096          "type": "string",
97097          "uniqueItems": true
97098        },
97099        {
97100          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97101          "in": "query",
97102          "name": "labelSelector",
97103          "type": "string",
97104          "uniqueItems": true
97105        },
97106        {
97107          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97108          "in": "query",
97109          "name": "limit",
97110          "type": "integer",
97111          "uniqueItems": true
97112        },
97113        {
97114          "description": "If 'true', then the output is pretty printed.",
97115          "in": "query",
97116          "name": "pretty",
97117          "type": "string",
97118          "uniqueItems": true
97119        },
97120        {
97121          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
97122          "in": "query",
97123          "name": "resourceVersion",
97124          "type": "string",
97125          "uniqueItems": true
97126        },
97127        {
97128          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97129          "in": "query",
97130          "name": "timeoutSeconds",
97131          "type": "integer",
97132          "uniqueItems": true
97133        },
97134        {
97135          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97136          "in": "query",
97137          "name": "watch",
97138          "type": "boolean",
97139          "uniqueItems": true
97140        }
97141      ]
97142    },
97143    "/apis/rbac.authorization.k8s.io/v1beta1/": {
97144      "get": {
97145        "consumes": [
97146          "application/json",
97147          "application/yaml",
97148          "application/vnd.kubernetes.protobuf"
97149        ],
97150        "description": "get available resources",
97151        "operationId": "getRbacAuthorizationV1beta1APIResources",
97152        "produces": [
97153          "application/json",
97154          "application/yaml",
97155          "application/vnd.kubernetes.protobuf"
97156        ],
97157        "responses": {
97158          "200": {
97159            "description": "OK",
97160            "schema": {
97161              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
97162            }
97163          },
97164          "401": {
97165            "description": "Unauthorized"
97166          }
97167        },
97168        "schemes": [
97169          "https"
97170        ],
97171        "tags": [
97172          "rbacAuthorization_v1beta1"
97173        ]
97174      }
97175    },
97176    "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings": {
97177      "delete": {
97178        "consumes": [
97179          "*/*"
97180        ],
97181        "description": "delete collection of ClusterRoleBinding",
97182        "operationId": "deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding",
97183        "parameters": [
97184          {
97185            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
97186            "in": "query",
97187            "name": "allowWatchBookmarks",
97188            "type": "boolean",
97189            "uniqueItems": true
97190          },
97191          {
97192            "in": "body",
97193            "name": "body",
97194            "schema": {
97195              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
97196            }
97197          },
97198          {
97199            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97200            "in": "query",
97201            "name": "continue",
97202            "type": "string",
97203            "uniqueItems": true
97204          },
97205          {
97206            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97207            "in": "query",
97208            "name": "dryRun",
97209            "type": "string",
97210            "uniqueItems": true
97211          },
97212          {
97213            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97214            "in": "query",
97215            "name": "fieldSelector",
97216            "type": "string",
97217            "uniqueItems": true
97218          },
97219          {
97220            "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.",
97221            "in": "query",
97222            "name": "gracePeriodSeconds",
97223            "type": "integer",
97224            "uniqueItems": true
97225          },
97226          {
97227            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97228            "in": "query",
97229            "name": "labelSelector",
97230            "type": "string",
97231            "uniqueItems": true
97232          },
97233          {
97234            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97235            "in": "query",
97236            "name": "limit",
97237            "type": "integer",
97238            "uniqueItems": true
97239          },
97240          {
97241            "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.",
97242            "in": "query",
97243            "name": "orphanDependents",
97244            "type": "boolean",
97245            "uniqueItems": true
97246          },
97247          {
97248            "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.",
97249            "in": "query",
97250            "name": "propagationPolicy",
97251            "type": "string",
97252            "uniqueItems": true
97253          },
97254          {
97255            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
97256            "in": "query",
97257            "name": "resourceVersion",
97258            "type": "string",
97259            "uniqueItems": true
97260          },
97261          {
97262            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97263            "in": "query",
97264            "name": "timeoutSeconds",
97265            "type": "integer",
97266            "uniqueItems": true
97267          },
97268          {
97269            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97270            "in": "query",
97271            "name": "watch",
97272            "type": "boolean",
97273            "uniqueItems": true
97274          }
97275        ],
97276        "produces": [
97277          "application/json",
97278          "application/yaml",
97279          "application/vnd.kubernetes.protobuf"
97280        ],
97281        "responses": {
97282          "200": {
97283            "description": "OK",
97284            "schema": {
97285              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
97286            }
97287          },
97288          "401": {
97289            "description": "Unauthorized"
97290          }
97291        },
97292        "schemes": [
97293          "https"
97294        ],
97295        "tags": [
97296          "rbacAuthorization_v1beta1"
97297        ],
97298        "x-kubernetes-action": "deletecollection",
97299        "x-kubernetes-group-version-kind": {
97300          "group": "rbac.authorization.k8s.io",
97301          "kind": "ClusterRoleBinding",
97302          "version": "v1beta1"
97303        }
97304      },
97305      "get": {
97306        "consumes": [
97307          "*/*"
97308        ],
97309        "description": "list or watch objects of kind ClusterRoleBinding",
97310        "operationId": "listRbacAuthorizationV1beta1ClusterRoleBinding",
97311        "parameters": [
97312          {
97313            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
97314            "in": "query",
97315            "name": "allowWatchBookmarks",
97316            "type": "boolean",
97317            "uniqueItems": true
97318          },
97319          {
97320            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97321            "in": "query",
97322            "name": "continue",
97323            "type": "string",
97324            "uniqueItems": true
97325          },
97326          {
97327            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97328            "in": "query",
97329            "name": "fieldSelector",
97330            "type": "string",
97331            "uniqueItems": true
97332          },
97333          {
97334            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97335            "in": "query",
97336            "name": "labelSelector",
97337            "type": "string",
97338            "uniqueItems": true
97339          },
97340          {
97341            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97342            "in": "query",
97343            "name": "limit",
97344            "type": "integer",
97345            "uniqueItems": true
97346          },
97347          {
97348            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
97349            "in": "query",
97350            "name": "resourceVersion",
97351            "type": "string",
97352            "uniqueItems": true
97353          },
97354          {
97355            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97356            "in": "query",
97357            "name": "timeoutSeconds",
97358            "type": "integer",
97359            "uniqueItems": true
97360          },
97361          {
97362            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97363            "in": "query",
97364            "name": "watch",
97365            "type": "boolean",
97366            "uniqueItems": true
97367          }
97368        ],
97369        "produces": [
97370          "application/json",
97371          "application/yaml",
97372          "application/vnd.kubernetes.protobuf",
97373          "application/json;stream=watch",
97374          "application/vnd.kubernetes.protobuf;stream=watch"
97375        ],
97376        "responses": {
97377          "200": {
97378            "description": "OK",
97379            "schema": {
97380              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBindingList"
97381            }
97382          },
97383          "401": {
97384            "description": "Unauthorized"
97385          }
97386        },
97387        "schemes": [
97388          "https"
97389        ],
97390        "tags": [
97391          "rbacAuthorization_v1beta1"
97392        ],
97393        "x-kubernetes-action": "list",
97394        "x-kubernetes-group-version-kind": {
97395          "group": "rbac.authorization.k8s.io",
97396          "kind": "ClusterRoleBinding",
97397          "version": "v1beta1"
97398        }
97399      },
97400      "parameters": [
97401        {
97402          "description": "If 'true', then the output is pretty printed.",
97403          "in": "query",
97404          "name": "pretty",
97405          "type": "string",
97406          "uniqueItems": true
97407        }
97408      ],
97409      "post": {
97410        "consumes": [
97411          "*/*"
97412        ],
97413        "description": "create a ClusterRoleBinding",
97414        "operationId": "createRbacAuthorizationV1beta1ClusterRoleBinding",
97415        "parameters": [
97416          {
97417            "in": "body",
97418            "name": "body",
97419            "required": true,
97420            "schema": {
97421              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97422            }
97423          },
97424          {
97425            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97426            "in": "query",
97427            "name": "dryRun",
97428            "type": "string",
97429            "uniqueItems": true
97430          },
97431          {
97432            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
97433            "in": "query",
97434            "name": "fieldManager",
97435            "type": "string",
97436            "uniqueItems": true
97437          }
97438        ],
97439        "produces": [
97440          "application/json",
97441          "application/yaml",
97442          "application/vnd.kubernetes.protobuf"
97443        ],
97444        "responses": {
97445          "200": {
97446            "description": "OK",
97447            "schema": {
97448              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97449            }
97450          },
97451          "201": {
97452            "description": "Created",
97453            "schema": {
97454              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97455            }
97456          },
97457          "202": {
97458            "description": "Accepted",
97459            "schema": {
97460              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97461            }
97462          },
97463          "401": {
97464            "description": "Unauthorized"
97465          }
97466        },
97467        "schemes": [
97468          "https"
97469        ],
97470        "tags": [
97471          "rbacAuthorization_v1beta1"
97472        ],
97473        "x-kubernetes-action": "post",
97474        "x-kubernetes-group-version-kind": {
97475          "group": "rbac.authorization.k8s.io",
97476          "kind": "ClusterRoleBinding",
97477          "version": "v1beta1"
97478        }
97479      }
97480    },
97481    "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}": {
97482      "delete": {
97483        "consumes": [
97484          "*/*"
97485        ],
97486        "description": "delete a ClusterRoleBinding",
97487        "operationId": "deleteRbacAuthorizationV1beta1ClusterRoleBinding",
97488        "parameters": [
97489          {
97490            "in": "body",
97491            "name": "body",
97492            "schema": {
97493              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
97494            }
97495          },
97496          {
97497            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97498            "in": "query",
97499            "name": "dryRun",
97500            "type": "string",
97501            "uniqueItems": true
97502          },
97503          {
97504            "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.",
97505            "in": "query",
97506            "name": "gracePeriodSeconds",
97507            "type": "integer",
97508            "uniqueItems": true
97509          },
97510          {
97511            "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.",
97512            "in": "query",
97513            "name": "orphanDependents",
97514            "type": "boolean",
97515            "uniqueItems": true
97516          },
97517          {
97518            "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.",
97519            "in": "query",
97520            "name": "propagationPolicy",
97521            "type": "string",
97522            "uniqueItems": true
97523          }
97524        ],
97525        "produces": [
97526          "application/json",
97527          "application/yaml",
97528          "application/vnd.kubernetes.protobuf"
97529        ],
97530        "responses": {
97531          "200": {
97532            "description": "OK",
97533            "schema": {
97534              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
97535            }
97536          },
97537          "202": {
97538            "description": "Accepted",
97539            "schema": {
97540              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
97541            }
97542          },
97543          "401": {
97544            "description": "Unauthorized"
97545          }
97546        },
97547        "schemes": [
97548          "https"
97549        ],
97550        "tags": [
97551          "rbacAuthorization_v1beta1"
97552        ],
97553        "x-kubernetes-action": "delete",
97554        "x-kubernetes-group-version-kind": {
97555          "group": "rbac.authorization.k8s.io",
97556          "kind": "ClusterRoleBinding",
97557          "version": "v1beta1"
97558        }
97559      },
97560      "get": {
97561        "consumes": [
97562          "*/*"
97563        ],
97564        "description": "read the specified ClusterRoleBinding",
97565        "operationId": "readRbacAuthorizationV1beta1ClusterRoleBinding",
97566        "produces": [
97567          "application/json",
97568          "application/yaml",
97569          "application/vnd.kubernetes.protobuf"
97570        ],
97571        "responses": {
97572          "200": {
97573            "description": "OK",
97574            "schema": {
97575              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97576            }
97577          },
97578          "401": {
97579            "description": "Unauthorized"
97580          }
97581        },
97582        "schemes": [
97583          "https"
97584        ],
97585        "tags": [
97586          "rbacAuthorization_v1beta1"
97587        ],
97588        "x-kubernetes-action": "get",
97589        "x-kubernetes-group-version-kind": {
97590          "group": "rbac.authorization.k8s.io",
97591          "kind": "ClusterRoleBinding",
97592          "version": "v1beta1"
97593        }
97594      },
97595      "parameters": [
97596        {
97597          "description": "name of the ClusterRoleBinding",
97598          "in": "path",
97599          "name": "name",
97600          "required": true,
97601          "type": "string",
97602          "uniqueItems": true
97603        },
97604        {
97605          "description": "If 'true', then the output is pretty printed.",
97606          "in": "query",
97607          "name": "pretty",
97608          "type": "string",
97609          "uniqueItems": true
97610        }
97611      ],
97612      "patch": {
97613        "consumes": [
97614          "application/json-patch+json",
97615          "application/merge-patch+json",
97616          "application/strategic-merge-patch+json"
97617        ],
97618        "description": "partially update the specified ClusterRoleBinding",
97619        "operationId": "patchRbacAuthorizationV1beta1ClusterRoleBinding",
97620        "parameters": [
97621          {
97622            "in": "body",
97623            "name": "body",
97624            "required": true,
97625            "schema": {
97626              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
97627            }
97628          },
97629          {
97630            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97631            "in": "query",
97632            "name": "dryRun",
97633            "type": "string",
97634            "uniqueItems": true
97635          },
97636          {
97637            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
97638            "in": "query",
97639            "name": "fieldManager",
97640            "type": "string",
97641            "uniqueItems": true
97642          },
97643          {
97644            "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.",
97645            "in": "query",
97646            "name": "force",
97647            "type": "boolean",
97648            "uniqueItems": true
97649          }
97650        ],
97651        "produces": [
97652          "application/json",
97653          "application/yaml",
97654          "application/vnd.kubernetes.protobuf"
97655        ],
97656        "responses": {
97657          "200": {
97658            "description": "OK",
97659            "schema": {
97660              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97661            }
97662          },
97663          "401": {
97664            "description": "Unauthorized"
97665          }
97666        },
97667        "schemes": [
97668          "https"
97669        ],
97670        "tags": [
97671          "rbacAuthorization_v1beta1"
97672        ],
97673        "x-kubernetes-action": "patch",
97674        "x-kubernetes-group-version-kind": {
97675          "group": "rbac.authorization.k8s.io",
97676          "kind": "ClusterRoleBinding",
97677          "version": "v1beta1"
97678        }
97679      },
97680      "put": {
97681        "consumes": [
97682          "*/*"
97683        ],
97684        "description": "replace the specified ClusterRoleBinding",
97685        "operationId": "replaceRbacAuthorizationV1beta1ClusterRoleBinding",
97686        "parameters": [
97687          {
97688            "in": "body",
97689            "name": "body",
97690            "required": true,
97691            "schema": {
97692              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97693            }
97694          },
97695          {
97696            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97697            "in": "query",
97698            "name": "dryRun",
97699            "type": "string",
97700            "uniqueItems": true
97701          },
97702          {
97703            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
97704            "in": "query",
97705            "name": "fieldManager",
97706            "type": "string",
97707            "uniqueItems": true
97708          }
97709        ],
97710        "produces": [
97711          "application/json",
97712          "application/yaml",
97713          "application/vnd.kubernetes.protobuf"
97714        ],
97715        "responses": {
97716          "200": {
97717            "description": "OK",
97718            "schema": {
97719              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97720            }
97721          },
97722          "201": {
97723            "description": "Created",
97724            "schema": {
97725              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding"
97726            }
97727          },
97728          "401": {
97729            "description": "Unauthorized"
97730          }
97731        },
97732        "schemes": [
97733          "https"
97734        ],
97735        "tags": [
97736          "rbacAuthorization_v1beta1"
97737        ],
97738        "x-kubernetes-action": "put",
97739        "x-kubernetes-group-version-kind": {
97740          "group": "rbac.authorization.k8s.io",
97741          "kind": "ClusterRoleBinding",
97742          "version": "v1beta1"
97743        }
97744      }
97745    },
97746    "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles": {
97747      "delete": {
97748        "consumes": [
97749          "*/*"
97750        ],
97751        "description": "delete collection of ClusterRole",
97752        "operationId": "deleteRbacAuthorizationV1beta1CollectionClusterRole",
97753        "parameters": [
97754          {
97755            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
97756            "in": "query",
97757            "name": "allowWatchBookmarks",
97758            "type": "boolean",
97759            "uniqueItems": true
97760          },
97761          {
97762            "in": "body",
97763            "name": "body",
97764            "schema": {
97765              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
97766            }
97767          },
97768          {
97769            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97770            "in": "query",
97771            "name": "continue",
97772            "type": "string",
97773            "uniqueItems": true
97774          },
97775          {
97776            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97777            "in": "query",
97778            "name": "dryRun",
97779            "type": "string",
97780            "uniqueItems": true
97781          },
97782          {
97783            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97784            "in": "query",
97785            "name": "fieldSelector",
97786            "type": "string",
97787            "uniqueItems": true
97788          },
97789          {
97790            "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.",
97791            "in": "query",
97792            "name": "gracePeriodSeconds",
97793            "type": "integer",
97794            "uniqueItems": true
97795          },
97796          {
97797            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97798            "in": "query",
97799            "name": "labelSelector",
97800            "type": "string",
97801            "uniqueItems": true
97802          },
97803          {
97804            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97805            "in": "query",
97806            "name": "limit",
97807            "type": "integer",
97808            "uniqueItems": true
97809          },
97810          {
97811            "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.",
97812            "in": "query",
97813            "name": "orphanDependents",
97814            "type": "boolean",
97815            "uniqueItems": true
97816          },
97817          {
97818            "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.",
97819            "in": "query",
97820            "name": "propagationPolicy",
97821            "type": "string",
97822            "uniqueItems": true
97823          },
97824          {
97825            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
97826            "in": "query",
97827            "name": "resourceVersion",
97828            "type": "string",
97829            "uniqueItems": true
97830          },
97831          {
97832            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97833            "in": "query",
97834            "name": "timeoutSeconds",
97835            "type": "integer",
97836            "uniqueItems": true
97837          },
97838          {
97839            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97840            "in": "query",
97841            "name": "watch",
97842            "type": "boolean",
97843            "uniqueItems": true
97844          }
97845        ],
97846        "produces": [
97847          "application/json",
97848          "application/yaml",
97849          "application/vnd.kubernetes.protobuf"
97850        ],
97851        "responses": {
97852          "200": {
97853            "description": "OK",
97854            "schema": {
97855              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
97856            }
97857          },
97858          "401": {
97859            "description": "Unauthorized"
97860          }
97861        },
97862        "schemes": [
97863          "https"
97864        ],
97865        "tags": [
97866          "rbacAuthorization_v1beta1"
97867        ],
97868        "x-kubernetes-action": "deletecollection",
97869        "x-kubernetes-group-version-kind": {
97870          "group": "rbac.authorization.k8s.io",
97871          "kind": "ClusterRole",
97872          "version": "v1beta1"
97873        }
97874      },
97875      "get": {
97876        "consumes": [
97877          "*/*"
97878        ],
97879        "description": "list or watch objects of kind ClusterRole",
97880        "operationId": "listRbacAuthorizationV1beta1ClusterRole",
97881        "parameters": [
97882          {
97883            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
97884            "in": "query",
97885            "name": "allowWatchBookmarks",
97886            "type": "boolean",
97887            "uniqueItems": true
97888          },
97889          {
97890            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
97891            "in": "query",
97892            "name": "continue",
97893            "type": "string",
97894            "uniqueItems": true
97895          },
97896          {
97897            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
97898            "in": "query",
97899            "name": "fieldSelector",
97900            "type": "string",
97901            "uniqueItems": true
97902          },
97903          {
97904            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
97905            "in": "query",
97906            "name": "labelSelector",
97907            "type": "string",
97908            "uniqueItems": true
97909          },
97910          {
97911            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
97912            "in": "query",
97913            "name": "limit",
97914            "type": "integer",
97915            "uniqueItems": true
97916          },
97917          {
97918            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
97919            "in": "query",
97920            "name": "resourceVersion",
97921            "type": "string",
97922            "uniqueItems": true
97923          },
97924          {
97925            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
97926            "in": "query",
97927            "name": "timeoutSeconds",
97928            "type": "integer",
97929            "uniqueItems": true
97930          },
97931          {
97932            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
97933            "in": "query",
97934            "name": "watch",
97935            "type": "boolean",
97936            "uniqueItems": true
97937          }
97938        ],
97939        "produces": [
97940          "application/json",
97941          "application/yaml",
97942          "application/vnd.kubernetes.protobuf",
97943          "application/json;stream=watch",
97944          "application/vnd.kubernetes.protobuf;stream=watch"
97945        ],
97946        "responses": {
97947          "200": {
97948            "description": "OK",
97949            "schema": {
97950              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleList"
97951            }
97952          },
97953          "401": {
97954            "description": "Unauthorized"
97955          }
97956        },
97957        "schemes": [
97958          "https"
97959        ],
97960        "tags": [
97961          "rbacAuthorization_v1beta1"
97962        ],
97963        "x-kubernetes-action": "list",
97964        "x-kubernetes-group-version-kind": {
97965          "group": "rbac.authorization.k8s.io",
97966          "kind": "ClusterRole",
97967          "version": "v1beta1"
97968        }
97969      },
97970      "parameters": [
97971        {
97972          "description": "If 'true', then the output is pretty printed.",
97973          "in": "query",
97974          "name": "pretty",
97975          "type": "string",
97976          "uniqueItems": true
97977        }
97978      ],
97979      "post": {
97980        "consumes": [
97981          "*/*"
97982        ],
97983        "description": "create a ClusterRole",
97984        "operationId": "createRbacAuthorizationV1beta1ClusterRole",
97985        "parameters": [
97986          {
97987            "in": "body",
97988            "name": "body",
97989            "required": true,
97990            "schema": {
97991              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
97992            }
97993          },
97994          {
97995            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
97996            "in": "query",
97997            "name": "dryRun",
97998            "type": "string",
97999            "uniqueItems": true
98000          },
98001          {
98002            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98003            "in": "query",
98004            "name": "fieldManager",
98005            "type": "string",
98006            "uniqueItems": true
98007          }
98008        ],
98009        "produces": [
98010          "application/json",
98011          "application/yaml",
98012          "application/vnd.kubernetes.protobuf"
98013        ],
98014        "responses": {
98015          "200": {
98016            "description": "OK",
98017            "schema": {
98018              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98019            }
98020          },
98021          "201": {
98022            "description": "Created",
98023            "schema": {
98024              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98025            }
98026          },
98027          "202": {
98028            "description": "Accepted",
98029            "schema": {
98030              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98031            }
98032          },
98033          "401": {
98034            "description": "Unauthorized"
98035          }
98036        },
98037        "schemes": [
98038          "https"
98039        ],
98040        "tags": [
98041          "rbacAuthorization_v1beta1"
98042        ],
98043        "x-kubernetes-action": "post",
98044        "x-kubernetes-group-version-kind": {
98045          "group": "rbac.authorization.k8s.io",
98046          "kind": "ClusterRole",
98047          "version": "v1beta1"
98048        }
98049      }
98050    },
98051    "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}": {
98052      "delete": {
98053        "consumes": [
98054          "*/*"
98055        ],
98056        "description": "delete a ClusterRole",
98057        "operationId": "deleteRbacAuthorizationV1beta1ClusterRole",
98058        "parameters": [
98059          {
98060            "in": "body",
98061            "name": "body",
98062            "schema": {
98063              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98064            }
98065          },
98066          {
98067            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98068            "in": "query",
98069            "name": "dryRun",
98070            "type": "string",
98071            "uniqueItems": true
98072          },
98073          {
98074            "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.",
98075            "in": "query",
98076            "name": "gracePeriodSeconds",
98077            "type": "integer",
98078            "uniqueItems": true
98079          },
98080          {
98081            "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.",
98082            "in": "query",
98083            "name": "orphanDependents",
98084            "type": "boolean",
98085            "uniqueItems": true
98086          },
98087          {
98088            "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.",
98089            "in": "query",
98090            "name": "propagationPolicy",
98091            "type": "string",
98092            "uniqueItems": true
98093          }
98094        ],
98095        "produces": [
98096          "application/json",
98097          "application/yaml",
98098          "application/vnd.kubernetes.protobuf"
98099        ],
98100        "responses": {
98101          "200": {
98102            "description": "OK",
98103            "schema": {
98104              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98105            }
98106          },
98107          "202": {
98108            "description": "Accepted",
98109            "schema": {
98110              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98111            }
98112          },
98113          "401": {
98114            "description": "Unauthorized"
98115          }
98116        },
98117        "schemes": [
98118          "https"
98119        ],
98120        "tags": [
98121          "rbacAuthorization_v1beta1"
98122        ],
98123        "x-kubernetes-action": "delete",
98124        "x-kubernetes-group-version-kind": {
98125          "group": "rbac.authorization.k8s.io",
98126          "kind": "ClusterRole",
98127          "version": "v1beta1"
98128        }
98129      },
98130      "get": {
98131        "consumes": [
98132          "*/*"
98133        ],
98134        "description": "read the specified ClusterRole",
98135        "operationId": "readRbacAuthorizationV1beta1ClusterRole",
98136        "produces": [
98137          "application/json",
98138          "application/yaml",
98139          "application/vnd.kubernetes.protobuf"
98140        ],
98141        "responses": {
98142          "200": {
98143            "description": "OK",
98144            "schema": {
98145              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98146            }
98147          },
98148          "401": {
98149            "description": "Unauthorized"
98150          }
98151        },
98152        "schemes": [
98153          "https"
98154        ],
98155        "tags": [
98156          "rbacAuthorization_v1beta1"
98157        ],
98158        "x-kubernetes-action": "get",
98159        "x-kubernetes-group-version-kind": {
98160          "group": "rbac.authorization.k8s.io",
98161          "kind": "ClusterRole",
98162          "version": "v1beta1"
98163        }
98164      },
98165      "parameters": [
98166        {
98167          "description": "name of the ClusterRole",
98168          "in": "path",
98169          "name": "name",
98170          "required": true,
98171          "type": "string",
98172          "uniqueItems": true
98173        },
98174        {
98175          "description": "If 'true', then the output is pretty printed.",
98176          "in": "query",
98177          "name": "pretty",
98178          "type": "string",
98179          "uniqueItems": true
98180        }
98181      ],
98182      "patch": {
98183        "consumes": [
98184          "application/json-patch+json",
98185          "application/merge-patch+json",
98186          "application/strategic-merge-patch+json"
98187        ],
98188        "description": "partially update the specified ClusterRole",
98189        "operationId": "patchRbacAuthorizationV1beta1ClusterRole",
98190        "parameters": [
98191          {
98192            "in": "body",
98193            "name": "body",
98194            "required": true,
98195            "schema": {
98196              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
98197            }
98198          },
98199          {
98200            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98201            "in": "query",
98202            "name": "dryRun",
98203            "type": "string",
98204            "uniqueItems": true
98205          },
98206          {
98207            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
98208            "in": "query",
98209            "name": "fieldManager",
98210            "type": "string",
98211            "uniqueItems": true
98212          },
98213          {
98214            "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.",
98215            "in": "query",
98216            "name": "force",
98217            "type": "boolean",
98218            "uniqueItems": true
98219          }
98220        ],
98221        "produces": [
98222          "application/json",
98223          "application/yaml",
98224          "application/vnd.kubernetes.protobuf"
98225        ],
98226        "responses": {
98227          "200": {
98228            "description": "OK",
98229            "schema": {
98230              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98231            }
98232          },
98233          "401": {
98234            "description": "Unauthorized"
98235          }
98236        },
98237        "schemes": [
98238          "https"
98239        ],
98240        "tags": [
98241          "rbacAuthorization_v1beta1"
98242        ],
98243        "x-kubernetes-action": "patch",
98244        "x-kubernetes-group-version-kind": {
98245          "group": "rbac.authorization.k8s.io",
98246          "kind": "ClusterRole",
98247          "version": "v1beta1"
98248        }
98249      },
98250      "put": {
98251        "consumes": [
98252          "*/*"
98253        ],
98254        "description": "replace the specified ClusterRole",
98255        "operationId": "replaceRbacAuthorizationV1beta1ClusterRole",
98256        "parameters": [
98257          {
98258            "in": "body",
98259            "name": "body",
98260            "required": true,
98261            "schema": {
98262              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98263            }
98264          },
98265          {
98266            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98267            "in": "query",
98268            "name": "dryRun",
98269            "type": "string",
98270            "uniqueItems": true
98271          },
98272          {
98273            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98274            "in": "query",
98275            "name": "fieldManager",
98276            "type": "string",
98277            "uniqueItems": true
98278          }
98279        ],
98280        "produces": [
98281          "application/json",
98282          "application/yaml",
98283          "application/vnd.kubernetes.protobuf"
98284        ],
98285        "responses": {
98286          "200": {
98287            "description": "OK",
98288            "schema": {
98289              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98290            }
98291          },
98292          "201": {
98293            "description": "Created",
98294            "schema": {
98295              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole"
98296            }
98297          },
98298          "401": {
98299            "description": "Unauthorized"
98300          }
98301        },
98302        "schemes": [
98303          "https"
98304        ],
98305        "tags": [
98306          "rbacAuthorization_v1beta1"
98307        ],
98308        "x-kubernetes-action": "put",
98309        "x-kubernetes-group-version-kind": {
98310          "group": "rbac.authorization.k8s.io",
98311          "kind": "ClusterRole",
98312          "version": "v1beta1"
98313        }
98314      }
98315    },
98316    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings": {
98317      "delete": {
98318        "consumes": [
98319          "*/*"
98320        ],
98321        "description": "delete collection of RoleBinding",
98322        "operationId": "deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding",
98323        "parameters": [
98324          {
98325            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
98326            "in": "query",
98327            "name": "allowWatchBookmarks",
98328            "type": "boolean",
98329            "uniqueItems": true
98330          },
98331          {
98332            "in": "body",
98333            "name": "body",
98334            "schema": {
98335              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98336            }
98337          },
98338          {
98339            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98340            "in": "query",
98341            "name": "continue",
98342            "type": "string",
98343            "uniqueItems": true
98344          },
98345          {
98346            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98347            "in": "query",
98348            "name": "dryRun",
98349            "type": "string",
98350            "uniqueItems": true
98351          },
98352          {
98353            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98354            "in": "query",
98355            "name": "fieldSelector",
98356            "type": "string",
98357            "uniqueItems": true
98358          },
98359          {
98360            "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.",
98361            "in": "query",
98362            "name": "gracePeriodSeconds",
98363            "type": "integer",
98364            "uniqueItems": true
98365          },
98366          {
98367            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98368            "in": "query",
98369            "name": "labelSelector",
98370            "type": "string",
98371            "uniqueItems": true
98372          },
98373          {
98374            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98375            "in": "query",
98376            "name": "limit",
98377            "type": "integer",
98378            "uniqueItems": true
98379          },
98380          {
98381            "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.",
98382            "in": "query",
98383            "name": "orphanDependents",
98384            "type": "boolean",
98385            "uniqueItems": true
98386          },
98387          {
98388            "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.",
98389            "in": "query",
98390            "name": "propagationPolicy",
98391            "type": "string",
98392            "uniqueItems": true
98393          },
98394          {
98395            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
98396            "in": "query",
98397            "name": "resourceVersion",
98398            "type": "string",
98399            "uniqueItems": true
98400          },
98401          {
98402            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98403            "in": "query",
98404            "name": "timeoutSeconds",
98405            "type": "integer",
98406            "uniqueItems": true
98407          },
98408          {
98409            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98410            "in": "query",
98411            "name": "watch",
98412            "type": "boolean",
98413            "uniqueItems": true
98414          }
98415        ],
98416        "produces": [
98417          "application/json",
98418          "application/yaml",
98419          "application/vnd.kubernetes.protobuf"
98420        ],
98421        "responses": {
98422          "200": {
98423            "description": "OK",
98424            "schema": {
98425              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98426            }
98427          },
98428          "401": {
98429            "description": "Unauthorized"
98430          }
98431        },
98432        "schemes": [
98433          "https"
98434        ],
98435        "tags": [
98436          "rbacAuthorization_v1beta1"
98437        ],
98438        "x-kubernetes-action": "deletecollection",
98439        "x-kubernetes-group-version-kind": {
98440          "group": "rbac.authorization.k8s.io",
98441          "kind": "RoleBinding",
98442          "version": "v1beta1"
98443        }
98444      },
98445      "get": {
98446        "consumes": [
98447          "*/*"
98448        ],
98449        "description": "list or watch objects of kind RoleBinding",
98450        "operationId": "listRbacAuthorizationV1beta1NamespacedRoleBinding",
98451        "parameters": [
98452          {
98453            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
98454            "in": "query",
98455            "name": "allowWatchBookmarks",
98456            "type": "boolean",
98457            "uniqueItems": true
98458          },
98459          {
98460            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98461            "in": "query",
98462            "name": "continue",
98463            "type": "string",
98464            "uniqueItems": true
98465          },
98466          {
98467            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98468            "in": "query",
98469            "name": "fieldSelector",
98470            "type": "string",
98471            "uniqueItems": true
98472          },
98473          {
98474            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98475            "in": "query",
98476            "name": "labelSelector",
98477            "type": "string",
98478            "uniqueItems": true
98479          },
98480          {
98481            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98482            "in": "query",
98483            "name": "limit",
98484            "type": "integer",
98485            "uniqueItems": true
98486          },
98487          {
98488            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
98489            "in": "query",
98490            "name": "resourceVersion",
98491            "type": "string",
98492            "uniqueItems": true
98493          },
98494          {
98495            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98496            "in": "query",
98497            "name": "timeoutSeconds",
98498            "type": "integer",
98499            "uniqueItems": true
98500          },
98501          {
98502            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98503            "in": "query",
98504            "name": "watch",
98505            "type": "boolean",
98506            "uniqueItems": true
98507          }
98508        ],
98509        "produces": [
98510          "application/json",
98511          "application/yaml",
98512          "application/vnd.kubernetes.protobuf",
98513          "application/json;stream=watch",
98514          "application/vnd.kubernetes.protobuf;stream=watch"
98515        ],
98516        "responses": {
98517          "200": {
98518            "description": "OK",
98519            "schema": {
98520              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList"
98521            }
98522          },
98523          "401": {
98524            "description": "Unauthorized"
98525          }
98526        },
98527        "schemes": [
98528          "https"
98529        ],
98530        "tags": [
98531          "rbacAuthorization_v1beta1"
98532        ],
98533        "x-kubernetes-action": "list",
98534        "x-kubernetes-group-version-kind": {
98535          "group": "rbac.authorization.k8s.io",
98536          "kind": "RoleBinding",
98537          "version": "v1beta1"
98538        }
98539      },
98540      "parameters": [
98541        {
98542          "description": "object name and auth scope, such as for teams and projects",
98543          "in": "path",
98544          "name": "namespace",
98545          "required": true,
98546          "type": "string",
98547          "uniqueItems": true
98548        },
98549        {
98550          "description": "If 'true', then the output is pretty printed.",
98551          "in": "query",
98552          "name": "pretty",
98553          "type": "string",
98554          "uniqueItems": true
98555        }
98556      ],
98557      "post": {
98558        "consumes": [
98559          "*/*"
98560        ],
98561        "description": "create a RoleBinding",
98562        "operationId": "createRbacAuthorizationV1beta1NamespacedRoleBinding",
98563        "parameters": [
98564          {
98565            "in": "body",
98566            "name": "body",
98567            "required": true,
98568            "schema": {
98569              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98570            }
98571          },
98572          {
98573            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98574            "in": "query",
98575            "name": "dryRun",
98576            "type": "string",
98577            "uniqueItems": true
98578          },
98579          {
98580            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98581            "in": "query",
98582            "name": "fieldManager",
98583            "type": "string",
98584            "uniqueItems": true
98585          }
98586        ],
98587        "produces": [
98588          "application/json",
98589          "application/yaml",
98590          "application/vnd.kubernetes.protobuf"
98591        ],
98592        "responses": {
98593          "200": {
98594            "description": "OK",
98595            "schema": {
98596              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98597            }
98598          },
98599          "201": {
98600            "description": "Created",
98601            "schema": {
98602              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98603            }
98604          },
98605          "202": {
98606            "description": "Accepted",
98607            "schema": {
98608              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98609            }
98610          },
98611          "401": {
98612            "description": "Unauthorized"
98613          }
98614        },
98615        "schemes": [
98616          "https"
98617        ],
98618        "tags": [
98619          "rbacAuthorization_v1beta1"
98620        ],
98621        "x-kubernetes-action": "post",
98622        "x-kubernetes-group-version-kind": {
98623          "group": "rbac.authorization.k8s.io",
98624          "kind": "RoleBinding",
98625          "version": "v1beta1"
98626        }
98627      }
98628    },
98629    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}": {
98630      "delete": {
98631        "consumes": [
98632          "*/*"
98633        ],
98634        "description": "delete a RoleBinding",
98635        "operationId": "deleteRbacAuthorizationV1beta1NamespacedRoleBinding",
98636        "parameters": [
98637          {
98638            "in": "body",
98639            "name": "body",
98640            "schema": {
98641              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98642            }
98643          },
98644          {
98645            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98646            "in": "query",
98647            "name": "dryRun",
98648            "type": "string",
98649            "uniqueItems": true
98650          },
98651          {
98652            "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.",
98653            "in": "query",
98654            "name": "gracePeriodSeconds",
98655            "type": "integer",
98656            "uniqueItems": true
98657          },
98658          {
98659            "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.",
98660            "in": "query",
98661            "name": "orphanDependents",
98662            "type": "boolean",
98663            "uniqueItems": true
98664          },
98665          {
98666            "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.",
98667            "in": "query",
98668            "name": "propagationPolicy",
98669            "type": "string",
98670            "uniqueItems": true
98671          }
98672        ],
98673        "produces": [
98674          "application/json",
98675          "application/yaml",
98676          "application/vnd.kubernetes.protobuf"
98677        ],
98678        "responses": {
98679          "200": {
98680            "description": "OK",
98681            "schema": {
98682              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98683            }
98684          },
98685          "202": {
98686            "description": "Accepted",
98687            "schema": {
98688              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
98689            }
98690          },
98691          "401": {
98692            "description": "Unauthorized"
98693          }
98694        },
98695        "schemes": [
98696          "https"
98697        ],
98698        "tags": [
98699          "rbacAuthorization_v1beta1"
98700        ],
98701        "x-kubernetes-action": "delete",
98702        "x-kubernetes-group-version-kind": {
98703          "group": "rbac.authorization.k8s.io",
98704          "kind": "RoleBinding",
98705          "version": "v1beta1"
98706        }
98707      },
98708      "get": {
98709        "consumes": [
98710          "*/*"
98711        ],
98712        "description": "read the specified RoleBinding",
98713        "operationId": "readRbacAuthorizationV1beta1NamespacedRoleBinding",
98714        "produces": [
98715          "application/json",
98716          "application/yaml",
98717          "application/vnd.kubernetes.protobuf"
98718        ],
98719        "responses": {
98720          "200": {
98721            "description": "OK",
98722            "schema": {
98723              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98724            }
98725          },
98726          "401": {
98727            "description": "Unauthorized"
98728          }
98729        },
98730        "schemes": [
98731          "https"
98732        ],
98733        "tags": [
98734          "rbacAuthorization_v1beta1"
98735        ],
98736        "x-kubernetes-action": "get",
98737        "x-kubernetes-group-version-kind": {
98738          "group": "rbac.authorization.k8s.io",
98739          "kind": "RoleBinding",
98740          "version": "v1beta1"
98741        }
98742      },
98743      "parameters": [
98744        {
98745          "description": "name of the RoleBinding",
98746          "in": "path",
98747          "name": "name",
98748          "required": true,
98749          "type": "string",
98750          "uniqueItems": true
98751        },
98752        {
98753          "description": "object name and auth scope, such as for teams and projects",
98754          "in": "path",
98755          "name": "namespace",
98756          "required": true,
98757          "type": "string",
98758          "uniqueItems": true
98759        },
98760        {
98761          "description": "If 'true', then the output is pretty printed.",
98762          "in": "query",
98763          "name": "pretty",
98764          "type": "string",
98765          "uniqueItems": true
98766        }
98767      ],
98768      "patch": {
98769        "consumes": [
98770          "application/json-patch+json",
98771          "application/merge-patch+json",
98772          "application/strategic-merge-patch+json"
98773        ],
98774        "description": "partially update the specified RoleBinding",
98775        "operationId": "patchRbacAuthorizationV1beta1NamespacedRoleBinding",
98776        "parameters": [
98777          {
98778            "in": "body",
98779            "name": "body",
98780            "required": true,
98781            "schema": {
98782              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
98783            }
98784          },
98785          {
98786            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98787            "in": "query",
98788            "name": "dryRun",
98789            "type": "string",
98790            "uniqueItems": true
98791          },
98792          {
98793            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
98794            "in": "query",
98795            "name": "fieldManager",
98796            "type": "string",
98797            "uniqueItems": true
98798          },
98799          {
98800            "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.",
98801            "in": "query",
98802            "name": "force",
98803            "type": "boolean",
98804            "uniqueItems": true
98805          }
98806        ],
98807        "produces": [
98808          "application/json",
98809          "application/yaml",
98810          "application/vnd.kubernetes.protobuf"
98811        ],
98812        "responses": {
98813          "200": {
98814            "description": "OK",
98815            "schema": {
98816              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98817            }
98818          },
98819          "401": {
98820            "description": "Unauthorized"
98821          }
98822        },
98823        "schemes": [
98824          "https"
98825        ],
98826        "tags": [
98827          "rbacAuthorization_v1beta1"
98828        ],
98829        "x-kubernetes-action": "patch",
98830        "x-kubernetes-group-version-kind": {
98831          "group": "rbac.authorization.k8s.io",
98832          "kind": "RoleBinding",
98833          "version": "v1beta1"
98834        }
98835      },
98836      "put": {
98837        "consumes": [
98838          "*/*"
98839        ],
98840        "description": "replace the specified RoleBinding",
98841        "operationId": "replaceRbacAuthorizationV1beta1NamespacedRoleBinding",
98842        "parameters": [
98843          {
98844            "in": "body",
98845            "name": "body",
98846            "required": true,
98847            "schema": {
98848              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98849            }
98850          },
98851          {
98852            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98853            "in": "query",
98854            "name": "dryRun",
98855            "type": "string",
98856            "uniqueItems": true
98857          },
98858          {
98859            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
98860            "in": "query",
98861            "name": "fieldManager",
98862            "type": "string",
98863            "uniqueItems": true
98864          }
98865        ],
98866        "produces": [
98867          "application/json",
98868          "application/yaml",
98869          "application/vnd.kubernetes.protobuf"
98870        ],
98871        "responses": {
98872          "200": {
98873            "description": "OK",
98874            "schema": {
98875              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98876            }
98877          },
98878          "201": {
98879            "description": "Created",
98880            "schema": {
98881              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding"
98882            }
98883          },
98884          "401": {
98885            "description": "Unauthorized"
98886          }
98887        },
98888        "schemes": [
98889          "https"
98890        ],
98891        "tags": [
98892          "rbacAuthorization_v1beta1"
98893        ],
98894        "x-kubernetes-action": "put",
98895        "x-kubernetes-group-version-kind": {
98896          "group": "rbac.authorization.k8s.io",
98897          "kind": "RoleBinding",
98898          "version": "v1beta1"
98899        }
98900      }
98901    },
98902    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles": {
98903      "delete": {
98904        "consumes": [
98905          "*/*"
98906        ],
98907        "description": "delete collection of Role",
98908        "operationId": "deleteRbacAuthorizationV1beta1CollectionNamespacedRole",
98909        "parameters": [
98910          {
98911            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
98912            "in": "query",
98913            "name": "allowWatchBookmarks",
98914            "type": "boolean",
98915            "uniqueItems": true
98916          },
98917          {
98918            "in": "body",
98919            "name": "body",
98920            "schema": {
98921              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
98922            }
98923          },
98924          {
98925            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
98926            "in": "query",
98927            "name": "continue",
98928            "type": "string",
98929            "uniqueItems": true
98930          },
98931          {
98932            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
98933            "in": "query",
98934            "name": "dryRun",
98935            "type": "string",
98936            "uniqueItems": true
98937          },
98938          {
98939            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
98940            "in": "query",
98941            "name": "fieldSelector",
98942            "type": "string",
98943            "uniqueItems": true
98944          },
98945          {
98946            "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.",
98947            "in": "query",
98948            "name": "gracePeriodSeconds",
98949            "type": "integer",
98950            "uniqueItems": true
98951          },
98952          {
98953            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
98954            "in": "query",
98955            "name": "labelSelector",
98956            "type": "string",
98957            "uniqueItems": true
98958          },
98959          {
98960            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
98961            "in": "query",
98962            "name": "limit",
98963            "type": "integer",
98964            "uniqueItems": true
98965          },
98966          {
98967            "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.",
98968            "in": "query",
98969            "name": "orphanDependents",
98970            "type": "boolean",
98971            "uniqueItems": true
98972          },
98973          {
98974            "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.",
98975            "in": "query",
98976            "name": "propagationPolicy",
98977            "type": "string",
98978            "uniqueItems": true
98979          },
98980          {
98981            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
98982            "in": "query",
98983            "name": "resourceVersion",
98984            "type": "string",
98985            "uniqueItems": true
98986          },
98987          {
98988            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
98989            "in": "query",
98990            "name": "timeoutSeconds",
98991            "type": "integer",
98992            "uniqueItems": true
98993          },
98994          {
98995            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
98996            "in": "query",
98997            "name": "watch",
98998            "type": "boolean",
98999            "uniqueItems": true
99000          }
99001        ],
99002        "produces": [
99003          "application/json",
99004          "application/yaml",
99005          "application/vnd.kubernetes.protobuf"
99006        ],
99007        "responses": {
99008          "200": {
99009            "description": "OK",
99010            "schema": {
99011              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99012            }
99013          },
99014          "401": {
99015            "description": "Unauthorized"
99016          }
99017        },
99018        "schemes": [
99019          "https"
99020        ],
99021        "tags": [
99022          "rbacAuthorization_v1beta1"
99023        ],
99024        "x-kubernetes-action": "deletecollection",
99025        "x-kubernetes-group-version-kind": {
99026          "group": "rbac.authorization.k8s.io",
99027          "kind": "Role",
99028          "version": "v1beta1"
99029        }
99030      },
99031      "get": {
99032        "consumes": [
99033          "*/*"
99034        ],
99035        "description": "list or watch objects of kind Role",
99036        "operationId": "listRbacAuthorizationV1beta1NamespacedRole",
99037        "parameters": [
99038          {
99039            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
99040            "in": "query",
99041            "name": "allowWatchBookmarks",
99042            "type": "boolean",
99043            "uniqueItems": true
99044          },
99045          {
99046            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99047            "in": "query",
99048            "name": "continue",
99049            "type": "string",
99050            "uniqueItems": true
99051          },
99052          {
99053            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99054            "in": "query",
99055            "name": "fieldSelector",
99056            "type": "string",
99057            "uniqueItems": true
99058          },
99059          {
99060            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99061            "in": "query",
99062            "name": "labelSelector",
99063            "type": "string",
99064            "uniqueItems": true
99065          },
99066          {
99067            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99068            "in": "query",
99069            "name": "limit",
99070            "type": "integer",
99071            "uniqueItems": true
99072          },
99073          {
99074            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
99075            "in": "query",
99076            "name": "resourceVersion",
99077            "type": "string",
99078            "uniqueItems": true
99079          },
99080          {
99081            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99082            "in": "query",
99083            "name": "timeoutSeconds",
99084            "type": "integer",
99085            "uniqueItems": true
99086          },
99087          {
99088            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99089            "in": "query",
99090            "name": "watch",
99091            "type": "boolean",
99092            "uniqueItems": true
99093          }
99094        ],
99095        "produces": [
99096          "application/json",
99097          "application/yaml",
99098          "application/vnd.kubernetes.protobuf",
99099          "application/json;stream=watch",
99100          "application/vnd.kubernetes.protobuf;stream=watch"
99101        ],
99102        "responses": {
99103          "200": {
99104            "description": "OK",
99105            "schema": {
99106              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleList"
99107            }
99108          },
99109          "401": {
99110            "description": "Unauthorized"
99111          }
99112        },
99113        "schemes": [
99114          "https"
99115        ],
99116        "tags": [
99117          "rbacAuthorization_v1beta1"
99118        ],
99119        "x-kubernetes-action": "list",
99120        "x-kubernetes-group-version-kind": {
99121          "group": "rbac.authorization.k8s.io",
99122          "kind": "Role",
99123          "version": "v1beta1"
99124        }
99125      },
99126      "parameters": [
99127        {
99128          "description": "object name and auth scope, such as for teams and projects",
99129          "in": "path",
99130          "name": "namespace",
99131          "required": true,
99132          "type": "string",
99133          "uniqueItems": true
99134        },
99135        {
99136          "description": "If 'true', then the output is pretty printed.",
99137          "in": "query",
99138          "name": "pretty",
99139          "type": "string",
99140          "uniqueItems": true
99141        }
99142      ],
99143      "post": {
99144        "consumes": [
99145          "*/*"
99146        ],
99147        "description": "create a Role",
99148        "operationId": "createRbacAuthorizationV1beta1NamespacedRole",
99149        "parameters": [
99150          {
99151            "in": "body",
99152            "name": "body",
99153            "required": true,
99154            "schema": {
99155              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99156            }
99157          },
99158          {
99159            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99160            "in": "query",
99161            "name": "dryRun",
99162            "type": "string",
99163            "uniqueItems": true
99164          },
99165          {
99166            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99167            "in": "query",
99168            "name": "fieldManager",
99169            "type": "string",
99170            "uniqueItems": true
99171          }
99172        ],
99173        "produces": [
99174          "application/json",
99175          "application/yaml",
99176          "application/vnd.kubernetes.protobuf"
99177        ],
99178        "responses": {
99179          "200": {
99180            "description": "OK",
99181            "schema": {
99182              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99183            }
99184          },
99185          "201": {
99186            "description": "Created",
99187            "schema": {
99188              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99189            }
99190          },
99191          "202": {
99192            "description": "Accepted",
99193            "schema": {
99194              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99195            }
99196          },
99197          "401": {
99198            "description": "Unauthorized"
99199          }
99200        },
99201        "schemes": [
99202          "https"
99203        ],
99204        "tags": [
99205          "rbacAuthorization_v1beta1"
99206        ],
99207        "x-kubernetes-action": "post",
99208        "x-kubernetes-group-version-kind": {
99209          "group": "rbac.authorization.k8s.io",
99210          "kind": "Role",
99211          "version": "v1beta1"
99212        }
99213      }
99214    },
99215    "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}": {
99216      "delete": {
99217        "consumes": [
99218          "*/*"
99219        ],
99220        "description": "delete a Role",
99221        "operationId": "deleteRbacAuthorizationV1beta1NamespacedRole",
99222        "parameters": [
99223          {
99224            "in": "body",
99225            "name": "body",
99226            "schema": {
99227              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
99228            }
99229          },
99230          {
99231            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99232            "in": "query",
99233            "name": "dryRun",
99234            "type": "string",
99235            "uniqueItems": true
99236          },
99237          {
99238            "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.",
99239            "in": "query",
99240            "name": "gracePeriodSeconds",
99241            "type": "integer",
99242            "uniqueItems": true
99243          },
99244          {
99245            "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.",
99246            "in": "query",
99247            "name": "orphanDependents",
99248            "type": "boolean",
99249            "uniqueItems": true
99250          },
99251          {
99252            "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.",
99253            "in": "query",
99254            "name": "propagationPolicy",
99255            "type": "string",
99256            "uniqueItems": true
99257          }
99258        ],
99259        "produces": [
99260          "application/json",
99261          "application/yaml",
99262          "application/vnd.kubernetes.protobuf"
99263        ],
99264        "responses": {
99265          "200": {
99266            "description": "OK",
99267            "schema": {
99268              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99269            }
99270          },
99271          "202": {
99272            "description": "Accepted",
99273            "schema": {
99274              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
99275            }
99276          },
99277          "401": {
99278            "description": "Unauthorized"
99279          }
99280        },
99281        "schemes": [
99282          "https"
99283        ],
99284        "tags": [
99285          "rbacAuthorization_v1beta1"
99286        ],
99287        "x-kubernetes-action": "delete",
99288        "x-kubernetes-group-version-kind": {
99289          "group": "rbac.authorization.k8s.io",
99290          "kind": "Role",
99291          "version": "v1beta1"
99292        }
99293      },
99294      "get": {
99295        "consumes": [
99296          "*/*"
99297        ],
99298        "description": "read the specified Role",
99299        "operationId": "readRbacAuthorizationV1beta1NamespacedRole",
99300        "produces": [
99301          "application/json",
99302          "application/yaml",
99303          "application/vnd.kubernetes.protobuf"
99304        ],
99305        "responses": {
99306          "200": {
99307            "description": "OK",
99308            "schema": {
99309              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99310            }
99311          },
99312          "401": {
99313            "description": "Unauthorized"
99314          }
99315        },
99316        "schemes": [
99317          "https"
99318        ],
99319        "tags": [
99320          "rbacAuthorization_v1beta1"
99321        ],
99322        "x-kubernetes-action": "get",
99323        "x-kubernetes-group-version-kind": {
99324          "group": "rbac.authorization.k8s.io",
99325          "kind": "Role",
99326          "version": "v1beta1"
99327        }
99328      },
99329      "parameters": [
99330        {
99331          "description": "name of the Role",
99332          "in": "path",
99333          "name": "name",
99334          "required": true,
99335          "type": "string",
99336          "uniqueItems": true
99337        },
99338        {
99339          "description": "object name and auth scope, such as for teams and projects",
99340          "in": "path",
99341          "name": "namespace",
99342          "required": true,
99343          "type": "string",
99344          "uniqueItems": true
99345        },
99346        {
99347          "description": "If 'true', then the output is pretty printed.",
99348          "in": "query",
99349          "name": "pretty",
99350          "type": "string",
99351          "uniqueItems": true
99352        }
99353      ],
99354      "patch": {
99355        "consumes": [
99356          "application/json-patch+json",
99357          "application/merge-patch+json",
99358          "application/strategic-merge-patch+json"
99359        ],
99360        "description": "partially update the specified Role",
99361        "operationId": "patchRbacAuthorizationV1beta1NamespacedRole",
99362        "parameters": [
99363          {
99364            "in": "body",
99365            "name": "body",
99366            "required": true,
99367            "schema": {
99368              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
99369            }
99370          },
99371          {
99372            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99373            "in": "query",
99374            "name": "dryRun",
99375            "type": "string",
99376            "uniqueItems": true
99377          },
99378          {
99379            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
99380            "in": "query",
99381            "name": "fieldManager",
99382            "type": "string",
99383            "uniqueItems": true
99384          },
99385          {
99386            "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.",
99387            "in": "query",
99388            "name": "force",
99389            "type": "boolean",
99390            "uniqueItems": true
99391          }
99392        ],
99393        "produces": [
99394          "application/json",
99395          "application/yaml",
99396          "application/vnd.kubernetes.protobuf"
99397        ],
99398        "responses": {
99399          "200": {
99400            "description": "OK",
99401            "schema": {
99402              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99403            }
99404          },
99405          "401": {
99406            "description": "Unauthorized"
99407          }
99408        },
99409        "schemes": [
99410          "https"
99411        ],
99412        "tags": [
99413          "rbacAuthorization_v1beta1"
99414        ],
99415        "x-kubernetes-action": "patch",
99416        "x-kubernetes-group-version-kind": {
99417          "group": "rbac.authorization.k8s.io",
99418          "kind": "Role",
99419          "version": "v1beta1"
99420        }
99421      },
99422      "put": {
99423        "consumes": [
99424          "*/*"
99425        ],
99426        "description": "replace the specified Role",
99427        "operationId": "replaceRbacAuthorizationV1beta1NamespacedRole",
99428        "parameters": [
99429          {
99430            "in": "body",
99431            "name": "body",
99432            "required": true,
99433            "schema": {
99434              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99435            }
99436          },
99437          {
99438            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
99439            "in": "query",
99440            "name": "dryRun",
99441            "type": "string",
99442            "uniqueItems": true
99443          },
99444          {
99445            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
99446            "in": "query",
99447            "name": "fieldManager",
99448            "type": "string",
99449            "uniqueItems": true
99450          }
99451        ],
99452        "produces": [
99453          "application/json",
99454          "application/yaml",
99455          "application/vnd.kubernetes.protobuf"
99456        ],
99457        "responses": {
99458          "200": {
99459            "description": "OK",
99460            "schema": {
99461              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99462            }
99463          },
99464          "201": {
99465            "description": "Created",
99466            "schema": {
99467              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role"
99468            }
99469          },
99470          "401": {
99471            "description": "Unauthorized"
99472          }
99473        },
99474        "schemes": [
99475          "https"
99476        ],
99477        "tags": [
99478          "rbacAuthorization_v1beta1"
99479        ],
99480        "x-kubernetes-action": "put",
99481        "x-kubernetes-group-version-kind": {
99482          "group": "rbac.authorization.k8s.io",
99483          "kind": "Role",
99484          "version": "v1beta1"
99485        }
99486      }
99487    },
99488    "/apis/rbac.authorization.k8s.io/v1beta1/rolebindings": {
99489      "get": {
99490        "consumes": [
99491          "*/*"
99492        ],
99493        "description": "list or watch objects of kind RoleBinding",
99494        "operationId": "listRbacAuthorizationV1beta1RoleBindingForAllNamespaces",
99495        "produces": [
99496          "application/json",
99497          "application/yaml",
99498          "application/vnd.kubernetes.protobuf",
99499          "application/json;stream=watch",
99500          "application/vnd.kubernetes.protobuf;stream=watch"
99501        ],
99502        "responses": {
99503          "200": {
99504            "description": "OK",
99505            "schema": {
99506              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBindingList"
99507            }
99508          },
99509          "401": {
99510            "description": "Unauthorized"
99511          }
99512        },
99513        "schemes": [
99514          "https"
99515        ],
99516        "tags": [
99517          "rbacAuthorization_v1beta1"
99518        ],
99519        "x-kubernetes-action": "list",
99520        "x-kubernetes-group-version-kind": {
99521          "group": "rbac.authorization.k8s.io",
99522          "kind": "RoleBinding",
99523          "version": "v1beta1"
99524        }
99525      },
99526      "parameters": [
99527        {
99528          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
99529          "in": "query",
99530          "name": "allowWatchBookmarks",
99531          "type": "boolean",
99532          "uniqueItems": true
99533        },
99534        {
99535          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99536          "in": "query",
99537          "name": "continue",
99538          "type": "string",
99539          "uniqueItems": true
99540        },
99541        {
99542          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99543          "in": "query",
99544          "name": "fieldSelector",
99545          "type": "string",
99546          "uniqueItems": true
99547        },
99548        {
99549          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99550          "in": "query",
99551          "name": "labelSelector",
99552          "type": "string",
99553          "uniqueItems": true
99554        },
99555        {
99556          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99557          "in": "query",
99558          "name": "limit",
99559          "type": "integer",
99560          "uniqueItems": true
99561        },
99562        {
99563          "description": "If 'true', then the output is pretty printed.",
99564          "in": "query",
99565          "name": "pretty",
99566          "type": "string",
99567          "uniqueItems": true
99568        },
99569        {
99570          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
99571          "in": "query",
99572          "name": "resourceVersion",
99573          "type": "string",
99574          "uniqueItems": true
99575        },
99576        {
99577          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99578          "in": "query",
99579          "name": "timeoutSeconds",
99580          "type": "integer",
99581          "uniqueItems": true
99582        },
99583        {
99584          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99585          "in": "query",
99586          "name": "watch",
99587          "type": "boolean",
99588          "uniqueItems": true
99589        }
99590      ]
99591    },
99592    "/apis/rbac.authorization.k8s.io/v1beta1/roles": {
99593      "get": {
99594        "consumes": [
99595          "*/*"
99596        ],
99597        "description": "list or watch objects of kind Role",
99598        "operationId": "listRbacAuthorizationV1beta1RoleForAllNamespaces",
99599        "produces": [
99600          "application/json",
99601          "application/yaml",
99602          "application/vnd.kubernetes.protobuf",
99603          "application/json;stream=watch",
99604          "application/vnd.kubernetes.protobuf;stream=watch"
99605        ],
99606        "responses": {
99607          "200": {
99608            "description": "OK",
99609            "schema": {
99610              "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleList"
99611            }
99612          },
99613          "401": {
99614            "description": "Unauthorized"
99615          }
99616        },
99617        "schemes": [
99618          "https"
99619        ],
99620        "tags": [
99621          "rbacAuthorization_v1beta1"
99622        ],
99623        "x-kubernetes-action": "list",
99624        "x-kubernetes-group-version-kind": {
99625          "group": "rbac.authorization.k8s.io",
99626          "kind": "Role",
99627          "version": "v1beta1"
99628        }
99629      },
99630      "parameters": [
99631        {
99632          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
99633          "in": "query",
99634          "name": "allowWatchBookmarks",
99635          "type": "boolean",
99636          "uniqueItems": true
99637        },
99638        {
99639          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99640          "in": "query",
99641          "name": "continue",
99642          "type": "string",
99643          "uniqueItems": true
99644        },
99645        {
99646          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99647          "in": "query",
99648          "name": "fieldSelector",
99649          "type": "string",
99650          "uniqueItems": true
99651        },
99652        {
99653          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99654          "in": "query",
99655          "name": "labelSelector",
99656          "type": "string",
99657          "uniqueItems": true
99658        },
99659        {
99660          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99661          "in": "query",
99662          "name": "limit",
99663          "type": "integer",
99664          "uniqueItems": true
99665        },
99666        {
99667          "description": "If 'true', then the output is pretty printed.",
99668          "in": "query",
99669          "name": "pretty",
99670          "type": "string",
99671          "uniqueItems": true
99672        },
99673        {
99674          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
99675          "in": "query",
99676          "name": "resourceVersion",
99677          "type": "string",
99678          "uniqueItems": true
99679        },
99680        {
99681          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99682          "in": "query",
99683          "name": "timeoutSeconds",
99684          "type": "integer",
99685          "uniqueItems": true
99686        },
99687        {
99688          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99689          "in": "query",
99690          "name": "watch",
99691          "type": "boolean",
99692          "uniqueItems": true
99693        }
99694      ]
99695    },
99696    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings": {
99697      "get": {
99698        "consumes": [
99699          "*/*"
99700        ],
99701        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
99702        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleBindingList",
99703        "produces": [
99704          "application/json",
99705          "application/yaml",
99706          "application/vnd.kubernetes.protobuf",
99707          "application/json;stream=watch",
99708          "application/vnd.kubernetes.protobuf;stream=watch"
99709        ],
99710        "responses": {
99711          "200": {
99712            "description": "OK",
99713            "schema": {
99714              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99715            }
99716          },
99717          "401": {
99718            "description": "Unauthorized"
99719          }
99720        },
99721        "schemes": [
99722          "https"
99723        ],
99724        "tags": [
99725          "rbacAuthorization_v1beta1"
99726        ],
99727        "x-kubernetes-action": "watchlist",
99728        "x-kubernetes-group-version-kind": {
99729          "group": "rbac.authorization.k8s.io",
99730          "kind": "ClusterRoleBinding",
99731          "version": "v1beta1"
99732        }
99733      },
99734      "parameters": [
99735        {
99736          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
99737          "in": "query",
99738          "name": "allowWatchBookmarks",
99739          "type": "boolean",
99740          "uniqueItems": true
99741        },
99742        {
99743          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99744          "in": "query",
99745          "name": "continue",
99746          "type": "string",
99747          "uniqueItems": true
99748        },
99749        {
99750          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99751          "in": "query",
99752          "name": "fieldSelector",
99753          "type": "string",
99754          "uniqueItems": true
99755        },
99756        {
99757          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99758          "in": "query",
99759          "name": "labelSelector",
99760          "type": "string",
99761          "uniqueItems": true
99762        },
99763        {
99764          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99765          "in": "query",
99766          "name": "limit",
99767          "type": "integer",
99768          "uniqueItems": true
99769        },
99770        {
99771          "description": "If 'true', then the output is pretty printed.",
99772          "in": "query",
99773          "name": "pretty",
99774          "type": "string",
99775          "uniqueItems": true
99776        },
99777        {
99778          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
99779          "in": "query",
99780          "name": "resourceVersion",
99781          "type": "string",
99782          "uniqueItems": true
99783        },
99784        {
99785          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99786          "in": "query",
99787          "name": "timeoutSeconds",
99788          "type": "integer",
99789          "uniqueItems": true
99790        },
99791        {
99792          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99793          "in": "query",
99794          "name": "watch",
99795          "type": "boolean",
99796          "uniqueItems": true
99797        }
99798      ]
99799    },
99800    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/{name}": {
99801      "get": {
99802        "consumes": [
99803          "*/*"
99804        ],
99805        "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.",
99806        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleBinding",
99807        "produces": [
99808          "application/json",
99809          "application/yaml",
99810          "application/vnd.kubernetes.protobuf",
99811          "application/json;stream=watch",
99812          "application/vnd.kubernetes.protobuf;stream=watch"
99813        ],
99814        "responses": {
99815          "200": {
99816            "description": "OK",
99817            "schema": {
99818              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99819            }
99820          },
99821          "401": {
99822            "description": "Unauthorized"
99823          }
99824        },
99825        "schemes": [
99826          "https"
99827        ],
99828        "tags": [
99829          "rbacAuthorization_v1beta1"
99830        ],
99831        "x-kubernetes-action": "watch",
99832        "x-kubernetes-group-version-kind": {
99833          "group": "rbac.authorization.k8s.io",
99834          "kind": "ClusterRoleBinding",
99835          "version": "v1beta1"
99836        }
99837      },
99838      "parameters": [
99839        {
99840          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
99841          "in": "query",
99842          "name": "allowWatchBookmarks",
99843          "type": "boolean",
99844          "uniqueItems": true
99845        },
99846        {
99847          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99848          "in": "query",
99849          "name": "continue",
99850          "type": "string",
99851          "uniqueItems": true
99852        },
99853        {
99854          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99855          "in": "query",
99856          "name": "fieldSelector",
99857          "type": "string",
99858          "uniqueItems": true
99859        },
99860        {
99861          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99862          "in": "query",
99863          "name": "labelSelector",
99864          "type": "string",
99865          "uniqueItems": true
99866        },
99867        {
99868          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99869          "in": "query",
99870          "name": "limit",
99871          "type": "integer",
99872          "uniqueItems": true
99873        },
99874        {
99875          "description": "name of the ClusterRoleBinding",
99876          "in": "path",
99877          "name": "name",
99878          "required": true,
99879          "type": "string",
99880          "uniqueItems": true
99881        },
99882        {
99883          "description": "If 'true', then the output is pretty printed.",
99884          "in": "query",
99885          "name": "pretty",
99886          "type": "string",
99887          "uniqueItems": true
99888        },
99889        {
99890          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
99891          "in": "query",
99892          "name": "resourceVersion",
99893          "type": "string",
99894          "uniqueItems": true
99895        },
99896        {
99897          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
99898          "in": "query",
99899          "name": "timeoutSeconds",
99900          "type": "integer",
99901          "uniqueItems": true
99902        },
99903        {
99904          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
99905          "in": "query",
99906          "name": "watch",
99907          "type": "boolean",
99908          "uniqueItems": true
99909        }
99910      ]
99911    },
99912    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles": {
99913      "get": {
99914        "consumes": [
99915          "*/*"
99916        ],
99917        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
99918        "operationId": "watchRbacAuthorizationV1beta1ClusterRoleList",
99919        "produces": [
99920          "application/json",
99921          "application/yaml",
99922          "application/vnd.kubernetes.protobuf",
99923          "application/json;stream=watch",
99924          "application/vnd.kubernetes.protobuf;stream=watch"
99925        ],
99926        "responses": {
99927          "200": {
99928            "description": "OK",
99929            "schema": {
99930              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
99931            }
99932          },
99933          "401": {
99934            "description": "Unauthorized"
99935          }
99936        },
99937        "schemes": [
99938          "https"
99939        ],
99940        "tags": [
99941          "rbacAuthorization_v1beta1"
99942        ],
99943        "x-kubernetes-action": "watchlist",
99944        "x-kubernetes-group-version-kind": {
99945          "group": "rbac.authorization.k8s.io",
99946          "kind": "ClusterRole",
99947          "version": "v1beta1"
99948        }
99949      },
99950      "parameters": [
99951        {
99952          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
99953          "in": "query",
99954          "name": "allowWatchBookmarks",
99955          "type": "boolean",
99956          "uniqueItems": true
99957        },
99958        {
99959          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
99960          "in": "query",
99961          "name": "continue",
99962          "type": "string",
99963          "uniqueItems": true
99964        },
99965        {
99966          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
99967          "in": "query",
99968          "name": "fieldSelector",
99969          "type": "string",
99970          "uniqueItems": true
99971        },
99972        {
99973          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
99974          "in": "query",
99975          "name": "labelSelector",
99976          "type": "string",
99977          "uniqueItems": true
99978        },
99979        {
99980          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
99981          "in": "query",
99982          "name": "limit",
99983          "type": "integer",
99984          "uniqueItems": true
99985        },
99986        {
99987          "description": "If 'true', then the output is pretty printed.",
99988          "in": "query",
99989          "name": "pretty",
99990          "type": "string",
99991          "uniqueItems": true
99992        },
99993        {
99994          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
99995          "in": "query",
99996          "name": "resourceVersion",
99997          "type": "string",
99998          "uniqueItems": true
99999        },
100000        {
100001          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100002          "in": "query",
100003          "name": "timeoutSeconds",
100004          "type": "integer",
100005          "uniqueItems": true
100006        },
100007        {
100008          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100009          "in": "query",
100010          "name": "watch",
100011          "type": "boolean",
100012          "uniqueItems": true
100013        }
100014      ]
100015    },
100016    "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/{name}": {
100017      "get": {
100018        "consumes": [
100019          "*/*"
100020        ],
100021        "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.",
100022        "operationId": "watchRbacAuthorizationV1beta1ClusterRole",
100023        "produces": [
100024          "application/json",
100025          "application/yaml",
100026          "application/vnd.kubernetes.protobuf",
100027          "application/json;stream=watch",
100028          "application/vnd.kubernetes.protobuf;stream=watch"
100029        ],
100030        "responses": {
100031          "200": {
100032            "description": "OK",
100033            "schema": {
100034              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100035            }
100036          },
100037          "401": {
100038            "description": "Unauthorized"
100039          }
100040        },
100041        "schemes": [
100042          "https"
100043        ],
100044        "tags": [
100045          "rbacAuthorization_v1beta1"
100046        ],
100047        "x-kubernetes-action": "watch",
100048        "x-kubernetes-group-version-kind": {
100049          "group": "rbac.authorization.k8s.io",
100050          "kind": "ClusterRole",
100051          "version": "v1beta1"
100052        }
100053      },
100054      "parameters": [
100055        {
100056          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100057          "in": "query",
100058          "name": "allowWatchBookmarks",
100059          "type": "boolean",
100060          "uniqueItems": true
100061        },
100062        {
100063          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100064          "in": "query",
100065          "name": "continue",
100066          "type": "string",
100067          "uniqueItems": true
100068        },
100069        {
100070          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100071          "in": "query",
100072          "name": "fieldSelector",
100073          "type": "string",
100074          "uniqueItems": true
100075        },
100076        {
100077          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100078          "in": "query",
100079          "name": "labelSelector",
100080          "type": "string",
100081          "uniqueItems": true
100082        },
100083        {
100084          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100085          "in": "query",
100086          "name": "limit",
100087          "type": "integer",
100088          "uniqueItems": true
100089        },
100090        {
100091          "description": "name of the ClusterRole",
100092          "in": "path",
100093          "name": "name",
100094          "required": true,
100095          "type": "string",
100096          "uniqueItems": true
100097        },
100098        {
100099          "description": "If 'true', then the output is pretty printed.",
100100          "in": "query",
100101          "name": "pretty",
100102          "type": "string",
100103          "uniqueItems": true
100104        },
100105        {
100106          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100107          "in": "query",
100108          "name": "resourceVersion",
100109          "type": "string",
100110          "uniqueItems": true
100111        },
100112        {
100113          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100114          "in": "query",
100115          "name": "timeoutSeconds",
100116          "type": "integer",
100117          "uniqueItems": true
100118        },
100119        {
100120          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100121          "in": "query",
100122          "name": "watch",
100123          "type": "boolean",
100124          "uniqueItems": true
100125        }
100126      ]
100127    },
100128    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings": {
100129      "get": {
100130        "consumes": [
100131          "*/*"
100132        ],
100133        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
100134        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleBindingList",
100135        "produces": [
100136          "application/json",
100137          "application/yaml",
100138          "application/vnd.kubernetes.protobuf",
100139          "application/json;stream=watch",
100140          "application/vnd.kubernetes.protobuf;stream=watch"
100141        ],
100142        "responses": {
100143          "200": {
100144            "description": "OK",
100145            "schema": {
100146              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100147            }
100148          },
100149          "401": {
100150            "description": "Unauthorized"
100151          }
100152        },
100153        "schemes": [
100154          "https"
100155        ],
100156        "tags": [
100157          "rbacAuthorization_v1beta1"
100158        ],
100159        "x-kubernetes-action": "watchlist",
100160        "x-kubernetes-group-version-kind": {
100161          "group": "rbac.authorization.k8s.io",
100162          "kind": "RoleBinding",
100163          "version": "v1beta1"
100164        }
100165      },
100166      "parameters": [
100167        {
100168          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100169          "in": "query",
100170          "name": "allowWatchBookmarks",
100171          "type": "boolean",
100172          "uniqueItems": true
100173        },
100174        {
100175          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100176          "in": "query",
100177          "name": "continue",
100178          "type": "string",
100179          "uniqueItems": true
100180        },
100181        {
100182          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100183          "in": "query",
100184          "name": "fieldSelector",
100185          "type": "string",
100186          "uniqueItems": true
100187        },
100188        {
100189          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100190          "in": "query",
100191          "name": "labelSelector",
100192          "type": "string",
100193          "uniqueItems": true
100194        },
100195        {
100196          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100197          "in": "query",
100198          "name": "limit",
100199          "type": "integer",
100200          "uniqueItems": true
100201        },
100202        {
100203          "description": "object name and auth scope, such as for teams and projects",
100204          "in": "path",
100205          "name": "namespace",
100206          "required": true,
100207          "type": "string",
100208          "uniqueItems": true
100209        },
100210        {
100211          "description": "If 'true', then the output is pretty printed.",
100212          "in": "query",
100213          "name": "pretty",
100214          "type": "string",
100215          "uniqueItems": true
100216        },
100217        {
100218          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100219          "in": "query",
100220          "name": "resourceVersion",
100221          "type": "string",
100222          "uniqueItems": true
100223        },
100224        {
100225          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100226          "in": "query",
100227          "name": "timeoutSeconds",
100228          "type": "integer",
100229          "uniqueItems": true
100230        },
100231        {
100232          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100233          "in": "query",
100234          "name": "watch",
100235          "type": "boolean",
100236          "uniqueItems": true
100237        }
100238      ]
100239    },
100240    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings/{name}": {
100241      "get": {
100242        "consumes": [
100243          "*/*"
100244        ],
100245        "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.",
100246        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleBinding",
100247        "produces": [
100248          "application/json",
100249          "application/yaml",
100250          "application/vnd.kubernetes.protobuf",
100251          "application/json;stream=watch",
100252          "application/vnd.kubernetes.protobuf;stream=watch"
100253        ],
100254        "responses": {
100255          "200": {
100256            "description": "OK",
100257            "schema": {
100258              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100259            }
100260          },
100261          "401": {
100262            "description": "Unauthorized"
100263          }
100264        },
100265        "schemes": [
100266          "https"
100267        ],
100268        "tags": [
100269          "rbacAuthorization_v1beta1"
100270        ],
100271        "x-kubernetes-action": "watch",
100272        "x-kubernetes-group-version-kind": {
100273          "group": "rbac.authorization.k8s.io",
100274          "kind": "RoleBinding",
100275          "version": "v1beta1"
100276        }
100277      },
100278      "parameters": [
100279        {
100280          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100281          "in": "query",
100282          "name": "allowWatchBookmarks",
100283          "type": "boolean",
100284          "uniqueItems": true
100285        },
100286        {
100287          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100288          "in": "query",
100289          "name": "continue",
100290          "type": "string",
100291          "uniqueItems": true
100292        },
100293        {
100294          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100295          "in": "query",
100296          "name": "fieldSelector",
100297          "type": "string",
100298          "uniqueItems": true
100299        },
100300        {
100301          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100302          "in": "query",
100303          "name": "labelSelector",
100304          "type": "string",
100305          "uniqueItems": true
100306        },
100307        {
100308          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100309          "in": "query",
100310          "name": "limit",
100311          "type": "integer",
100312          "uniqueItems": true
100313        },
100314        {
100315          "description": "name of the RoleBinding",
100316          "in": "path",
100317          "name": "name",
100318          "required": true,
100319          "type": "string",
100320          "uniqueItems": true
100321        },
100322        {
100323          "description": "object name and auth scope, such as for teams and projects",
100324          "in": "path",
100325          "name": "namespace",
100326          "required": true,
100327          "type": "string",
100328          "uniqueItems": true
100329        },
100330        {
100331          "description": "If 'true', then the output is pretty printed.",
100332          "in": "query",
100333          "name": "pretty",
100334          "type": "string",
100335          "uniqueItems": true
100336        },
100337        {
100338          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100339          "in": "query",
100340          "name": "resourceVersion",
100341          "type": "string",
100342          "uniqueItems": true
100343        },
100344        {
100345          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100346          "in": "query",
100347          "name": "timeoutSeconds",
100348          "type": "integer",
100349          "uniqueItems": true
100350        },
100351        {
100352          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100353          "in": "query",
100354          "name": "watch",
100355          "type": "boolean",
100356          "uniqueItems": true
100357        }
100358      ]
100359    },
100360    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles": {
100361      "get": {
100362        "consumes": [
100363          "*/*"
100364        ],
100365        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
100366        "operationId": "watchRbacAuthorizationV1beta1NamespacedRoleList",
100367        "produces": [
100368          "application/json",
100369          "application/yaml",
100370          "application/vnd.kubernetes.protobuf",
100371          "application/json;stream=watch",
100372          "application/vnd.kubernetes.protobuf;stream=watch"
100373        ],
100374        "responses": {
100375          "200": {
100376            "description": "OK",
100377            "schema": {
100378              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100379            }
100380          },
100381          "401": {
100382            "description": "Unauthorized"
100383          }
100384        },
100385        "schemes": [
100386          "https"
100387        ],
100388        "tags": [
100389          "rbacAuthorization_v1beta1"
100390        ],
100391        "x-kubernetes-action": "watchlist",
100392        "x-kubernetes-group-version-kind": {
100393          "group": "rbac.authorization.k8s.io",
100394          "kind": "Role",
100395          "version": "v1beta1"
100396        }
100397      },
100398      "parameters": [
100399        {
100400          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100401          "in": "query",
100402          "name": "allowWatchBookmarks",
100403          "type": "boolean",
100404          "uniqueItems": true
100405        },
100406        {
100407          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100408          "in": "query",
100409          "name": "continue",
100410          "type": "string",
100411          "uniqueItems": true
100412        },
100413        {
100414          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100415          "in": "query",
100416          "name": "fieldSelector",
100417          "type": "string",
100418          "uniqueItems": true
100419        },
100420        {
100421          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100422          "in": "query",
100423          "name": "labelSelector",
100424          "type": "string",
100425          "uniqueItems": true
100426        },
100427        {
100428          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100429          "in": "query",
100430          "name": "limit",
100431          "type": "integer",
100432          "uniqueItems": true
100433        },
100434        {
100435          "description": "object name and auth scope, such as for teams and projects",
100436          "in": "path",
100437          "name": "namespace",
100438          "required": true,
100439          "type": "string",
100440          "uniqueItems": true
100441        },
100442        {
100443          "description": "If 'true', then the output is pretty printed.",
100444          "in": "query",
100445          "name": "pretty",
100446          "type": "string",
100447          "uniqueItems": true
100448        },
100449        {
100450          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100451          "in": "query",
100452          "name": "resourceVersion",
100453          "type": "string",
100454          "uniqueItems": true
100455        },
100456        {
100457          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100458          "in": "query",
100459          "name": "timeoutSeconds",
100460          "type": "integer",
100461          "uniqueItems": true
100462        },
100463        {
100464          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100465          "in": "query",
100466          "name": "watch",
100467          "type": "boolean",
100468          "uniqueItems": true
100469        }
100470      ]
100471    },
100472    "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles/{name}": {
100473      "get": {
100474        "consumes": [
100475          "*/*"
100476        ],
100477        "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.",
100478        "operationId": "watchRbacAuthorizationV1beta1NamespacedRole",
100479        "produces": [
100480          "application/json",
100481          "application/yaml",
100482          "application/vnd.kubernetes.protobuf",
100483          "application/json;stream=watch",
100484          "application/vnd.kubernetes.protobuf;stream=watch"
100485        ],
100486        "responses": {
100487          "200": {
100488            "description": "OK",
100489            "schema": {
100490              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100491            }
100492          },
100493          "401": {
100494            "description": "Unauthorized"
100495          }
100496        },
100497        "schemes": [
100498          "https"
100499        ],
100500        "tags": [
100501          "rbacAuthorization_v1beta1"
100502        ],
100503        "x-kubernetes-action": "watch",
100504        "x-kubernetes-group-version-kind": {
100505          "group": "rbac.authorization.k8s.io",
100506          "kind": "Role",
100507          "version": "v1beta1"
100508        }
100509      },
100510      "parameters": [
100511        {
100512          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100513          "in": "query",
100514          "name": "allowWatchBookmarks",
100515          "type": "boolean",
100516          "uniqueItems": true
100517        },
100518        {
100519          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100520          "in": "query",
100521          "name": "continue",
100522          "type": "string",
100523          "uniqueItems": true
100524        },
100525        {
100526          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100527          "in": "query",
100528          "name": "fieldSelector",
100529          "type": "string",
100530          "uniqueItems": true
100531        },
100532        {
100533          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100534          "in": "query",
100535          "name": "labelSelector",
100536          "type": "string",
100537          "uniqueItems": true
100538        },
100539        {
100540          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100541          "in": "query",
100542          "name": "limit",
100543          "type": "integer",
100544          "uniqueItems": true
100545        },
100546        {
100547          "description": "name of the Role",
100548          "in": "path",
100549          "name": "name",
100550          "required": true,
100551          "type": "string",
100552          "uniqueItems": true
100553        },
100554        {
100555          "description": "object name and auth scope, such as for teams and projects",
100556          "in": "path",
100557          "name": "namespace",
100558          "required": true,
100559          "type": "string",
100560          "uniqueItems": true
100561        },
100562        {
100563          "description": "If 'true', then the output is pretty printed.",
100564          "in": "query",
100565          "name": "pretty",
100566          "type": "string",
100567          "uniqueItems": true
100568        },
100569        {
100570          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100571          "in": "query",
100572          "name": "resourceVersion",
100573          "type": "string",
100574          "uniqueItems": true
100575        },
100576        {
100577          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100578          "in": "query",
100579          "name": "timeoutSeconds",
100580          "type": "integer",
100581          "uniqueItems": true
100582        },
100583        {
100584          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100585          "in": "query",
100586          "name": "watch",
100587          "type": "boolean",
100588          "uniqueItems": true
100589        }
100590      ]
100591    },
100592    "/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings": {
100593      "get": {
100594        "consumes": [
100595          "*/*"
100596        ],
100597        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
100598        "operationId": "watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces",
100599        "produces": [
100600          "application/json",
100601          "application/yaml",
100602          "application/vnd.kubernetes.protobuf",
100603          "application/json;stream=watch",
100604          "application/vnd.kubernetes.protobuf;stream=watch"
100605        ],
100606        "responses": {
100607          "200": {
100608            "description": "OK",
100609            "schema": {
100610              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100611            }
100612          },
100613          "401": {
100614            "description": "Unauthorized"
100615          }
100616        },
100617        "schemes": [
100618          "https"
100619        ],
100620        "tags": [
100621          "rbacAuthorization_v1beta1"
100622        ],
100623        "x-kubernetes-action": "watchlist",
100624        "x-kubernetes-group-version-kind": {
100625          "group": "rbac.authorization.k8s.io",
100626          "kind": "RoleBinding",
100627          "version": "v1beta1"
100628        }
100629      },
100630      "parameters": [
100631        {
100632          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100633          "in": "query",
100634          "name": "allowWatchBookmarks",
100635          "type": "boolean",
100636          "uniqueItems": true
100637        },
100638        {
100639          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100640          "in": "query",
100641          "name": "continue",
100642          "type": "string",
100643          "uniqueItems": true
100644        },
100645        {
100646          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100647          "in": "query",
100648          "name": "fieldSelector",
100649          "type": "string",
100650          "uniqueItems": true
100651        },
100652        {
100653          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100654          "in": "query",
100655          "name": "labelSelector",
100656          "type": "string",
100657          "uniqueItems": true
100658        },
100659        {
100660          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100661          "in": "query",
100662          "name": "limit",
100663          "type": "integer",
100664          "uniqueItems": true
100665        },
100666        {
100667          "description": "If 'true', then the output is pretty printed.",
100668          "in": "query",
100669          "name": "pretty",
100670          "type": "string",
100671          "uniqueItems": true
100672        },
100673        {
100674          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100675          "in": "query",
100676          "name": "resourceVersion",
100677          "type": "string",
100678          "uniqueItems": true
100679        },
100680        {
100681          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100682          "in": "query",
100683          "name": "timeoutSeconds",
100684          "type": "integer",
100685          "uniqueItems": true
100686        },
100687        {
100688          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100689          "in": "query",
100690          "name": "watch",
100691          "type": "boolean",
100692          "uniqueItems": true
100693        }
100694      ]
100695    },
100696    "/apis/rbac.authorization.k8s.io/v1beta1/watch/roles": {
100697      "get": {
100698        "consumes": [
100699          "*/*"
100700        ],
100701        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
100702        "operationId": "watchRbacAuthorizationV1beta1RoleListForAllNamespaces",
100703        "produces": [
100704          "application/json",
100705          "application/yaml",
100706          "application/vnd.kubernetes.protobuf",
100707          "application/json;stream=watch",
100708          "application/vnd.kubernetes.protobuf;stream=watch"
100709        ],
100710        "responses": {
100711          "200": {
100712            "description": "OK",
100713            "schema": {
100714              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
100715            }
100716          },
100717          "401": {
100718            "description": "Unauthorized"
100719          }
100720        },
100721        "schemes": [
100722          "https"
100723        ],
100724        "tags": [
100725          "rbacAuthorization_v1beta1"
100726        ],
100727        "x-kubernetes-action": "watchlist",
100728        "x-kubernetes-group-version-kind": {
100729          "group": "rbac.authorization.k8s.io",
100730          "kind": "Role",
100731          "version": "v1beta1"
100732        }
100733      },
100734      "parameters": [
100735        {
100736          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100737          "in": "query",
100738          "name": "allowWatchBookmarks",
100739          "type": "boolean",
100740          "uniqueItems": true
100741        },
100742        {
100743          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100744          "in": "query",
100745          "name": "continue",
100746          "type": "string",
100747          "uniqueItems": true
100748        },
100749        {
100750          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100751          "in": "query",
100752          "name": "fieldSelector",
100753          "type": "string",
100754          "uniqueItems": true
100755        },
100756        {
100757          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100758          "in": "query",
100759          "name": "labelSelector",
100760          "type": "string",
100761          "uniqueItems": true
100762        },
100763        {
100764          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100765          "in": "query",
100766          "name": "limit",
100767          "type": "integer",
100768          "uniqueItems": true
100769        },
100770        {
100771          "description": "If 'true', then the output is pretty printed.",
100772          "in": "query",
100773          "name": "pretty",
100774          "type": "string",
100775          "uniqueItems": true
100776        },
100777        {
100778          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100779          "in": "query",
100780          "name": "resourceVersion",
100781          "type": "string",
100782          "uniqueItems": true
100783        },
100784        {
100785          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100786          "in": "query",
100787          "name": "timeoutSeconds",
100788          "type": "integer",
100789          "uniqueItems": true
100790        },
100791        {
100792          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100793          "in": "query",
100794          "name": "watch",
100795          "type": "boolean",
100796          "uniqueItems": true
100797        }
100798      ]
100799    },
100800    "/apis/scheduling.k8s.io/": {
100801      "get": {
100802        "consumes": [
100803          "application/json",
100804          "application/yaml",
100805          "application/vnd.kubernetes.protobuf"
100806        ],
100807        "description": "get information of a group",
100808        "operationId": "getSchedulingAPIGroup",
100809        "produces": [
100810          "application/json",
100811          "application/yaml",
100812          "application/vnd.kubernetes.protobuf"
100813        ],
100814        "responses": {
100815          "200": {
100816            "description": "OK",
100817            "schema": {
100818              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
100819            }
100820          },
100821          "401": {
100822            "description": "Unauthorized"
100823          }
100824        },
100825        "schemes": [
100826          "https"
100827        ],
100828        "tags": [
100829          "scheduling"
100830        ]
100831      }
100832    },
100833    "/apis/scheduling.k8s.io/v1/": {
100834      "get": {
100835        "consumes": [
100836          "application/json",
100837          "application/yaml",
100838          "application/vnd.kubernetes.protobuf"
100839        ],
100840        "description": "get available resources",
100841        "operationId": "getSchedulingV1APIResources",
100842        "produces": [
100843          "application/json",
100844          "application/yaml",
100845          "application/vnd.kubernetes.protobuf"
100846        ],
100847        "responses": {
100848          "200": {
100849            "description": "OK",
100850            "schema": {
100851              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
100852            }
100853          },
100854          "401": {
100855            "description": "Unauthorized"
100856          }
100857        },
100858        "schemes": [
100859          "https"
100860        ],
100861        "tags": [
100862          "scheduling_v1"
100863        ]
100864      }
100865    },
100866    "/apis/scheduling.k8s.io/v1/priorityclasses": {
100867      "delete": {
100868        "consumes": [
100869          "*/*"
100870        ],
100871        "description": "delete collection of PriorityClass",
100872        "operationId": "deleteSchedulingV1CollectionPriorityClass",
100873        "parameters": [
100874          {
100875            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
100876            "in": "query",
100877            "name": "allowWatchBookmarks",
100878            "type": "boolean",
100879            "uniqueItems": true
100880          },
100881          {
100882            "in": "body",
100883            "name": "body",
100884            "schema": {
100885              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
100886            }
100887          },
100888          {
100889            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
100890            "in": "query",
100891            "name": "continue",
100892            "type": "string",
100893            "uniqueItems": true
100894          },
100895          {
100896            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
100897            "in": "query",
100898            "name": "dryRun",
100899            "type": "string",
100900            "uniqueItems": true
100901          },
100902          {
100903            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
100904            "in": "query",
100905            "name": "fieldSelector",
100906            "type": "string",
100907            "uniqueItems": true
100908          },
100909          {
100910            "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.",
100911            "in": "query",
100912            "name": "gracePeriodSeconds",
100913            "type": "integer",
100914            "uniqueItems": true
100915          },
100916          {
100917            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
100918            "in": "query",
100919            "name": "labelSelector",
100920            "type": "string",
100921            "uniqueItems": true
100922          },
100923          {
100924            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
100925            "in": "query",
100926            "name": "limit",
100927            "type": "integer",
100928            "uniqueItems": true
100929          },
100930          {
100931            "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.",
100932            "in": "query",
100933            "name": "orphanDependents",
100934            "type": "boolean",
100935            "uniqueItems": true
100936          },
100937          {
100938            "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.",
100939            "in": "query",
100940            "name": "propagationPolicy",
100941            "type": "string",
100942            "uniqueItems": true
100943          },
100944          {
100945            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
100946            "in": "query",
100947            "name": "resourceVersion",
100948            "type": "string",
100949            "uniqueItems": true
100950          },
100951          {
100952            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
100953            "in": "query",
100954            "name": "timeoutSeconds",
100955            "type": "integer",
100956            "uniqueItems": true
100957          },
100958          {
100959            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
100960            "in": "query",
100961            "name": "watch",
100962            "type": "boolean",
100963            "uniqueItems": true
100964          }
100965        ],
100966        "produces": [
100967          "application/json",
100968          "application/yaml",
100969          "application/vnd.kubernetes.protobuf"
100970        ],
100971        "responses": {
100972          "200": {
100973            "description": "OK",
100974            "schema": {
100975              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
100976            }
100977          },
100978          "401": {
100979            "description": "Unauthorized"
100980          }
100981        },
100982        "schemes": [
100983          "https"
100984        ],
100985        "tags": [
100986          "scheduling_v1"
100987        ],
100988        "x-kubernetes-action": "deletecollection",
100989        "x-kubernetes-group-version-kind": {
100990          "group": "scheduling.k8s.io",
100991          "kind": "PriorityClass",
100992          "version": "v1"
100993        }
100994      },
100995      "get": {
100996        "consumes": [
100997          "*/*"
100998        ],
100999        "description": "list or watch objects of kind PriorityClass",
101000        "operationId": "listSchedulingV1PriorityClass",
101001        "parameters": [
101002          {
101003            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
101004            "in": "query",
101005            "name": "allowWatchBookmarks",
101006            "type": "boolean",
101007            "uniqueItems": true
101008          },
101009          {
101010            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101011            "in": "query",
101012            "name": "continue",
101013            "type": "string",
101014            "uniqueItems": true
101015          },
101016          {
101017            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101018            "in": "query",
101019            "name": "fieldSelector",
101020            "type": "string",
101021            "uniqueItems": true
101022          },
101023          {
101024            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101025            "in": "query",
101026            "name": "labelSelector",
101027            "type": "string",
101028            "uniqueItems": true
101029          },
101030          {
101031            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101032            "in": "query",
101033            "name": "limit",
101034            "type": "integer",
101035            "uniqueItems": true
101036          },
101037          {
101038            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
101039            "in": "query",
101040            "name": "resourceVersion",
101041            "type": "string",
101042            "uniqueItems": true
101043          },
101044          {
101045            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101046            "in": "query",
101047            "name": "timeoutSeconds",
101048            "type": "integer",
101049            "uniqueItems": true
101050          },
101051          {
101052            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101053            "in": "query",
101054            "name": "watch",
101055            "type": "boolean",
101056            "uniqueItems": true
101057          }
101058        ],
101059        "produces": [
101060          "application/json",
101061          "application/yaml",
101062          "application/vnd.kubernetes.protobuf",
101063          "application/json;stream=watch",
101064          "application/vnd.kubernetes.protobuf;stream=watch"
101065        ],
101066        "responses": {
101067          "200": {
101068            "description": "OK",
101069            "schema": {
101070              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClassList"
101071            }
101072          },
101073          "401": {
101074            "description": "Unauthorized"
101075          }
101076        },
101077        "schemes": [
101078          "https"
101079        ],
101080        "tags": [
101081          "scheduling_v1"
101082        ],
101083        "x-kubernetes-action": "list",
101084        "x-kubernetes-group-version-kind": {
101085          "group": "scheduling.k8s.io",
101086          "kind": "PriorityClass",
101087          "version": "v1"
101088        }
101089      },
101090      "parameters": [
101091        {
101092          "description": "If 'true', then the output is pretty printed.",
101093          "in": "query",
101094          "name": "pretty",
101095          "type": "string",
101096          "uniqueItems": true
101097        }
101098      ],
101099      "post": {
101100        "consumes": [
101101          "*/*"
101102        ],
101103        "description": "create a PriorityClass",
101104        "operationId": "createSchedulingV1PriorityClass",
101105        "parameters": [
101106          {
101107            "in": "body",
101108            "name": "body",
101109            "required": true,
101110            "schema": {
101111              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101112            }
101113          },
101114          {
101115            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101116            "in": "query",
101117            "name": "dryRun",
101118            "type": "string",
101119            "uniqueItems": true
101120          },
101121          {
101122            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101123            "in": "query",
101124            "name": "fieldManager",
101125            "type": "string",
101126            "uniqueItems": true
101127          }
101128        ],
101129        "produces": [
101130          "application/json",
101131          "application/yaml",
101132          "application/vnd.kubernetes.protobuf"
101133        ],
101134        "responses": {
101135          "200": {
101136            "description": "OK",
101137            "schema": {
101138              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101139            }
101140          },
101141          "201": {
101142            "description": "Created",
101143            "schema": {
101144              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101145            }
101146          },
101147          "202": {
101148            "description": "Accepted",
101149            "schema": {
101150              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101151            }
101152          },
101153          "401": {
101154            "description": "Unauthorized"
101155          }
101156        },
101157        "schemes": [
101158          "https"
101159        ],
101160        "tags": [
101161          "scheduling_v1"
101162        ],
101163        "x-kubernetes-action": "post",
101164        "x-kubernetes-group-version-kind": {
101165          "group": "scheduling.k8s.io",
101166          "kind": "PriorityClass",
101167          "version": "v1"
101168        }
101169      }
101170    },
101171    "/apis/scheduling.k8s.io/v1/priorityclasses/{name}": {
101172      "delete": {
101173        "consumes": [
101174          "*/*"
101175        ],
101176        "description": "delete a PriorityClass",
101177        "operationId": "deleteSchedulingV1PriorityClass",
101178        "parameters": [
101179          {
101180            "in": "body",
101181            "name": "body",
101182            "schema": {
101183              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101184            }
101185          },
101186          {
101187            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101188            "in": "query",
101189            "name": "dryRun",
101190            "type": "string",
101191            "uniqueItems": true
101192          },
101193          {
101194            "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.",
101195            "in": "query",
101196            "name": "gracePeriodSeconds",
101197            "type": "integer",
101198            "uniqueItems": true
101199          },
101200          {
101201            "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.",
101202            "in": "query",
101203            "name": "orphanDependents",
101204            "type": "boolean",
101205            "uniqueItems": true
101206          },
101207          {
101208            "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.",
101209            "in": "query",
101210            "name": "propagationPolicy",
101211            "type": "string",
101212            "uniqueItems": true
101213          }
101214        ],
101215        "produces": [
101216          "application/json",
101217          "application/yaml",
101218          "application/vnd.kubernetes.protobuf"
101219        ],
101220        "responses": {
101221          "200": {
101222            "description": "OK",
101223            "schema": {
101224              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101225            }
101226          },
101227          "202": {
101228            "description": "Accepted",
101229            "schema": {
101230              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101231            }
101232          },
101233          "401": {
101234            "description": "Unauthorized"
101235          }
101236        },
101237        "schemes": [
101238          "https"
101239        ],
101240        "tags": [
101241          "scheduling_v1"
101242        ],
101243        "x-kubernetes-action": "delete",
101244        "x-kubernetes-group-version-kind": {
101245          "group": "scheduling.k8s.io",
101246          "kind": "PriorityClass",
101247          "version": "v1"
101248        }
101249      },
101250      "get": {
101251        "consumes": [
101252          "*/*"
101253        ],
101254        "description": "read the specified PriorityClass",
101255        "operationId": "readSchedulingV1PriorityClass",
101256        "parameters": [
101257          {
101258            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
101259            "in": "query",
101260            "name": "exact",
101261            "type": "boolean",
101262            "uniqueItems": true
101263          },
101264          {
101265            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
101266            "in": "query",
101267            "name": "export",
101268            "type": "boolean",
101269            "uniqueItems": true
101270          }
101271        ],
101272        "produces": [
101273          "application/json",
101274          "application/yaml",
101275          "application/vnd.kubernetes.protobuf"
101276        ],
101277        "responses": {
101278          "200": {
101279            "description": "OK",
101280            "schema": {
101281              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101282            }
101283          },
101284          "401": {
101285            "description": "Unauthorized"
101286          }
101287        },
101288        "schemes": [
101289          "https"
101290        ],
101291        "tags": [
101292          "scheduling_v1"
101293        ],
101294        "x-kubernetes-action": "get",
101295        "x-kubernetes-group-version-kind": {
101296          "group": "scheduling.k8s.io",
101297          "kind": "PriorityClass",
101298          "version": "v1"
101299        }
101300      },
101301      "parameters": [
101302        {
101303          "description": "name of the PriorityClass",
101304          "in": "path",
101305          "name": "name",
101306          "required": true,
101307          "type": "string",
101308          "uniqueItems": true
101309        },
101310        {
101311          "description": "If 'true', then the output is pretty printed.",
101312          "in": "query",
101313          "name": "pretty",
101314          "type": "string",
101315          "uniqueItems": true
101316        }
101317      ],
101318      "patch": {
101319        "consumes": [
101320          "application/json-patch+json",
101321          "application/merge-patch+json",
101322          "application/strategic-merge-patch+json"
101323        ],
101324        "description": "partially update the specified PriorityClass",
101325        "operationId": "patchSchedulingV1PriorityClass",
101326        "parameters": [
101327          {
101328            "in": "body",
101329            "name": "body",
101330            "required": true,
101331            "schema": {
101332              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
101333            }
101334          },
101335          {
101336            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101337            "in": "query",
101338            "name": "dryRun",
101339            "type": "string",
101340            "uniqueItems": true
101341          },
101342          {
101343            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
101344            "in": "query",
101345            "name": "fieldManager",
101346            "type": "string",
101347            "uniqueItems": true
101348          },
101349          {
101350            "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.",
101351            "in": "query",
101352            "name": "force",
101353            "type": "boolean",
101354            "uniqueItems": true
101355          }
101356        ],
101357        "produces": [
101358          "application/json",
101359          "application/yaml",
101360          "application/vnd.kubernetes.protobuf"
101361        ],
101362        "responses": {
101363          "200": {
101364            "description": "OK",
101365            "schema": {
101366              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101367            }
101368          },
101369          "401": {
101370            "description": "Unauthorized"
101371          }
101372        },
101373        "schemes": [
101374          "https"
101375        ],
101376        "tags": [
101377          "scheduling_v1"
101378        ],
101379        "x-kubernetes-action": "patch",
101380        "x-kubernetes-group-version-kind": {
101381          "group": "scheduling.k8s.io",
101382          "kind": "PriorityClass",
101383          "version": "v1"
101384        }
101385      },
101386      "put": {
101387        "consumes": [
101388          "*/*"
101389        ],
101390        "description": "replace the specified PriorityClass",
101391        "operationId": "replaceSchedulingV1PriorityClass",
101392        "parameters": [
101393          {
101394            "in": "body",
101395            "name": "body",
101396            "required": true,
101397            "schema": {
101398              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101399            }
101400          },
101401          {
101402            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101403            "in": "query",
101404            "name": "dryRun",
101405            "type": "string",
101406            "uniqueItems": true
101407          },
101408          {
101409            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101410            "in": "query",
101411            "name": "fieldManager",
101412            "type": "string",
101413            "uniqueItems": true
101414          }
101415        ],
101416        "produces": [
101417          "application/json",
101418          "application/yaml",
101419          "application/vnd.kubernetes.protobuf"
101420        ],
101421        "responses": {
101422          "200": {
101423            "description": "OK",
101424            "schema": {
101425              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101426            }
101427          },
101428          "201": {
101429            "description": "Created",
101430            "schema": {
101431              "$ref": "#/definitions/io.k8s.api.scheduling.v1.PriorityClass"
101432            }
101433          },
101434          "401": {
101435            "description": "Unauthorized"
101436          }
101437        },
101438        "schemes": [
101439          "https"
101440        ],
101441        "tags": [
101442          "scheduling_v1"
101443        ],
101444        "x-kubernetes-action": "put",
101445        "x-kubernetes-group-version-kind": {
101446          "group": "scheduling.k8s.io",
101447          "kind": "PriorityClass",
101448          "version": "v1"
101449        }
101450      }
101451    },
101452    "/apis/scheduling.k8s.io/v1/watch/priorityclasses": {
101453      "get": {
101454        "consumes": [
101455          "*/*"
101456        ],
101457        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
101458        "operationId": "watchSchedulingV1PriorityClassList",
101459        "produces": [
101460          "application/json",
101461          "application/yaml",
101462          "application/vnd.kubernetes.protobuf",
101463          "application/json;stream=watch",
101464          "application/vnd.kubernetes.protobuf;stream=watch"
101465        ],
101466        "responses": {
101467          "200": {
101468            "description": "OK",
101469            "schema": {
101470              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
101471            }
101472          },
101473          "401": {
101474            "description": "Unauthorized"
101475          }
101476        },
101477        "schemes": [
101478          "https"
101479        ],
101480        "tags": [
101481          "scheduling_v1"
101482        ],
101483        "x-kubernetes-action": "watchlist",
101484        "x-kubernetes-group-version-kind": {
101485          "group": "scheduling.k8s.io",
101486          "kind": "PriorityClass",
101487          "version": "v1"
101488        }
101489      },
101490      "parameters": [
101491        {
101492          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
101493          "in": "query",
101494          "name": "allowWatchBookmarks",
101495          "type": "boolean",
101496          "uniqueItems": true
101497        },
101498        {
101499          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101500          "in": "query",
101501          "name": "continue",
101502          "type": "string",
101503          "uniqueItems": true
101504        },
101505        {
101506          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101507          "in": "query",
101508          "name": "fieldSelector",
101509          "type": "string",
101510          "uniqueItems": true
101511        },
101512        {
101513          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101514          "in": "query",
101515          "name": "labelSelector",
101516          "type": "string",
101517          "uniqueItems": true
101518        },
101519        {
101520          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101521          "in": "query",
101522          "name": "limit",
101523          "type": "integer",
101524          "uniqueItems": true
101525        },
101526        {
101527          "description": "If 'true', then the output is pretty printed.",
101528          "in": "query",
101529          "name": "pretty",
101530          "type": "string",
101531          "uniqueItems": true
101532        },
101533        {
101534          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
101535          "in": "query",
101536          "name": "resourceVersion",
101537          "type": "string",
101538          "uniqueItems": true
101539        },
101540        {
101541          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101542          "in": "query",
101543          "name": "timeoutSeconds",
101544          "type": "integer",
101545          "uniqueItems": true
101546        },
101547        {
101548          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101549          "in": "query",
101550          "name": "watch",
101551          "type": "boolean",
101552          "uniqueItems": true
101553        }
101554      ]
101555    },
101556    "/apis/scheduling.k8s.io/v1/watch/priorityclasses/{name}": {
101557      "get": {
101558        "consumes": [
101559          "*/*"
101560        ],
101561        "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.",
101562        "operationId": "watchSchedulingV1PriorityClass",
101563        "produces": [
101564          "application/json",
101565          "application/yaml",
101566          "application/vnd.kubernetes.protobuf",
101567          "application/json;stream=watch",
101568          "application/vnd.kubernetes.protobuf;stream=watch"
101569        ],
101570        "responses": {
101571          "200": {
101572            "description": "OK",
101573            "schema": {
101574              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
101575            }
101576          },
101577          "401": {
101578            "description": "Unauthorized"
101579          }
101580        },
101581        "schemes": [
101582          "https"
101583        ],
101584        "tags": [
101585          "scheduling_v1"
101586        ],
101587        "x-kubernetes-action": "watch",
101588        "x-kubernetes-group-version-kind": {
101589          "group": "scheduling.k8s.io",
101590          "kind": "PriorityClass",
101591          "version": "v1"
101592        }
101593      },
101594      "parameters": [
101595        {
101596          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
101597          "in": "query",
101598          "name": "allowWatchBookmarks",
101599          "type": "boolean",
101600          "uniqueItems": true
101601        },
101602        {
101603          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101604          "in": "query",
101605          "name": "continue",
101606          "type": "string",
101607          "uniqueItems": true
101608        },
101609        {
101610          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101611          "in": "query",
101612          "name": "fieldSelector",
101613          "type": "string",
101614          "uniqueItems": true
101615        },
101616        {
101617          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101618          "in": "query",
101619          "name": "labelSelector",
101620          "type": "string",
101621          "uniqueItems": true
101622        },
101623        {
101624          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101625          "in": "query",
101626          "name": "limit",
101627          "type": "integer",
101628          "uniqueItems": true
101629        },
101630        {
101631          "description": "name of the PriorityClass",
101632          "in": "path",
101633          "name": "name",
101634          "required": true,
101635          "type": "string",
101636          "uniqueItems": true
101637        },
101638        {
101639          "description": "If 'true', then the output is pretty printed.",
101640          "in": "query",
101641          "name": "pretty",
101642          "type": "string",
101643          "uniqueItems": true
101644        },
101645        {
101646          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
101647          "in": "query",
101648          "name": "resourceVersion",
101649          "type": "string",
101650          "uniqueItems": true
101651        },
101652        {
101653          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101654          "in": "query",
101655          "name": "timeoutSeconds",
101656          "type": "integer",
101657          "uniqueItems": true
101658        },
101659        {
101660          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101661          "in": "query",
101662          "name": "watch",
101663          "type": "boolean",
101664          "uniqueItems": true
101665        }
101666      ]
101667    },
101668    "/apis/scheduling.k8s.io/v1alpha1/": {
101669      "get": {
101670        "consumes": [
101671          "application/json",
101672          "application/yaml",
101673          "application/vnd.kubernetes.protobuf"
101674        ],
101675        "description": "get available resources",
101676        "operationId": "getSchedulingV1alpha1APIResources",
101677        "produces": [
101678          "application/json",
101679          "application/yaml",
101680          "application/vnd.kubernetes.protobuf"
101681        ],
101682        "responses": {
101683          "200": {
101684            "description": "OK",
101685            "schema": {
101686              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
101687            }
101688          },
101689          "401": {
101690            "description": "Unauthorized"
101691          }
101692        },
101693        "schemes": [
101694          "https"
101695        ],
101696        "tags": [
101697          "scheduling_v1alpha1"
101698        ]
101699      }
101700    },
101701    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses": {
101702      "delete": {
101703        "consumes": [
101704          "*/*"
101705        ],
101706        "description": "delete collection of PriorityClass",
101707        "operationId": "deleteSchedulingV1alpha1CollectionPriorityClass",
101708        "parameters": [
101709          {
101710            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
101711            "in": "query",
101712            "name": "allowWatchBookmarks",
101713            "type": "boolean",
101714            "uniqueItems": true
101715          },
101716          {
101717            "in": "body",
101718            "name": "body",
101719            "schema": {
101720              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
101721            }
101722          },
101723          {
101724            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101725            "in": "query",
101726            "name": "continue",
101727            "type": "string",
101728            "uniqueItems": true
101729          },
101730          {
101731            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101732            "in": "query",
101733            "name": "dryRun",
101734            "type": "string",
101735            "uniqueItems": true
101736          },
101737          {
101738            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101739            "in": "query",
101740            "name": "fieldSelector",
101741            "type": "string",
101742            "uniqueItems": true
101743          },
101744          {
101745            "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.",
101746            "in": "query",
101747            "name": "gracePeriodSeconds",
101748            "type": "integer",
101749            "uniqueItems": true
101750          },
101751          {
101752            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101753            "in": "query",
101754            "name": "labelSelector",
101755            "type": "string",
101756            "uniqueItems": true
101757          },
101758          {
101759            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101760            "in": "query",
101761            "name": "limit",
101762            "type": "integer",
101763            "uniqueItems": true
101764          },
101765          {
101766            "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.",
101767            "in": "query",
101768            "name": "orphanDependents",
101769            "type": "boolean",
101770            "uniqueItems": true
101771          },
101772          {
101773            "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.",
101774            "in": "query",
101775            "name": "propagationPolicy",
101776            "type": "string",
101777            "uniqueItems": true
101778          },
101779          {
101780            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
101781            "in": "query",
101782            "name": "resourceVersion",
101783            "type": "string",
101784            "uniqueItems": true
101785          },
101786          {
101787            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101788            "in": "query",
101789            "name": "timeoutSeconds",
101790            "type": "integer",
101791            "uniqueItems": true
101792          },
101793          {
101794            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101795            "in": "query",
101796            "name": "watch",
101797            "type": "boolean",
101798            "uniqueItems": true
101799          }
101800        ],
101801        "produces": [
101802          "application/json",
101803          "application/yaml",
101804          "application/vnd.kubernetes.protobuf"
101805        ],
101806        "responses": {
101807          "200": {
101808            "description": "OK",
101809            "schema": {
101810              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
101811            }
101812          },
101813          "401": {
101814            "description": "Unauthorized"
101815          }
101816        },
101817        "schemes": [
101818          "https"
101819        ],
101820        "tags": [
101821          "scheduling_v1alpha1"
101822        ],
101823        "x-kubernetes-action": "deletecollection",
101824        "x-kubernetes-group-version-kind": {
101825          "group": "scheduling.k8s.io",
101826          "kind": "PriorityClass",
101827          "version": "v1alpha1"
101828        }
101829      },
101830      "get": {
101831        "consumes": [
101832          "*/*"
101833        ],
101834        "description": "list or watch objects of kind PriorityClass",
101835        "operationId": "listSchedulingV1alpha1PriorityClass",
101836        "parameters": [
101837          {
101838            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
101839            "in": "query",
101840            "name": "allowWatchBookmarks",
101841            "type": "boolean",
101842            "uniqueItems": true
101843          },
101844          {
101845            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
101846            "in": "query",
101847            "name": "continue",
101848            "type": "string",
101849            "uniqueItems": true
101850          },
101851          {
101852            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
101853            "in": "query",
101854            "name": "fieldSelector",
101855            "type": "string",
101856            "uniqueItems": true
101857          },
101858          {
101859            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
101860            "in": "query",
101861            "name": "labelSelector",
101862            "type": "string",
101863            "uniqueItems": true
101864          },
101865          {
101866            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
101867            "in": "query",
101868            "name": "limit",
101869            "type": "integer",
101870            "uniqueItems": true
101871          },
101872          {
101873            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
101874            "in": "query",
101875            "name": "resourceVersion",
101876            "type": "string",
101877            "uniqueItems": true
101878          },
101879          {
101880            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
101881            "in": "query",
101882            "name": "timeoutSeconds",
101883            "type": "integer",
101884            "uniqueItems": true
101885          },
101886          {
101887            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
101888            "in": "query",
101889            "name": "watch",
101890            "type": "boolean",
101891            "uniqueItems": true
101892          }
101893        ],
101894        "produces": [
101895          "application/json",
101896          "application/yaml",
101897          "application/vnd.kubernetes.protobuf",
101898          "application/json;stream=watch",
101899          "application/vnd.kubernetes.protobuf;stream=watch"
101900        ],
101901        "responses": {
101902          "200": {
101903            "description": "OK",
101904            "schema": {
101905              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClassList"
101906            }
101907          },
101908          "401": {
101909            "description": "Unauthorized"
101910          }
101911        },
101912        "schemes": [
101913          "https"
101914        ],
101915        "tags": [
101916          "scheduling_v1alpha1"
101917        ],
101918        "x-kubernetes-action": "list",
101919        "x-kubernetes-group-version-kind": {
101920          "group": "scheduling.k8s.io",
101921          "kind": "PriorityClass",
101922          "version": "v1alpha1"
101923        }
101924      },
101925      "parameters": [
101926        {
101927          "description": "If 'true', then the output is pretty printed.",
101928          "in": "query",
101929          "name": "pretty",
101930          "type": "string",
101931          "uniqueItems": true
101932        }
101933      ],
101934      "post": {
101935        "consumes": [
101936          "*/*"
101937        ],
101938        "description": "create a PriorityClass",
101939        "operationId": "createSchedulingV1alpha1PriorityClass",
101940        "parameters": [
101941          {
101942            "in": "body",
101943            "name": "body",
101944            "required": true,
101945            "schema": {
101946              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
101947            }
101948          },
101949          {
101950            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
101951            "in": "query",
101952            "name": "dryRun",
101953            "type": "string",
101954            "uniqueItems": true
101955          },
101956          {
101957            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
101958            "in": "query",
101959            "name": "fieldManager",
101960            "type": "string",
101961            "uniqueItems": true
101962          }
101963        ],
101964        "produces": [
101965          "application/json",
101966          "application/yaml",
101967          "application/vnd.kubernetes.protobuf"
101968        ],
101969        "responses": {
101970          "200": {
101971            "description": "OK",
101972            "schema": {
101973              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
101974            }
101975          },
101976          "201": {
101977            "description": "Created",
101978            "schema": {
101979              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
101980            }
101981          },
101982          "202": {
101983            "description": "Accepted",
101984            "schema": {
101985              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
101986            }
101987          },
101988          "401": {
101989            "description": "Unauthorized"
101990          }
101991        },
101992        "schemes": [
101993          "https"
101994        ],
101995        "tags": [
101996          "scheduling_v1alpha1"
101997        ],
101998        "x-kubernetes-action": "post",
101999        "x-kubernetes-group-version-kind": {
102000          "group": "scheduling.k8s.io",
102001          "kind": "PriorityClass",
102002          "version": "v1alpha1"
102003        }
102004      }
102005    },
102006    "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}": {
102007      "delete": {
102008        "consumes": [
102009          "*/*"
102010        ],
102011        "description": "delete a PriorityClass",
102012        "operationId": "deleteSchedulingV1alpha1PriorityClass",
102013        "parameters": [
102014          {
102015            "in": "body",
102016            "name": "body",
102017            "schema": {
102018              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102019            }
102020          },
102021          {
102022            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102023            "in": "query",
102024            "name": "dryRun",
102025            "type": "string",
102026            "uniqueItems": true
102027          },
102028          {
102029            "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.",
102030            "in": "query",
102031            "name": "gracePeriodSeconds",
102032            "type": "integer",
102033            "uniqueItems": true
102034          },
102035          {
102036            "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.",
102037            "in": "query",
102038            "name": "orphanDependents",
102039            "type": "boolean",
102040            "uniqueItems": true
102041          },
102042          {
102043            "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.",
102044            "in": "query",
102045            "name": "propagationPolicy",
102046            "type": "string",
102047            "uniqueItems": true
102048          }
102049        ],
102050        "produces": [
102051          "application/json",
102052          "application/yaml",
102053          "application/vnd.kubernetes.protobuf"
102054        ],
102055        "responses": {
102056          "200": {
102057            "description": "OK",
102058            "schema": {
102059              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102060            }
102061          },
102062          "202": {
102063            "description": "Accepted",
102064            "schema": {
102065              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102066            }
102067          },
102068          "401": {
102069            "description": "Unauthorized"
102070          }
102071        },
102072        "schemes": [
102073          "https"
102074        ],
102075        "tags": [
102076          "scheduling_v1alpha1"
102077        ],
102078        "x-kubernetes-action": "delete",
102079        "x-kubernetes-group-version-kind": {
102080          "group": "scheduling.k8s.io",
102081          "kind": "PriorityClass",
102082          "version": "v1alpha1"
102083        }
102084      },
102085      "get": {
102086        "consumes": [
102087          "*/*"
102088        ],
102089        "description": "read the specified PriorityClass",
102090        "operationId": "readSchedulingV1alpha1PriorityClass",
102091        "parameters": [
102092          {
102093            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
102094            "in": "query",
102095            "name": "exact",
102096            "type": "boolean",
102097            "uniqueItems": true
102098          },
102099          {
102100            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
102101            "in": "query",
102102            "name": "export",
102103            "type": "boolean",
102104            "uniqueItems": true
102105          }
102106        ],
102107        "produces": [
102108          "application/json",
102109          "application/yaml",
102110          "application/vnd.kubernetes.protobuf"
102111        ],
102112        "responses": {
102113          "200": {
102114            "description": "OK",
102115            "schema": {
102116              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
102117            }
102118          },
102119          "401": {
102120            "description": "Unauthorized"
102121          }
102122        },
102123        "schemes": [
102124          "https"
102125        ],
102126        "tags": [
102127          "scheduling_v1alpha1"
102128        ],
102129        "x-kubernetes-action": "get",
102130        "x-kubernetes-group-version-kind": {
102131          "group": "scheduling.k8s.io",
102132          "kind": "PriorityClass",
102133          "version": "v1alpha1"
102134        }
102135      },
102136      "parameters": [
102137        {
102138          "description": "name of the PriorityClass",
102139          "in": "path",
102140          "name": "name",
102141          "required": true,
102142          "type": "string",
102143          "uniqueItems": true
102144        },
102145        {
102146          "description": "If 'true', then the output is pretty printed.",
102147          "in": "query",
102148          "name": "pretty",
102149          "type": "string",
102150          "uniqueItems": true
102151        }
102152      ],
102153      "patch": {
102154        "consumes": [
102155          "application/json-patch+json",
102156          "application/merge-patch+json",
102157          "application/strategic-merge-patch+json"
102158        ],
102159        "description": "partially update the specified PriorityClass",
102160        "operationId": "patchSchedulingV1alpha1PriorityClass",
102161        "parameters": [
102162          {
102163            "in": "body",
102164            "name": "body",
102165            "required": true,
102166            "schema": {
102167              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
102168            }
102169          },
102170          {
102171            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102172            "in": "query",
102173            "name": "dryRun",
102174            "type": "string",
102175            "uniqueItems": true
102176          },
102177          {
102178            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
102179            "in": "query",
102180            "name": "fieldManager",
102181            "type": "string",
102182            "uniqueItems": true
102183          },
102184          {
102185            "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.",
102186            "in": "query",
102187            "name": "force",
102188            "type": "boolean",
102189            "uniqueItems": true
102190          }
102191        ],
102192        "produces": [
102193          "application/json",
102194          "application/yaml",
102195          "application/vnd.kubernetes.protobuf"
102196        ],
102197        "responses": {
102198          "200": {
102199            "description": "OK",
102200            "schema": {
102201              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
102202            }
102203          },
102204          "401": {
102205            "description": "Unauthorized"
102206          }
102207        },
102208        "schemes": [
102209          "https"
102210        ],
102211        "tags": [
102212          "scheduling_v1alpha1"
102213        ],
102214        "x-kubernetes-action": "patch",
102215        "x-kubernetes-group-version-kind": {
102216          "group": "scheduling.k8s.io",
102217          "kind": "PriorityClass",
102218          "version": "v1alpha1"
102219        }
102220      },
102221      "put": {
102222        "consumes": [
102223          "*/*"
102224        ],
102225        "description": "replace the specified PriorityClass",
102226        "operationId": "replaceSchedulingV1alpha1PriorityClass",
102227        "parameters": [
102228          {
102229            "in": "body",
102230            "name": "body",
102231            "required": true,
102232            "schema": {
102233              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
102234            }
102235          },
102236          {
102237            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102238            "in": "query",
102239            "name": "dryRun",
102240            "type": "string",
102241            "uniqueItems": true
102242          },
102243          {
102244            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102245            "in": "query",
102246            "name": "fieldManager",
102247            "type": "string",
102248            "uniqueItems": true
102249          }
102250        ],
102251        "produces": [
102252          "application/json",
102253          "application/yaml",
102254          "application/vnd.kubernetes.protobuf"
102255        ],
102256        "responses": {
102257          "200": {
102258            "description": "OK",
102259            "schema": {
102260              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
102261            }
102262          },
102263          "201": {
102264            "description": "Created",
102265            "schema": {
102266              "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass"
102267            }
102268          },
102269          "401": {
102270            "description": "Unauthorized"
102271          }
102272        },
102273        "schemes": [
102274          "https"
102275        ],
102276        "tags": [
102277          "scheduling_v1alpha1"
102278        ],
102279        "x-kubernetes-action": "put",
102280        "x-kubernetes-group-version-kind": {
102281          "group": "scheduling.k8s.io",
102282          "kind": "PriorityClass",
102283          "version": "v1alpha1"
102284        }
102285      }
102286    },
102287    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses": {
102288      "get": {
102289        "consumes": [
102290          "*/*"
102291        ],
102292        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
102293        "operationId": "watchSchedulingV1alpha1PriorityClassList",
102294        "produces": [
102295          "application/json",
102296          "application/yaml",
102297          "application/vnd.kubernetes.protobuf",
102298          "application/json;stream=watch",
102299          "application/vnd.kubernetes.protobuf;stream=watch"
102300        ],
102301        "responses": {
102302          "200": {
102303            "description": "OK",
102304            "schema": {
102305              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
102306            }
102307          },
102308          "401": {
102309            "description": "Unauthorized"
102310          }
102311        },
102312        "schemes": [
102313          "https"
102314        ],
102315        "tags": [
102316          "scheduling_v1alpha1"
102317        ],
102318        "x-kubernetes-action": "watchlist",
102319        "x-kubernetes-group-version-kind": {
102320          "group": "scheduling.k8s.io",
102321          "kind": "PriorityClass",
102322          "version": "v1alpha1"
102323        }
102324      },
102325      "parameters": [
102326        {
102327          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
102328          "in": "query",
102329          "name": "allowWatchBookmarks",
102330          "type": "boolean",
102331          "uniqueItems": true
102332        },
102333        {
102334          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102335          "in": "query",
102336          "name": "continue",
102337          "type": "string",
102338          "uniqueItems": true
102339        },
102340        {
102341          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102342          "in": "query",
102343          "name": "fieldSelector",
102344          "type": "string",
102345          "uniqueItems": true
102346        },
102347        {
102348          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102349          "in": "query",
102350          "name": "labelSelector",
102351          "type": "string",
102352          "uniqueItems": true
102353        },
102354        {
102355          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102356          "in": "query",
102357          "name": "limit",
102358          "type": "integer",
102359          "uniqueItems": true
102360        },
102361        {
102362          "description": "If 'true', then the output is pretty printed.",
102363          "in": "query",
102364          "name": "pretty",
102365          "type": "string",
102366          "uniqueItems": true
102367        },
102368        {
102369          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
102370          "in": "query",
102371          "name": "resourceVersion",
102372          "type": "string",
102373          "uniqueItems": true
102374        },
102375        {
102376          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102377          "in": "query",
102378          "name": "timeoutSeconds",
102379          "type": "integer",
102380          "uniqueItems": true
102381        },
102382        {
102383          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
102384          "in": "query",
102385          "name": "watch",
102386          "type": "boolean",
102387          "uniqueItems": true
102388        }
102389      ]
102390    },
102391    "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}": {
102392      "get": {
102393        "consumes": [
102394          "*/*"
102395        ],
102396        "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.",
102397        "operationId": "watchSchedulingV1alpha1PriorityClass",
102398        "produces": [
102399          "application/json",
102400          "application/yaml",
102401          "application/vnd.kubernetes.protobuf",
102402          "application/json;stream=watch",
102403          "application/vnd.kubernetes.protobuf;stream=watch"
102404        ],
102405        "responses": {
102406          "200": {
102407            "description": "OK",
102408            "schema": {
102409              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
102410            }
102411          },
102412          "401": {
102413            "description": "Unauthorized"
102414          }
102415        },
102416        "schemes": [
102417          "https"
102418        ],
102419        "tags": [
102420          "scheduling_v1alpha1"
102421        ],
102422        "x-kubernetes-action": "watch",
102423        "x-kubernetes-group-version-kind": {
102424          "group": "scheduling.k8s.io",
102425          "kind": "PriorityClass",
102426          "version": "v1alpha1"
102427        }
102428      },
102429      "parameters": [
102430        {
102431          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
102432          "in": "query",
102433          "name": "allowWatchBookmarks",
102434          "type": "boolean",
102435          "uniqueItems": true
102436        },
102437        {
102438          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102439          "in": "query",
102440          "name": "continue",
102441          "type": "string",
102442          "uniqueItems": true
102443        },
102444        {
102445          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102446          "in": "query",
102447          "name": "fieldSelector",
102448          "type": "string",
102449          "uniqueItems": true
102450        },
102451        {
102452          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102453          "in": "query",
102454          "name": "labelSelector",
102455          "type": "string",
102456          "uniqueItems": true
102457        },
102458        {
102459          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102460          "in": "query",
102461          "name": "limit",
102462          "type": "integer",
102463          "uniqueItems": true
102464        },
102465        {
102466          "description": "name of the PriorityClass",
102467          "in": "path",
102468          "name": "name",
102469          "required": true,
102470          "type": "string",
102471          "uniqueItems": true
102472        },
102473        {
102474          "description": "If 'true', then the output is pretty printed.",
102475          "in": "query",
102476          "name": "pretty",
102477          "type": "string",
102478          "uniqueItems": true
102479        },
102480        {
102481          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
102482          "in": "query",
102483          "name": "resourceVersion",
102484          "type": "string",
102485          "uniqueItems": true
102486        },
102487        {
102488          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102489          "in": "query",
102490          "name": "timeoutSeconds",
102491          "type": "integer",
102492          "uniqueItems": true
102493        },
102494        {
102495          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
102496          "in": "query",
102497          "name": "watch",
102498          "type": "boolean",
102499          "uniqueItems": true
102500        }
102501      ]
102502    },
102503    "/apis/scheduling.k8s.io/v1beta1/": {
102504      "get": {
102505        "consumes": [
102506          "application/json",
102507          "application/yaml",
102508          "application/vnd.kubernetes.protobuf"
102509        ],
102510        "description": "get available resources",
102511        "operationId": "getSchedulingV1beta1APIResources",
102512        "produces": [
102513          "application/json",
102514          "application/yaml",
102515          "application/vnd.kubernetes.protobuf"
102516        ],
102517        "responses": {
102518          "200": {
102519            "description": "OK",
102520            "schema": {
102521              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
102522            }
102523          },
102524          "401": {
102525            "description": "Unauthorized"
102526          }
102527        },
102528        "schemes": [
102529          "https"
102530        ],
102531        "tags": [
102532          "scheduling_v1beta1"
102533        ]
102534      }
102535    },
102536    "/apis/scheduling.k8s.io/v1beta1/priorityclasses": {
102537      "delete": {
102538        "consumes": [
102539          "*/*"
102540        ],
102541        "description": "delete collection of PriorityClass",
102542        "operationId": "deleteSchedulingV1beta1CollectionPriorityClass",
102543        "parameters": [
102544          {
102545            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
102546            "in": "query",
102547            "name": "allowWatchBookmarks",
102548            "type": "boolean",
102549            "uniqueItems": true
102550          },
102551          {
102552            "in": "body",
102553            "name": "body",
102554            "schema": {
102555              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102556            }
102557          },
102558          {
102559            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102560            "in": "query",
102561            "name": "continue",
102562            "type": "string",
102563            "uniqueItems": true
102564          },
102565          {
102566            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102567            "in": "query",
102568            "name": "dryRun",
102569            "type": "string",
102570            "uniqueItems": true
102571          },
102572          {
102573            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102574            "in": "query",
102575            "name": "fieldSelector",
102576            "type": "string",
102577            "uniqueItems": true
102578          },
102579          {
102580            "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.",
102581            "in": "query",
102582            "name": "gracePeriodSeconds",
102583            "type": "integer",
102584            "uniqueItems": true
102585          },
102586          {
102587            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102588            "in": "query",
102589            "name": "labelSelector",
102590            "type": "string",
102591            "uniqueItems": true
102592          },
102593          {
102594            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102595            "in": "query",
102596            "name": "limit",
102597            "type": "integer",
102598            "uniqueItems": true
102599          },
102600          {
102601            "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.",
102602            "in": "query",
102603            "name": "orphanDependents",
102604            "type": "boolean",
102605            "uniqueItems": true
102606          },
102607          {
102608            "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.",
102609            "in": "query",
102610            "name": "propagationPolicy",
102611            "type": "string",
102612            "uniqueItems": true
102613          },
102614          {
102615            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
102616            "in": "query",
102617            "name": "resourceVersion",
102618            "type": "string",
102619            "uniqueItems": true
102620          },
102621          {
102622            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102623            "in": "query",
102624            "name": "timeoutSeconds",
102625            "type": "integer",
102626            "uniqueItems": true
102627          },
102628          {
102629            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
102630            "in": "query",
102631            "name": "watch",
102632            "type": "boolean",
102633            "uniqueItems": true
102634          }
102635        ],
102636        "produces": [
102637          "application/json",
102638          "application/yaml",
102639          "application/vnd.kubernetes.protobuf"
102640        ],
102641        "responses": {
102642          "200": {
102643            "description": "OK",
102644            "schema": {
102645              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102646            }
102647          },
102648          "401": {
102649            "description": "Unauthorized"
102650          }
102651        },
102652        "schemes": [
102653          "https"
102654        ],
102655        "tags": [
102656          "scheduling_v1beta1"
102657        ],
102658        "x-kubernetes-action": "deletecollection",
102659        "x-kubernetes-group-version-kind": {
102660          "group": "scheduling.k8s.io",
102661          "kind": "PriorityClass",
102662          "version": "v1beta1"
102663        }
102664      },
102665      "get": {
102666        "consumes": [
102667          "*/*"
102668        ],
102669        "description": "list or watch objects of kind PriorityClass",
102670        "operationId": "listSchedulingV1beta1PriorityClass",
102671        "parameters": [
102672          {
102673            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
102674            "in": "query",
102675            "name": "allowWatchBookmarks",
102676            "type": "boolean",
102677            "uniqueItems": true
102678          },
102679          {
102680            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
102681            "in": "query",
102682            "name": "continue",
102683            "type": "string",
102684            "uniqueItems": true
102685          },
102686          {
102687            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
102688            "in": "query",
102689            "name": "fieldSelector",
102690            "type": "string",
102691            "uniqueItems": true
102692          },
102693          {
102694            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
102695            "in": "query",
102696            "name": "labelSelector",
102697            "type": "string",
102698            "uniqueItems": true
102699          },
102700          {
102701            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
102702            "in": "query",
102703            "name": "limit",
102704            "type": "integer",
102705            "uniqueItems": true
102706          },
102707          {
102708            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
102709            "in": "query",
102710            "name": "resourceVersion",
102711            "type": "string",
102712            "uniqueItems": true
102713          },
102714          {
102715            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
102716            "in": "query",
102717            "name": "timeoutSeconds",
102718            "type": "integer",
102719            "uniqueItems": true
102720          },
102721          {
102722            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
102723            "in": "query",
102724            "name": "watch",
102725            "type": "boolean",
102726            "uniqueItems": true
102727          }
102728        ],
102729        "produces": [
102730          "application/json",
102731          "application/yaml",
102732          "application/vnd.kubernetes.protobuf",
102733          "application/json;stream=watch",
102734          "application/vnd.kubernetes.protobuf;stream=watch"
102735        ],
102736        "responses": {
102737          "200": {
102738            "description": "OK",
102739            "schema": {
102740              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClassList"
102741            }
102742          },
102743          "401": {
102744            "description": "Unauthorized"
102745          }
102746        },
102747        "schemes": [
102748          "https"
102749        ],
102750        "tags": [
102751          "scheduling_v1beta1"
102752        ],
102753        "x-kubernetes-action": "list",
102754        "x-kubernetes-group-version-kind": {
102755          "group": "scheduling.k8s.io",
102756          "kind": "PriorityClass",
102757          "version": "v1beta1"
102758        }
102759      },
102760      "parameters": [
102761        {
102762          "description": "If 'true', then the output is pretty printed.",
102763          "in": "query",
102764          "name": "pretty",
102765          "type": "string",
102766          "uniqueItems": true
102767        }
102768      ],
102769      "post": {
102770        "consumes": [
102771          "*/*"
102772        ],
102773        "description": "create a PriorityClass",
102774        "operationId": "createSchedulingV1beta1PriorityClass",
102775        "parameters": [
102776          {
102777            "in": "body",
102778            "name": "body",
102779            "required": true,
102780            "schema": {
102781              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
102782            }
102783          },
102784          {
102785            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102786            "in": "query",
102787            "name": "dryRun",
102788            "type": "string",
102789            "uniqueItems": true
102790          },
102791          {
102792            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
102793            "in": "query",
102794            "name": "fieldManager",
102795            "type": "string",
102796            "uniqueItems": true
102797          }
102798        ],
102799        "produces": [
102800          "application/json",
102801          "application/yaml",
102802          "application/vnd.kubernetes.protobuf"
102803        ],
102804        "responses": {
102805          "200": {
102806            "description": "OK",
102807            "schema": {
102808              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
102809            }
102810          },
102811          "201": {
102812            "description": "Created",
102813            "schema": {
102814              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
102815            }
102816          },
102817          "202": {
102818            "description": "Accepted",
102819            "schema": {
102820              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
102821            }
102822          },
102823          "401": {
102824            "description": "Unauthorized"
102825          }
102826        },
102827        "schemes": [
102828          "https"
102829        ],
102830        "tags": [
102831          "scheduling_v1beta1"
102832        ],
102833        "x-kubernetes-action": "post",
102834        "x-kubernetes-group-version-kind": {
102835          "group": "scheduling.k8s.io",
102836          "kind": "PriorityClass",
102837          "version": "v1beta1"
102838        }
102839      }
102840    },
102841    "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}": {
102842      "delete": {
102843        "consumes": [
102844          "*/*"
102845        ],
102846        "description": "delete a PriorityClass",
102847        "operationId": "deleteSchedulingV1beta1PriorityClass",
102848        "parameters": [
102849          {
102850            "in": "body",
102851            "name": "body",
102852            "schema": {
102853              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
102854            }
102855          },
102856          {
102857            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
102858            "in": "query",
102859            "name": "dryRun",
102860            "type": "string",
102861            "uniqueItems": true
102862          },
102863          {
102864            "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.",
102865            "in": "query",
102866            "name": "gracePeriodSeconds",
102867            "type": "integer",
102868            "uniqueItems": true
102869          },
102870          {
102871            "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.",
102872            "in": "query",
102873            "name": "orphanDependents",
102874            "type": "boolean",
102875            "uniqueItems": true
102876          },
102877          {
102878            "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.",
102879            "in": "query",
102880            "name": "propagationPolicy",
102881            "type": "string",
102882            "uniqueItems": true
102883          }
102884        ],
102885        "produces": [
102886          "application/json",
102887          "application/yaml",
102888          "application/vnd.kubernetes.protobuf"
102889        ],
102890        "responses": {
102891          "200": {
102892            "description": "OK",
102893            "schema": {
102894              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102895            }
102896          },
102897          "202": {
102898            "description": "Accepted",
102899            "schema": {
102900              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
102901            }
102902          },
102903          "401": {
102904            "description": "Unauthorized"
102905          }
102906        },
102907        "schemes": [
102908          "https"
102909        ],
102910        "tags": [
102911          "scheduling_v1beta1"
102912        ],
102913        "x-kubernetes-action": "delete",
102914        "x-kubernetes-group-version-kind": {
102915          "group": "scheduling.k8s.io",
102916          "kind": "PriorityClass",
102917          "version": "v1beta1"
102918        }
102919      },
102920      "get": {
102921        "consumes": [
102922          "*/*"
102923        ],
102924        "description": "read the specified PriorityClass",
102925        "operationId": "readSchedulingV1beta1PriorityClass",
102926        "parameters": [
102927          {
102928            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
102929            "in": "query",
102930            "name": "exact",
102931            "type": "boolean",
102932            "uniqueItems": true
102933          },
102934          {
102935            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
102936            "in": "query",
102937            "name": "export",
102938            "type": "boolean",
102939            "uniqueItems": true
102940          }
102941        ],
102942        "produces": [
102943          "application/json",
102944          "application/yaml",
102945          "application/vnd.kubernetes.protobuf"
102946        ],
102947        "responses": {
102948          "200": {
102949            "description": "OK",
102950            "schema": {
102951              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
102952            }
102953          },
102954          "401": {
102955            "description": "Unauthorized"
102956          }
102957        },
102958        "schemes": [
102959          "https"
102960        ],
102961        "tags": [
102962          "scheduling_v1beta1"
102963        ],
102964        "x-kubernetes-action": "get",
102965        "x-kubernetes-group-version-kind": {
102966          "group": "scheduling.k8s.io",
102967          "kind": "PriorityClass",
102968          "version": "v1beta1"
102969        }
102970      },
102971      "parameters": [
102972        {
102973          "description": "name of the PriorityClass",
102974          "in": "path",
102975          "name": "name",
102976          "required": true,
102977          "type": "string",
102978          "uniqueItems": true
102979        },
102980        {
102981          "description": "If 'true', then the output is pretty printed.",
102982          "in": "query",
102983          "name": "pretty",
102984          "type": "string",
102985          "uniqueItems": true
102986        }
102987      ],
102988      "patch": {
102989        "consumes": [
102990          "application/json-patch+json",
102991          "application/merge-patch+json",
102992          "application/strategic-merge-patch+json"
102993        ],
102994        "description": "partially update the specified PriorityClass",
102995        "operationId": "patchSchedulingV1beta1PriorityClass",
102996        "parameters": [
102997          {
102998            "in": "body",
102999            "name": "body",
103000            "required": true,
103001            "schema": {
103002              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
103003            }
103004          },
103005          {
103006            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103007            "in": "query",
103008            "name": "dryRun",
103009            "type": "string",
103010            "uniqueItems": true
103011          },
103012          {
103013            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
103014            "in": "query",
103015            "name": "fieldManager",
103016            "type": "string",
103017            "uniqueItems": true
103018          },
103019          {
103020            "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.",
103021            "in": "query",
103022            "name": "force",
103023            "type": "boolean",
103024            "uniqueItems": true
103025          }
103026        ],
103027        "produces": [
103028          "application/json",
103029          "application/yaml",
103030          "application/vnd.kubernetes.protobuf"
103031        ],
103032        "responses": {
103033          "200": {
103034            "description": "OK",
103035            "schema": {
103036              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
103037            }
103038          },
103039          "401": {
103040            "description": "Unauthorized"
103041          }
103042        },
103043        "schemes": [
103044          "https"
103045        ],
103046        "tags": [
103047          "scheduling_v1beta1"
103048        ],
103049        "x-kubernetes-action": "patch",
103050        "x-kubernetes-group-version-kind": {
103051          "group": "scheduling.k8s.io",
103052          "kind": "PriorityClass",
103053          "version": "v1beta1"
103054        }
103055      },
103056      "put": {
103057        "consumes": [
103058          "*/*"
103059        ],
103060        "description": "replace the specified PriorityClass",
103061        "operationId": "replaceSchedulingV1beta1PriorityClass",
103062        "parameters": [
103063          {
103064            "in": "body",
103065            "name": "body",
103066            "required": true,
103067            "schema": {
103068              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
103069            }
103070          },
103071          {
103072            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103073            "in": "query",
103074            "name": "dryRun",
103075            "type": "string",
103076            "uniqueItems": true
103077          },
103078          {
103079            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
103080            "in": "query",
103081            "name": "fieldManager",
103082            "type": "string",
103083            "uniqueItems": true
103084          }
103085        ],
103086        "produces": [
103087          "application/json",
103088          "application/yaml",
103089          "application/vnd.kubernetes.protobuf"
103090        ],
103091        "responses": {
103092          "200": {
103093            "description": "OK",
103094            "schema": {
103095              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
103096            }
103097          },
103098          "201": {
103099            "description": "Created",
103100            "schema": {
103101              "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass"
103102            }
103103          },
103104          "401": {
103105            "description": "Unauthorized"
103106          }
103107        },
103108        "schemes": [
103109          "https"
103110        ],
103111        "tags": [
103112          "scheduling_v1beta1"
103113        ],
103114        "x-kubernetes-action": "put",
103115        "x-kubernetes-group-version-kind": {
103116          "group": "scheduling.k8s.io",
103117          "kind": "PriorityClass",
103118          "version": "v1beta1"
103119        }
103120      }
103121    },
103122    "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses": {
103123      "get": {
103124        "consumes": [
103125          "*/*"
103126        ],
103127        "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.",
103128        "operationId": "watchSchedulingV1beta1PriorityClassList",
103129        "produces": [
103130          "application/json",
103131          "application/yaml",
103132          "application/vnd.kubernetes.protobuf",
103133          "application/json;stream=watch",
103134          "application/vnd.kubernetes.protobuf;stream=watch"
103135        ],
103136        "responses": {
103137          "200": {
103138            "description": "OK",
103139            "schema": {
103140              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103141            }
103142          },
103143          "401": {
103144            "description": "Unauthorized"
103145          }
103146        },
103147        "schemes": [
103148          "https"
103149        ],
103150        "tags": [
103151          "scheduling_v1beta1"
103152        ],
103153        "x-kubernetes-action": "watchlist",
103154        "x-kubernetes-group-version-kind": {
103155          "group": "scheduling.k8s.io",
103156          "kind": "PriorityClass",
103157          "version": "v1beta1"
103158        }
103159      },
103160      "parameters": [
103161        {
103162          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
103163          "in": "query",
103164          "name": "allowWatchBookmarks",
103165          "type": "boolean",
103166          "uniqueItems": true
103167        },
103168        {
103169          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103170          "in": "query",
103171          "name": "continue",
103172          "type": "string",
103173          "uniqueItems": true
103174        },
103175        {
103176          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103177          "in": "query",
103178          "name": "fieldSelector",
103179          "type": "string",
103180          "uniqueItems": true
103181        },
103182        {
103183          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103184          "in": "query",
103185          "name": "labelSelector",
103186          "type": "string",
103187          "uniqueItems": true
103188        },
103189        {
103190          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103191          "in": "query",
103192          "name": "limit",
103193          "type": "integer",
103194          "uniqueItems": true
103195        },
103196        {
103197          "description": "If 'true', then the output is pretty printed.",
103198          "in": "query",
103199          "name": "pretty",
103200          "type": "string",
103201          "uniqueItems": true
103202        },
103203        {
103204          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
103205          "in": "query",
103206          "name": "resourceVersion",
103207          "type": "string",
103208          "uniqueItems": true
103209        },
103210        {
103211          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103212          "in": "query",
103213          "name": "timeoutSeconds",
103214          "type": "integer",
103215          "uniqueItems": true
103216        },
103217        {
103218          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103219          "in": "query",
103220          "name": "watch",
103221          "type": "boolean",
103222          "uniqueItems": true
103223        }
103224      ]
103225    },
103226    "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/{name}": {
103227      "get": {
103228        "consumes": [
103229          "*/*"
103230        ],
103231        "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.",
103232        "operationId": "watchSchedulingV1beta1PriorityClass",
103233        "produces": [
103234          "application/json",
103235          "application/yaml",
103236          "application/vnd.kubernetes.protobuf",
103237          "application/json;stream=watch",
103238          "application/vnd.kubernetes.protobuf;stream=watch"
103239        ],
103240        "responses": {
103241          "200": {
103242            "description": "OK",
103243            "schema": {
103244              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
103245            }
103246          },
103247          "401": {
103248            "description": "Unauthorized"
103249          }
103250        },
103251        "schemes": [
103252          "https"
103253        ],
103254        "tags": [
103255          "scheduling_v1beta1"
103256        ],
103257        "x-kubernetes-action": "watch",
103258        "x-kubernetes-group-version-kind": {
103259          "group": "scheduling.k8s.io",
103260          "kind": "PriorityClass",
103261          "version": "v1beta1"
103262        }
103263      },
103264      "parameters": [
103265        {
103266          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
103267          "in": "query",
103268          "name": "allowWatchBookmarks",
103269          "type": "boolean",
103270          "uniqueItems": true
103271        },
103272        {
103273          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103274          "in": "query",
103275          "name": "continue",
103276          "type": "string",
103277          "uniqueItems": true
103278        },
103279        {
103280          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103281          "in": "query",
103282          "name": "fieldSelector",
103283          "type": "string",
103284          "uniqueItems": true
103285        },
103286        {
103287          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103288          "in": "query",
103289          "name": "labelSelector",
103290          "type": "string",
103291          "uniqueItems": true
103292        },
103293        {
103294          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103295          "in": "query",
103296          "name": "limit",
103297          "type": "integer",
103298          "uniqueItems": true
103299        },
103300        {
103301          "description": "name of the PriorityClass",
103302          "in": "path",
103303          "name": "name",
103304          "required": true,
103305          "type": "string",
103306          "uniqueItems": true
103307        },
103308        {
103309          "description": "If 'true', then the output is pretty printed.",
103310          "in": "query",
103311          "name": "pretty",
103312          "type": "string",
103313          "uniqueItems": true
103314        },
103315        {
103316          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
103317          "in": "query",
103318          "name": "resourceVersion",
103319          "type": "string",
103320          "uniqueItems": true
103321        },
103322        {
103323          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103324          "in": "query",
103325          "name": "timeoutSeconds",
103326          "type": "integer",
103327          "uniqueItems": true
103328        },
103329        {
103330          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103331          "in": "query",
103332          "name": "watch",
103333          "type": "boolean",
103334          "uniqueItems": true
103335        }
103336      ]
103337    },
103338    "/apis/settings.k8s.io/": {
103339      "get": {
103340        "consumes": [
103341          "application/json",
103342          "application/yaml",
103343          "application/vnd.kubernetes.protobuf"
103344        ],
103345        "description": "get information of a group",
103346        "operationId": "getSettingsAPIGroup",
103347        "produces": [
103348          "application/json",
103349          "application/yaml",
103350          "application/vnd.kubernetes.protobuf"
103351        ],
103352        "responses": {
103353          "200": {
103354            "description": "OK",
103355            "schema": {
103356              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
103357            }
103358          },
103359          "401": {
103360            "description": "Unauthorized"
103361          }
103362        },
103363        "schemes": [
103364          "https"
103365        ],
103366        "tags": [
103367          "settings"
103368        ]
103369      }
103370    },
103371    "/apis/settings.k8s.io/v1alpha1/": {
103372      "get": {
103373        "consumes": [
103374          "application/json",
103375          "application/yaml",
103376          "application/vnd.kubernetes.protobuf"
103377        ],
103378        "description": "get available resources",
103379        "operationId": "getSettingsV1alpha1APIResources",
103380        "produces": [
103381          "application/json",
103382          "application/yaml",
103383          "application/vnd.kubernetes.protobuf"
103384        ],
103385        "responses": {
103386          "200": {
103387            "description": "OK",
103388            "schema": {
103389              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
103390            }
103391          },
103392          "401": {
103393            "description": "Unauthorized"
103394          }
103395        },
103396        "schemes": [
103397          "https"
103398        ],
103399        "tags": [
103400          "settings_v1alpha1"
103401        ]
103402      }
103403    },
103404    "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets": {
103405      "delete": {
103406        "consumes": [
103407          "*/*"
103408        ],
103409        "description": "delete collection of PodPreset",
103410        "operationId": "deleteSettingsV1alpha1CollectionNamespacedPodPreset",
103411        "parameters": [
103412          {
103413            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
103414            "in": "query",
103415            "name": "allowWatchBookmarks",
103416            "type": "boolean",
103417            "uniqueItems": true
103418          },
103419          {
103420            "in": "body",
103421            "name": "body",
103422            "schema": {
103423              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
103424            }
103425          },
103426          {
103427            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103428            "in": "query",
103429            "name": "continue",
103430            "type": "string",
103431            "uniqueItems": true
103432          },
103433          {
103434            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103435            "in": "query",
103436            "name": "dryRun",
103437            "type": "string",
103438            "uniqueItems": true
103439          },
103440          {
103441            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103442            "in": "query",
103443            "name": "fieldSelector",
103444            "type": "string",
103445            "uniqueItems": true
103446          },
103447          {
103448            "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.",
103449            "in": "query",
103450            "name": "gracePeriodSeconds",
103451            "type": "integer",
103452            "uniqueItems": true
103453          },
103454          {
103455            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103456            "in": "query",
103457            "name": "labelSelector",
103458            "type": "string",
103459            "uniqueItems": true
103460          },
103461          {
103462            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103463            "in": "query",
103464            "name": "limit",
103465            "type": "integer",
103466            "uniqueItems": true
103467          },
103468          {
103469            "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.",
103470            "in": "query",
103471            "name": "orphanDependents",
103472            "type": "boolean",
103473            "uniqueItems": true
103474          },
103475          {
103476            "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.",
103477            "in": "query",
103478            "name": "propagationPolicy",
103479            "type": "string",
103480            "uniqueItems": true
103481          },
103482          {
103483            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
103484            "in": "query",
103485            "name": "resourceVersion",
103486            "type": "string",
103487            "uniqueItems": true
103488          },
103489          {
103490            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103491            "in": "query",
103492            "name": "timeoutSeconds",
103493            "type": "integer",
103494            "uniqueItems": true
103495          },
103496          {
103497            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103498            "in": "query",
103499            "name": "watch",
103500            "type": "boolean",
103501            "uniqueItems": true
103502          }
103503        ],
103504        "produces": [
103505          "application/json",
103506          "application/yaml",
103507          "application/vnd.kubernetes.protobuf"
103508        ],
103509        "responses": {
103510          "200": {
103511            "description": "OK",
103512            "schema": {
103513              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
103514            }
103515          },
103516          "401": {
103517            "description": "Unauthorized"
103518          }
103519        },
103520        "schemes": [
103521          "https"
103522        ],
103523        "tags": [
103524          "settings_v1alpha1"
103525        ],
103526        "x-kubernetes-action": "deletecollection",
103527        "x-kubernetes-group-version-kind": {
103528          "group": "settings.k8s.io",
103529          "kind": "PodPreset",
103530          "version": "v1alpha1"
103531        }
103532      },
103533      "get": {
103534        "consumes": [
103535          "*/*"
103536        ],
103537        "description": "list or watch objects of kind PodPreset",
103538        "operationId": "listSettingsV1alpha1NamespacedPodPreset",
103539        "parameters": [
103540          {
103541            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
103542            "in": "query",
103543            "name": "allowWatchBookmarks",
103544            "type": "boolean",
103545            "uniqueItems": true
103546          },
103547          {
103548            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
103549            "in": "query",
103550            "name": "continue",
103551            "type": "string",
103552            "uniqueItems": true
103553          },
103554          {
103555            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
103556            "in": "query",
103557            "name": "fieldSelector",
103558            "type": "string",
103559            "uniqueItems": true
103560          },
103561          {
103562            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
103563            "in": "query",
103564            "name": "labelSelector",
103565            "type": "string",
103566            "uniqueItems": true
103567          },
103568          {
103569            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
103570            "in": "query",
103571            "name": "limit",
103572            "type": "integer",
103573            "uniqueItems": true
103574          },
103575          {
103576            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
103577            "in": "query",
103578            "name": "resourceVersion",
103579            "type": "string",
103580            "uniqueItems": true
103581          },
103582          {
103583            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
103584            "in": "query",
103585            "name": "timeoutSeconds",
103586            "type": "integer",
103587            "uniqueItems": true
103588          },
103589          {
103590            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
103591            "in": "query",
103592            "name": "watch",
103593            "type": "boolean",
103594            "uniqueItems": true
103595          }
103596        ],
103597        "produces": [
103598          "application/json",
103599          "application/yaml",
103600          "application/vnd.kubernetes.protobuf",
103601          "application/json;stream=watch",
103602          "application/vnd.kubernetes.protobuf;stream=watch"
103603        ],
103604        "responses": {
103605          "200": {
103606            "description": "OK",
103607            "schema": {
103608              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetList"
103609            }
103610          },
103611          "401": {
103612            "description": "Unauthorized"
103613          }
103614        },
103615        "schemes": [
103616          "https"
103617        ],
103618        "tags": [
103619          "settings_v1alpha1"
103620        ],
103621        "x-kubernetes-action": "list",
103622        "x-kubernetes-group-version-kind": {
103623          "group": "settings.k8s.io",
103624          "kind": "PodPreset",
103625          "version": "v1alpha1"
103626        }
103627      },
103628      "parameters": [
103629        {
103630          "description": "object name and auth scope, such as for teams and projects",
103631          "in": "path",
103632          "name": "namespace",
103633          "required": true,
103634          "type": "string",
103635          "uniqueItems": true
103636        },
103637        {
103638          "description": "If 'true', then the output is pretty printed.",
103639          "in": "query",
103640          "name": "pretty",
103641          "type": "string",
103642          "uniqueItems": true
103643        }
103644      ],
103645      "post": {
103646        "consumes": [
103647          "*/*"
103648        ],
103649        "description": "create a PodPreset",
103650        "operationId": "createSettingsV1alpha1NamespacedPodPreset",
103651        "parameters": [
103652          {
103653            "in": "body",
103654            "name": "body",
103655            "required": true,
103656            "schema": {
103657              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103658            }
103659          },
103660          {
103661            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103662            "in": "query",
103663            "name": "dryRun",
103664            "type": "string",
103665            "uniqueItems": true
103666          },
103667          {
103668            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
103669            "in": "query",
103670            "name": "fieldManager",
103671            "type": "string",
103672            "uniqueItems": true
103673          }
103674        ],
103675        "produces": [
103676          "application/json",
103677          "application/yaml",
103678          "application/vnd.kubernetes.protobuf"
103679        ],
103680        "responses": {
103681          "200": {
103682            "description": "OK",
103683            "schema": {
103684              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103685            }
103686          },
103687          "201": {
103688            "description": "Created",
103689            "schema": {
103690              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103691            }
103692          },
103693          "202": {
103694            "description": "Accepted",
103695            "schema": {
103696              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103697            }
103698          },
103699          "401": {
103700            "description": "Unauthorized"
103701          }
103702        },
103703        "schemes": [
103704          "https"
103705        ],
103706        "tags": [
103707          "settings_v1alpha1"
103708        ],
103709        "x-kubernetes-action": "post",
103710        "x-kubernetes-group-version-kind": {
103711          "group": "settings.k8s.io",
103712          "kind": "PodPreset",
103713          "version": "v1alpha1"
103714        }
103715      }
103716    },
103717    "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}": {
103718      "delete": {
103719        "consumes": [
103720          "*/*"
103721        ],
103722        "description": "delete a PodPreset",
103723        "operationId": "deleteSettingsV1alpha1NamespacedPodPreset",
103724        "parameters": [
103725          {
103726            "in": "body",
103727            "name": "body",
103728            "schema": {
103729              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
103730            }
103731          },
103732          {
103733            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103734            "in": "query",
103735            "name": "dryRun",
103736            "type": "string",
103737            "uniqueItems": true
103738          },
103739          {
103740            "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.",
103741            "in": "query",
103742            "name": "gracePeriodSeconds",
103743            "type": "integer",
103744            "uniqueItems": true
103745          },
103746          {
103747            "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.",
103748            "in": "query",
103749            "name": "orphanDependents",
103750            "type": "boolean",
103751            "uniqueItems": true
103752          },
103753          {
103754            "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.",
103755            "in": "query",
103756            "name": "propagationPolicy",
103757            "type": "string",
103758            "uniqueItems": true
103759          }
103760        ],
103761        "produces": [
103762          "application/json",
103763          "application/yaml",
103764          "application/vnd.kubernetes.protobuf"
103765        ],
103766        "responses": {
103767          "200": {
103768            "description": "OK",
103769            "schema": {
103770              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
103771            }
103772          },
103773          "202": {
103774            "description": "Accepted",
103775            "schema": {
103776              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
103777            }
103778          },
103779          "401": {
103780            "description": "Unauthorized"
103781          }
103782        },
103783        "schemes": [
103784          "https"
103785        ],
103786        "tags": [
103787          "settings_v1alpha1"
103788        ],
103789        "x-kubernetes-action": "delete",
103790        "x-kubernetes-group-version-kind": {
103791          "group": "settings.k8s.io",
103792          "kind": "PodPreset",
103793          "version": "v1alpha1"
103794        }
103795      },
103796      "get": {
103797        "consumes": [
103798          "*/*"
103799        ],
103800        "description": "read the specified PodPreset",
103801        "operationId": "readSettingsV1alpha1NamespacedPodPreset",
103802        "parameters": [
103803          {
103804            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
103805            "in": "query",
103806            "name": "exact",
103807            "type": "boolean",
103808            "uniqueItems": true
103809          },
103810          {
103811            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
103812            "in": "query",
103813            "name": "export",
103814            "type": "boolean",
103815            "uniqueItems": true
103816          }
103817        ],
103818        "produces": [
103819          "application/json",
103820          "application/yaml",
103821          "application/vnd.kubernetes.protobuf"
103822        ],
103823        "responses": {
103824          "200": {
103825            "description": "OK",
103826            "schema": {
103827              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103828            }
103829          },
103830          "401": {
103831            "description": "Unauthorized"
103832          }
103833        },
103834        "schemes": [
103835          "https"
103836        ],
103837        "tags": [
103838          "settings_v1alpha1"
103839        ],
103840        "x-kubernetes-action": "get",
103841        "x-kubernetes-group-version-kind": {
103842          "group": "settings.k8s.io",
103843          "kind": "PodPreset",
103844          "version": "v1alpha1"
103845        }
103846      },
103847      "parameters": [
103848        {
103849          "description": "name of the PodPreset",
103850          "in": "path",
103851          "name": "name",
103852          "required": true,
103853          "type": "string",
103854          "uniqueItems": true
103855        },
103856        {
103857          "description": "object name and auth scope, such as for teams and projects",
103858          "in": "path",
103859          "name": "namespace",
103860          "required": true,
103861          "type": "string",
103862          "uniqueItems": true
103863        },
103864        {
103865          "description": "If 'true', then the output is pretty printed.",
103866          "in": "query",
103867          "name": "pretty",
103868          "type": "string",
103869          "uniqueItems": true
103870        }
103871      ],
103872      "patch": {
103873        "consumes": [
103874          "application/json-patch+json",
103875          "application/merge-patch+json",
103876          "application/strategic-merge-patch+json"
103877        ],
103878        "description": "partially update the specified PodPreset",
103879        "operationId": "patchSettingsV1alpha1NamespacedPodPreset",
103880        "parameters": [
103881          {
103882            "in": "body",
103883            "name": "body",
103884            "required": true,
103885            "schema": {
103886              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
103887            }
103888          },
103889          {
103890            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103891            "in": "query",
103892            "name": "dryRun",
103893            "type": "string",
103894            "uniqueItems": true
103895          },
103896          {
103897            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
103898            "in": "query",
103899            "name": "fieldManager",
103900            "type": "string",
103901            "uniqueItems": true
103902          },
103903          {
103904            "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.",
103905            "in": "query",
103906            "name": "force",
103907            "type": "boolean",
103908            "uniqueItems": true
103909          }
103910        ],
103911        "produces": [
103912          "application/json",
103913          "application/yaml",
103914          "application/vnd.kubernetes.protobuf"
103915        ],
103916        "responses": {
103917          "200": {
103918            "description": "OK",
103919            "schema": {
103920              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103921            }
103922          },
103923          "401": {
103924            "description": "Unauthorized"
103925          }
103926        },
103927        "schemes": [
103928          "https"
103929        ],
103930        "tags": [
103931          "settings_v1alpha1"
103932        ],
103933        "x-kubernetes-action": "patch",
103934        "x-kubernetes-group-version-kind": {
103935          "group": "settings.k8s.io",
103936          "kind": "PodPreset",
103937          "version": "v1alpha1"
103938        }
103939      },
103940      "put": {
103941        "consumes": [
103942          "*/*"
103943        ],
103944        "description": "replace the specified PodPreset",
103945        "operationId": "replaceSettingsV1alpha1NamespacedPodPreset",
103946        "parameters": [
103947          {
103948            "in": "body",
103949            "name": "body",
103950            "required": true,
103951            "schema": {
103952              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103953            }
103954          },
103955          {
103956            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
103957            "in": "query",
103958            "name": "dryRun",
103959            "type": "string",
103960            "uniqueItems": true
103961          },
103962          {
103963            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
103964            "in": "query",
103965            "name": "fieldManager",
103966            "type": "string",
103967            "uniqueItems": true
103968          }
103969        ],
103970        "produces": [
103971          "application/json",
103972          "application/yaml",
103973          "application/vnd.kubernetes.protobuf"
103974        ],
103975        "responses": {
103976          "200": {
103977            "description": "OK",
103978            "schema": {
103979              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103980            }
103981          },
103982          "201": {
103983            "description": "Created",
103984            "schema": {
103985              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset"
103986            }
103987          },
103988          "401": {
103989            "description": "Unauthorized"
103990          }
103991        },
103992        "schemes": [
103993          "https"
103994        ],
103995        "tags": [
103996          "settings_v1alpha1"
103997        ],
103998        "x-kubernetes-action": "put",
103999        "x-kubernetes-group-version-kind": {
104000          "group": "settings.k8s.io",
104001          "kind": "PodPreset",
104002          "version": "v1alpha1"
104003        }
104004      }
104005    },
104006    "/apis/settings.k8s.io/v1alpha1/podpresets": {
104007      "get": {
104008        "consumes": [
104009          "*/*"
104010        ],
104011        "description": "list or watch objects of kind PodPreset",
104012        "operationId": "listSettingsV1alpha1PodPresetForAllNamespaces",
104013        "produces": [
104014          "application/json",
104015          "application/yaml",
104016          "application/vnd.kubernetes.protobuf",
104017          "application/json;stream=watch",
104018          "application/vnd.kubernetes.protobuf;stream=watch"
104019        ],
104020        "responses": {
104021          "200": {
104022            "description": "OK",
104023            "schema": {
104024              "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPresetList"
104025            }
104026          },
104027          "401": {
104028            "description": "Unauthorized"
104029          }
104030        },
104031        "schemes": [
104032          "https"
104033        ],
104034        "tags": [
104035          "settings_v1alpha1"
104036        ],
104037        "x-kubernetes-action": "list",
104038        "x-kubernetes-group-version-kind": {
104039          "group": "settings.k8s.io",
104040          "kind": "PodPreset",
104041          "version": "v1alpha1"
104042        }
104043      },
104044      "parameters": [
104045        {
104046          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
104047          "in": "query",
104048          "name": "allowWatchBookmarks",
104049          "type": "boolean",
104050          "uniqueItems": true
104051        },
104052        {
104053          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104054          "in": "query",
104055          "name": "continue",
104056          "type": "string",
104057          "uniqueItems": true
104058        },
104059        {
104060          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104061          "in": "query",
104062          "name": "fieldSelector",
104063          "type": "string",
104064          "uniqueItems": true
104065        },
104066        {
104067          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104068          "in": "query",
104069          "name": "labelSelector",
104070          "type": "string",
104071          "uniqueItems": true
104072        },
104073        {
104074          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104075          "in": "query",
104076          "name": "limit",
104077          "type": "integer",
104078          "uniqueItems": true
104079        },
104080        {
104081          "description": "If 'true', then the output is pretty printed.",
104082          "in": "query",
104083          "name": "pretty",
104084          "type": "string",
104085          "uniqueItems": true
104086        },
104087        {
104088          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
104089          "in": "query",
104090          "name": "resourceVersion",
104091          "type": "string",
104092          "uniqueItems": true
104093        },
104094        {
104095          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104096          "in": "query",
104097          "name": "timeoutSeconds",
104098          "type": "integer",
104099          "uniqueItems": true
104100        },
104101        {
104102          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104103          "in": "query",
104104          "name": "watch",
104105          "type": "boolean",
104106          "uniqueItems": true
104107        }
104108      ]
104109    },
104110    "/apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets": {
104111      "get": {
104112        "consumes": [
104113          "*/*"
104114        ],
104115        "description": "watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead.",
104116        "operationId": "watchSettingsV1alpha1NamespacedPodPresetList",
104117        "produces": [
104118          "application/json",
104119          "application/yaml",
104120          "application/vnd.kubernetes.protobuf",
104121          "application/json;stream=watch",
104122          "application/vnd.kubernetes.protobuf;stream=watch"
104123        ],
104124        "responses": {
104125          "200": {
104126            "description": "OK",
104127            "schema": {
104128              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
104129            }
104130          },
104131          "401": {
104132            "description": "Unauthorized"
104133          }
104134        },
104135        "schemes": [
104136          "https"
104137        ],
104138        "tags": [
104139          "settings_v1alpha1"
104140        ],
104141        "x-kubernetes-action": "watchlist",
104142        "x-kubernetes-group-version-kind": {
104143          "group": "settings.k8s.io",
104144          "kind": "PodPreset",
104145          "version": "v1alpha1"
104146        }
104147      },
104148      "parameters": [
104149        {
104150          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
104151          "in": "query",
104152          "name": "allowWatchBookmarks",
104153          "type": "boolean",
104154          "uniqueItems": true
104155        },
104156        {
104157          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104158          "in": "query",
104159          "name": "continue",
104160          "type": "string",
104161          "uniqueItems": true
104162        },
104163        {
104164          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104165          "in": "query",
104166          "name": "fieldSelector",
104167          "type": "string",
104168          "uniqueItems": true
104169        },
104170        {
104171          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104172          "in": "query",
104173          "name": "labelSelector",
104174          "type": "string",
104175          "uniqueItems": true
104176        },
104177        {
104178          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104179          "in": "query",
104180          "name": "limit",
104181          "type": "integer",
104182          "uniqueItems": true
104183        },
104184        {
104185          "description": "object name and auth scope, such as for teams and projects",
104186          "in": "path",
104187          "name": "namespace",
104188          "required": true,
104189          "type": "string",
104190          "uniqueItems": true
104191        },
104192        {
104193          "description": "If 'true', then the output is pretty printed.",
104194          "in": "query",
104195          "name": "pretty",
104196          "type": "string",
104197          "uniqueItems": true
104198        },
104199        {
104200          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
104201          "in": "query",
104202          "name": "resourceVersion",
104203          "type": "string",
104204          "uniqueItems": true
104205        },
104206        {
104207          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104208          "in": "query",
104209          "name": "timeoutSeconds",
104210          "type": "integer",
104211          "uniqueItems": true
104212        },
104213        {
104214          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104215          "in": "query",
104216          "name": "watch",
104217          "type": "boolean",
104218          "uniqueItems": true
104219        }
104220      ]
104221    },
104222    "/apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets/{name}": {
104223      "get": {
104224        "consumes": [
104225          "*/*"
104226        ],
104227        "description": "watch changes to an object of kind PodPreset. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
104228        "operationId": "watchSettingsV1alpha1NamespacedPodPreset",
104229        "produces": [
104230          "application/json",
104231          "application/yaml",
104232          "application/vnd.kubernetes.protobuf",
104233          "application/json;stream=watch",
104234          "application/vnd.kubernetes.protobuf;stream=watch"
104235        ],
104236        "responses": {
104237          "200": {
104238            "description": "OK",
104239            "schema": {
104240              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
104241            }
104242          },
104243          "401": {
104244            "description": "Unauthorized"
104245          }
104246        },
104247        "schemes": [
104248          "https"
104249        ],
104250        "tags": [
104251          "settings_v1alpha1"
104252        ],
104253        "x-kubernetes-action": "watch",
104254        "x-kubernetes-group-version-kind": {
104255          "group": "settings.k8s.io",
104256          "kind": "PodPreset",
104257          "version": "v1alpha1"
104258        }
104259      },
104260      "parameters": [
104261        {
104262          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
104263          "in": "query",
104264          "name": "allowWatchBookmarks",
104265          "type": "boolean",
104266          "uniqueItems": true
104267        },
104268        {
104269          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104270          "in": "query",
104271          "name": "continue",
104272          "type": "string",
104273          "uniqueItems": true
104274        },
104275        {
104276          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104277          "in": "query",
104278          "name": "fieldSelector",
104279          "type": "string",
104280          "uniqueItems": true
104281        },
104282        {
104283          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104284          "in": "query",
104285          "name": "labelSelector",
104286          "type": "string",
104287          "uniqueItems": true
104288        },
104289        {
104290          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104291          "in": "query",
104292          "name": "limit",
104293          "type": "integer",
104294          "uniqueItems": true
104295        },
104296        {
104297          "description": "name of the PodPreset",
104298          "in": "path",
104299          "name": "name",
104300          "required": true,
104301          "type": "string",
104302          "uniqueItems": true
104303        },
104304        {
104305          "description": "object name and auth scope, such as for teams and projects",
104306          "in": "path",
104307          "name": "namespace",
104308          "required": true,
104309          "type": "string",
104310          "uniqueItems": true
104311        },
104312        {
104313          "description": "If 'true', then the output is pretty printed.",
104314          "in": "query",
104315          "name": "pretty",
104316          "type": "string",
104317          "uniqueItems": true
104318        },
104319        {
104320          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
104321          "in": "query",
104322          "name": "resourceVersion",
104323          "type": "string",
104324          "uniqueItems": true
104325        },
104326        {
104327          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104328          "in": "query",
104329          "name": "timeoutSeconds",
104330          "type": "integer",
104331          "uniqueItems": true
104332        },
104333        {
104334          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104335          "in": "query",
104336          "name": "watch",
104337          "type": "boolean",
104338          "uniqueItems": true
104339        }
104340      ]
104341    },
104342    "/apis/settings.k8s.io/v1alpha1/watch/podpresets": {
104343      "get": {
104344        "consumes": [
104345          "*/*"
104346        ],
104347        "description": "watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead.",
104348        "operationId": "watchSettingsV1alpha1PodPresetListForAllNamespaces",
104349        "produces": [
104350          "application/json",
104351          "application/yaml",
104352          "application/vnd.kubernetes.protobuf",
104353          "application/json;stream=watch",
104354          "application/vnd.kubernetes.protobuf;stream=watch"
104355        ],
104356        "responses": {
104357          "200": {
104358            "description": "OK",
104359            "schema": {
104360              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
104361            }
104362          },
104363          "401": {
104364            "description": "Unauthorized"
104365          }
104366        },
104367        "schemes": [
104368          "https"
104369        ],
104370        "tags": [
104371          "settings_v1alpha1"
104372        ],
104373        "x-kubernetes-action": "watchlist",
104374        "x-kubernetes-group-version-kind": {
104375          "group": "settings.k8s.io",
104376          "kind": "PodPreset",
104377          "version": "v1alpha1"
104378        }
104379      },
104380      "parameters": [
104381        {
104382          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
104383          "in": "query",
104384          "name": "allowWatchBookmarks",
104385          "type": "boolean",
104386          "uniqueItems": true
104387        },
104388        {
104389          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104390          "in": "query",
104391          "name": "continue",
104392          "type": "string",
104393          "uniqueItems": true
104394        },
104395        {
104396          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104397          "in": "query",
104398          "name": "fieldSelector",
104399          "type": "string",
104400          "uniqueItems": true
104401        },
104402        {
104403          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104404          "in": "query",
104405          "name": "labelSelector",
104406          "type": "string",
104407          "uniqueItems": true
104408        },
104409        {
104410          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104411          "in": "query",
104412          "name": "limit",
104413          "type": "integer",
104414          "uniqueItems": true
104415        },
104416        {
104417          "description": "If 'true', then the output is pretty printed.",
104418          "in": "query",
104419          "name": "pretty",
104420          "type": "string",
104421          "uniqueItems": true
104422        },
104423        {
104424          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
104425          "in": "query",
104426          "name": "resourceVersion",
104427          "type": "string",
104428          "uniqueItems": true
104429        },
104430        {
104431          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104432          "in": "query",
104433          "name": "timeoutSeconds",
104434          "type": "integer",
104435          "uniqueItems": true
104436        },
104437        {
104438          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104439          "in": "query",
104440          "name": "watch",
104441          "type": "boolean",
104442          "uniqueItems": true
104443        }
104444      ]
104445    },
104446    "/apis/storage.k8s.io/": {
104447      "get": {
104448        "consumes": [
104449          "application/json",
104450          "application/yaml",
104451          "application/vnd.kubernetes.protobuf"
104452        ],
104453        "description": "get information of a group",
104454        "operationId": "getStorageAPIGroup",
104455        "produces": [
104456          "application/json",
104457          "application/yaml",
104458          "application/vnd.kubernetes.protobuf"
104459        ],
104460        "responses": {
104461          "200": {
104462            "description": "OK",
104463            "schema": {
104464              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
104465            }
104466          },
104467          "401": {
104468            "description": "Unauthorized"
104469          }
104470        },
104471        "schemes": [
104472          "https"
104473        ],
104474        "tags": [
104475          "storage"
104476        ]
104477      }
104478    },
104479    "/apis/storage.k8s.io/v1/": {
104480      "get": {
104481        "consumes": [
104482          "application/json",
104483          "application/yaml",
104484          "application/vnd.kubernetes.protobuf"
104485        ],
104486        "description": "get available resources",
104487        "operationId": "getStorageV1APIResources",
104488        "produces": [
104489          "application/json",
104490          "application/yaml",
104491          "application/vnd.kubernetes.protobuf"
104492        ],
104493        "responses": {
104494          "200": {
104495            "description": "OK",
104496            "schema": {
104497              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
104498            }
104499          },
104500          "401": {
104501            "description": "Unauthorized"
104502          }
104503        },
104504        "schemes": [
104505          "https"
104506        ],
104507        "tags": [
104508          "storage_v1"
104509        ]
104510      }
104511    },
104512    "/apis/storage.k8s.io/v1/storageclasses": {
104513      "delete": {
104514        "consumes": [
104515          "*/*"
104516        ],
104517        "description": "delete collection of StorageClass",
104518        "operationId": "deleteStorageV1CollectionStorageClass",
104519        "parameters": [
104520          {
104521            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
104522            "in": "query",
104523            "name": "allowWatchBookmarks",
104524            "type": "boolean",
104525            "uniqueItems": true
104526          },
104527          {
104528            "in": "body",
104529            "name": "body",
104530            "schema": {
104531              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104532            }
104533          },
104534          {
104535            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104536            "in": "query",
104537            "name": "continue",
104538            "type": "string",
104539            "uniqueItems": true
104540          },
104541          {
104542            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104543            "in": "query",
104544            "name": "dryRun",
104545            "type": "string",
104546            "uniqueItems": true
104547          },
104548          {
104549            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104550            "in": "query",
104551            "name": "fieldSelector",
104552            "type": "string",
104553            "uniqueItems": true
104554          },
104555          {
104556            "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.",
104557            "in": "query",
104558            "name": "gracePeriodSeconds",
104559            "type": "integer",
104560            "uniqueItems": true
104561          },
104562          {
104563            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104564            "in": "query",
104565            "name": "labelSelector",
104566            "type": "string",
104567            "uniqueItems": true
104568          },
104569          {
104570            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104571            "in": "query",
104572            "name": "limit",
104573            "type": "integer",
104574            "uniqueItems": true
104575          },
104576          {
104577            "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.",
104578            "in": "query",
104579            "name": "orphanDependents",
104580            "type": "boolean",
104581            "uniqueItems": true
104582          },
104583          {
104584            "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.",
104585            "in": "query",
104586            "name": "propagationPolicy",
104587            "type": "string",
104588            "uniqueItems": true
104589          },
104590          {
104591            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
104592            "in": "query",
104593            "name": "resourceVersion",
104594            "type": "string",
104595            "uniqueItems": true
104596          },
104597          {
104598            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104599            "in": "query",
104600            "name": "timeoutSeconds",
104601            "type": "integer",
104602            "uniqueItems": true
104603          },
104604          {
104605            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104606            "in": "query",
104607            "name": "watch",
104608            "type": "boolean",
104609            "uniqueItems": true
104610          }
104611        ],
104612        "produces": [
104613          "application/json",
104614          "application/yaml",
104615          "application/vnd.kubernetes.protobuf"
104616        ],
104617        "responses": {
104618          "200": {
104619            "description": "OK",
104620            "schema": {
104621              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104622            }
104623          },
104624          "401": {
104625            "description": "Unauthorized"
104626          }
104627        },
104628        "schemes": [
104629          "https"
104630        ],
104631        "tags": [
104632          "storage_v1"
104633        ],
104634        "x-kubernetes-action": "deletecollection",
104635        "x-kubernetes-group-version-kind": {
104636          "group": "storage.k8s.io",
104637          "kind": "StorageClass",
104638          "version": "v1"
104639        }
104640      },
104641      "get": {
104642        "consumes": [
104643          "*/*"
104644        ],
104645        "description": "list or watch objects of kind StorageClass",
104646        "operationId": "listStorageV1StorageClass",
104647        "parameters": [
104648          {
104649            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
104650            "in": "query",
104651            "name": "allowWatchBookmarks",
104652            "type": "boolean",
104653            "uniqueItems": true
104654          },
104655          {
104656            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
104657            "in": "query",
104658            "name": "continue",
104659            "type": "string",
104660            "uniqueItems": true
104661          },
104662          {
104663            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
104664            "in": "query",
104665            "name": "fieldSelector",
104666            "type": "string",
104667            "uniqueItems": true
104668          },
104669          {
104670            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
104671            "in": "query",
104672            "name": "labelSelector",
104673            "type": "string",
104674            "uniqueItems": true
104675          },
104676          {
104677            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
104678            "in": "query",
104679            "name": "limit",
104680            "type": "integer",
104681            "uniqueItems": true
104682          },
104683          {
104684            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
104685            "in": "query",
104686            "name": "resourceVersion",
104687            "type": "string",
104688            "uniqueItems": true
104689          },
104690          {
104691            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
104692            "in": "query",
104693            "name": "timeoutSeconds",
104694            "type": "integer",
104695            "uniqueItems": true
104696          },
104697          {
104698            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
104699            "in": "query",
104700            "name": "watch",
104701            "type": "boolean",
104702            "uniqueItems": true
104703          }
104704        ],
104705        "produces": [
104706          "application/json",
104707          "application/yaml",
104708          "application/vnd.kubernetes.protobuf",
104709          "application/json;stream=watch",
104710          "application/vnd.kubernetes.protobuf;stream=watch"
104711        ],
104712        "responses": {
104713          "200": {
104714            "description": "OK",
104715            "schema": {
104716              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClassList"
104717            }
104718          },
104719          "401": {
104720            "description": "Unauthorized"
104721          }
104722        },
104723        "schemes": [
104724          "https"
104725        ],
104726        "tags": [
104727          "storage_v1"
104728        ],
104729        "x-kubernetes-action": "list",
104730        "x-kubernetes-group-version-kind": {
104731          "group": "storage.k8s.io",
104732          "kind": "StorageClass",
104733          "version": "v1"
104734        }
104735      },
104736      "parameters": [
104737        {
104738          "description": "If 'true', then the output is pretty printed.",
104739          "in": "query",
104740          "name": "pretty",
104741          "type": "string",
104742          "uniqueItems": true
104743        }
104744      ],
104745      "post": {
104746        "consumes": [
104747          "*/*"
104748        ],
104749        "description": "create a StorageClass",
104750        "operationId": "createStorageV1StorageClass",
104751        "parameters": [
104752          {
104753            "in": "body",
104754            "name": "body",
104755            "required": true,
104756            "schema": {
104757              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
104758            }
104759          },
104760          {
104761            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104762            "in": "query",
104763            "name": "dryRun",
104764            "type": "string",
104765            "uniqueItems": true
104766          },
104767          {
104768            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
104769            "in": "query",
104770            "name": "fieldManager",
104771            "type": "string",
104772            "uniqueItems": true
104773          }
104774        ],
104775        "produces": [
104776          "application/json",
104777          "application/yaml",
104778          "application/vnd.kubernetes.protobuf"
104779        ],
104780        "responses": {
104781          "200": {
104782            "description": "OK",
104783            "schema": {
104784              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
104785            }
104786          },
104787          "201": {
104788            "description": "Created",
104789            "schema": {
104790              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
104791            }
104792          },
104793          "202": {
104794            "description": "Accepted",
104795            "schema": {
104796              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
104797            }
104798          },
104799          "401": {
104800            "description": "Unauthorized"
104801          }
104802        },
104803        "schemes": [
104804          "https"
104805        ],
104806        "tags": [
104807          "storage_v1"
104808        ],
104809        "x-kubernetes-action": "post",
104810        "x-kubernetes-group-version-kind": {
104811          "group": "storage.k8s.io",
104812          "kind": "StorageClass",
104813          "version": "v1"
104814        }
104815      }
104816    },
104817    "/apis/storage.k8s.io/v1/storageclasses/{name}": {
104818      "delete": {
104819        "consumes": [
104820          "*/*"
104821        ],
104822        "description": "delete a StorageClass",
104823        "operationId": "deleteStorageV1StorageClass",
104824        "parameters": [
104825          {
104826            "in": "body",
104827            "name": "body",
104828            "schema": {
104829              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
104830            }
104831          },
104832          {
104833            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104834            "in": "query",
104835            "name": "dryRun",
104836            "type": "string",
104837            "uniqueItems": true
104838          },
104839          {
104840            "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.",
104841            "in": "query",
104842            "name": "gracePeriodSeconds",
104843            "type": "integer",
104844            "uniqueItems": true
104845          },
104846          {
104847            "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.",
104848            "in": "query",
104849            "name": "orphanDependents",
104850            "type": "boolean",
104851            "uniqueItems": true
104852          },
104853          {
104854            "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.",
104855            "in": "query",
104856            "name": "propagationPolicy",
104857            "type": "string",
104858            "uniqueItems": true
104859          }
104860        ],
104861        "produces": [
104862          "application/json",
104863          "application/yaml",
104864          "application/vnd.kubernetes.protobuf"
104865        ],
104866        "responses": {
104867          "200": {
104868            "description": "OK",
104869            "schema": {
104870              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104871            }
104872          },
104873          "202": {
104874            "description": "Accepted",
104875            "schema": {
104876              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
104877            }
104878          },
104879          "401": {
104880            "description": "Unauthorized"
104881          }
104882        },
104883        "schemes": [
104884          "https"
104885        ],
104886        "tags": [
104887          "storage_v1"
104888        ],
104889        "x-kubernetes-action": "delete",
104890        "x-kubernetes-group-version-kind": {
104891          "group": "storage.k8s.io",
104892          "kind": "StorageClass",
104893          "version": "v1"
104894        }
104895      },
104896      "get": {
104897        "consumes": [
104898          "*/*"
104899        ],
104900        "description": "read the specified StorageClass",
104901        "operationId": "readStorageV1StorageClass",
104902        "parameters": [
104903          {
104904            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
104905            "in": "query",
104906            "name": "exact",
104907            "type": "boolean",
104908            "uniqueItems": true
104909          },
104910          {
104911            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
104912            "in": "query",
104913            "name": "export",
104914            "type": "boolean",
104915            "uniqueItems": true
104916          }
104917        ],
104918        "produces": [
104919          "application/json",
104920          "application/yaml",
104921          "application/vnd.kubernetes.protobuf"
104922        ],
104923        "responses": {
104924          "200": {
104925            "description": "OK",
104926            "schema": {
104927              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
104928            }
104929          },
104930          "401": {
104931            "description": "Unauthorized"
104932          }
104933        },
104934        "schemes": [
104935          "https"
104936        ],
104937        "tags": [
104938          "storage_v1"
104939        ],
104940        "x-kubernetes-action": "get",
104941        "x-kubernetes-group-version-kind": {
104942          "group": "storage.k8s.io",
104943          "kind": "StorageClass",
104944          "version": "v1"
104945        }
104946      },
104947      "parameters": [
104948        {
104949          "description": "name of the StorageClass",
104950          "in": "path",
104951          "name": "name",
104952          "required": true,
104953          "type": "string",
104954          "uniqueItems": true
104955        },
104956        {
104957          "description": "If 'true', then the output is pretty printed.",
104958          "in": "query",
104959          "name": "pretty",
104960          "type": "string",
104961          "uniqueItems": true
104962        }
104963      ],
104964      "patch": {
104965        "consumes": [
104966          "application/json-patch+json",
104967          "application/merge-patch+json",
104968          "application/strategic-merge-patch+json"
104969        ],
104970        "description": "partially update the specified StorageClass",
104971        "operationId": "patchStorageV1StorageClass",
104972        "parameters": [
104973          {
104974            "in": "body",
104975            "name": "body",
104976            "required": true,
104977            "schema": {
104978              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
104979            }
104980          },
104981          {
104982            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
104983            "in": "query",
104984            "name": "dryRun",
104985            "type": "string",
104986            "uniqueItems": true
104987          },
104988          {
104989            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
104990            "in": "query",
104991            "name": "fieldManager",
104992            "type": "string",
104993            "uniqueItems": true
104994          },
104995          {
104996            "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.",
104997            "in": "query",
104998            "name": "force",
104999            "type": "boolean",
105000            "uniqueItems": true
105001          }
105002        ],
105003        "produces": [
105004          "application/json",
105005          "application/yaml",
105006          "application/vnd.kubernetes.protobuf"
105007        ],
105008        "responses": {
105009          "200": {
105010            "description": "OK",
105011            "schema": {
105012              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
105013            }
105014          },
105015          "401": {
105016            "description": "Unauthorized"
105017          }
105018        },
105019        "schemes": [
105020          "https"
105021        ],
105022        "tags": [
105023          "storage_v1"
105024        ],
105025        "x-kubernetes-action": "patch",
105026        "x-kubernetes-group-version-kind": {
105027          "group": "storage.k8s.io",
105028          "kind": "StorageClass",
105029          "version": "v1"
105030        }
105031      },
105032      "put": {
105033        "consumes": [
105034          "*/*"
105035        ],
105036        "description": "replace the specified StorageClass",
105037        "operationId": "replaceStorageV1StorageClass",
105038        "parameters": [
105039          {
105040            "in": "body",
105041            "name": "body",
105042            "required": true,
105043            "schema": {
105044              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
105045            }
105046          },
105047          {
105048            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105049            "in": "query",
105050            "name": "dryRun",
105051            "type": "string",
105052            "uniqueItems": true
105053          },
105054          {
105055            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
105056            "in": "query",
105057            "name": "fieldManager",
105058            "type": "string",
105059            "uniqueItems": true
105060          }
105061        ],
105062        "produces": [
105063          "application/json",
105064          "application/yaml",
105065          "application/vnd.kubernetes.protobuf"
105066        ],
105067        "responses": {
105068          "200": {
105069            "description": "OK",
105070            "schema": {
105071              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
105072            }
105073          },
105074          "201": {
105075            "description": "Created",
105076            "schema": {
105077              "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass"
105078            }
105079          },
105080          "401": {
105081            "description": "Unauthorized"
105082          }
105083        },
105084        "schemes": [
105085          "https"
105086        ],
105087        "tags": [
105088          "storage_v1"
105089        ],
105090        "x-kubernetes-action": "put",
105091        "x-kubernetes-group-version-kind": {
105092          "group": "storage.k8s.io",
105093          "kind": "StorageClass",
105094          "version": "v1"
105095        }
105096      }
105097    },
105098    "/apis/storage.k8s.io/v1/volumeattachments": {
105099      "delete": {
105100        "consumes": [
105101          "*/*"
105102        ],
105103        "description": "delete collection of VolumeAttachment",
105104        "operationId": "deleteStorageV1CollectionVolumeAttachment",
105105        "parameters": [
105106          {
105107            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
105108            "in": "query",
105109            "name": "allowWatchBookmarks",
105110            "type": "boolean",
105111            "uniqueItems": true
105112          },
105113          {
105114            "in": "body",
105115            "name": "body",
105116            "schema": {
105117              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
105118            }
105119          },
105120          {
105121            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105122            "in": "query",
105123            "name": "continue",
105124            "type": "string",
105125            "uniqueItems": true
105126          },
105127          {
105128            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105129            "in": "query",
105130            "name": "dryRun",
105131            "type": "string",
105132            "uniqueItems": true
105133          },
105134          {
105135            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105136            "in": "query",
105137            "name": "fieldSelector",
105138            "type": "string",
105139            "uniqueItems": true
105140          },
105141          {
105142            "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.",
105143            "in": "query",
105144            "name": "gracePeriodSeconds",
105145            "type": "integer",
105146            "uniqueItems": true
105147          },
105148          {
105149            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105150            "in": "query",
105151            "name": "labelSelector",
105152            "type": "string",
105153            "uniqueItems": true
105154          },
105155          {
105156            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105157            "in": "query",
105158            "name": "limit",
105159            "type": "integer",
105160            "uniqueItems": true
105161          },
105162          {
105163            "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.",
105164            "in": "query",
105165            "name": "orphanDependents",
105166            "type": "boolean",
105167            "uniqueItems": true
105168          },
105169          {
105170            "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.",
105171            "in": "query",
105172            "name": "propagationPolicy",
105173            "type": "string",
105174            "uniqueItems": true
105175          },
105176          {
105177            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
105178            "in": "query",
105179            "name": "resourceVersion",
105180            "type": "string",
105181            "uniqueItems": true
105182          },
105183          {
105184            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105185            "in": "query",
105186            "name": "timeoutSeconds",
105187            "type": "integer",
105188            "uniqueItems": true
105189          },
105190          {
105191            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105192            "in": "query",
105193            "name": "watch",
105194            "type": "boolean",
105195            "uniqueItems": true
105196          }
105197        ],
105198        "produces": [
105199          "application/json",
105200          "application/yaml",
105201          "application/vnd.kubernetes.protobuf"
105202        ],
105203        "responses": {
105204          "200": {
105205            "description": "OK",
105206            "schema": {
105207              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
105208            }
105209          },
105210          "401": {
105211            "description": "Unauthorized"
105212          }
105213        },
105214        "schemes": [
105215          "https"
105216        ],
105217        "tags": [
105218          "storage_v1"
105219        ],
105220        "x-kubernetes-action": "deletecollection",
105221        "x-kubernetes-group-version-kind": {
105222          "group": "storage.k8s.io",
105223          "kind": "VolumeAttachment",
105224          "version": "v1"
105225        }
105226      },
105227      "get": {
105228        "consumes": [
105229          "*/*"
105230        ],
105231        "description": "list or watch objects of kind VolumeAttachment",
105232        "operationId": "listStorageV1VolumeAttachment",
105233        "parameters": [
105234          {
105235            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
105236            "in": "query",
105237            "name": "allowWatchBookmarks",
105238            "type": "boolean",
105239            "uniqueItems": true
105240          },
105241          {
105242            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105243            "in": "query",
105244            "name": "continue",
105245            "type": "string",
105246            "uniqueItems": true
105247          },
105248          {
105249            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105250            "in": "query",
105251            "name": "fieldSelector",
105252            "type": "string",
105253            "uniqueItems": true
105254          },
105255          {
105256            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105257            "in": "query",
105258            "name": "labelSelector",
105259            "type": "string",
105260            "uniqueItems": true
105261          },
105262          {
105263            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105264            "in": "query",
105265            "name": "limit",
105266            "type": "integer",
105267            "uniqueItems": true
105268          },
105269          {
105270            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
105271            "in": "query",
105272            "name": "resourceVersion",
105273            "type": "string",
105274            "uniqueItems": true
105275          },
105276          {
105277            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105278            "in": "query",
105279            "name": "timeoutSeconds",
105280            "type": "integer",
105281            "uniqueItems": true
105282          },
105283          {
105284            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105285            "in": "query",
105286            "name": "watch",
105287            "type": "boolean",
105288            "uniqueItems": true
105289          }
105290        ],
105291        "produces": [
105292          "application/json",
105293          "application/yaml",
105294          "application/vnd.kubernetes.protobuf",
105295          "application/json;stream=watch",
105296          "application/vnd.kubernetes.protobuf;stream=watch"
105297        ],
105298        "responses": {
105299          "200": {
105300            "description": "OK",
105301            "schema": {
105302              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentList"
105303            }
105304          },
105305          "401": {
105306            "description": "Unauthorized"
105307          }
105308        },
105309        "schemes": [
105310          "https"
105311        ],
105312        "tags": [
105313          "storage_v1"
105314        ],
105315        "x-kubernetes-action": "list",
105316        "x-kubernetes-group-version-kind": {
105317          "group": "storage.k8s.io",
105318          "kind": "VolumeAttachment",
105319          "version": "v1"
105320        }
105321      },
105322      "parameters": [
105323        {
105324          "description": "If 'true', then the output is pretty printed.",
105325          "in": "query",
105326          "name": "pretty",
105327          "type": "string",
105328          "uniqueItems": true
105329        }
105330      ],
105331      "post": {
105332        "consumes": [
105333          "*/*"
105334        ],
105335        "description": "create a VolumeAttachment",
105336        "operationId": "createStorageV1VolumeAttachment",
105337        "parameters": [
105338          {
105339            "in": "body",
105340            "name": "body",
105341            "required": true,
105342            "schema": {
105343              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105344            }
105345          },
105346          {
105347            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105348            "in": "query",
105349            "name": "dryRun",
105350            "type": "string",
105351            "uniqueItems": true
105352          },
105353          {
105354            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
105355            "in": "query",
105356            "name": "fieldManager",
105357            "type": "string",
105358            "uniqueItems": true
105359          }
105360        ],
105361        "produces": [
105362          "application/json",
105363          "application/yaml",
105364          "application/vnd.kubernetes.protobuf"
105365        ],
105366        "responses": {
105367          "200": {
105368            "description": "OK",
105369            "schema": {
105370              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105371            }
105372          },
105373          "201": {
105374            "description": "Created",
105375            "schema": {
105376              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105377            }
105378          },
105379          "202": {
105380            "description": "Accepted",
105381            "schema": {
105382              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105383            }
105384          },
105385          "401": {
105386            "description": "Unauthorized"
105387          }
105388        },
105389        "schemes": [
105390          "https"
105391        ],
105392        "tags": [
105393          "storage_v1"
105394        ],
105395        "x-kubernetes-action": "post",
105396        "x-kubernetes-group-version-kind": {
105397          "group": "storage.k8s.io",
105398          "kind": "VolumeAttachment",
105399          "version": "v1"
105400        }
105401      }
105402    },
105403    "/apis/storage.k8s.io/v1/volumeattachments/{name}": {
105404      "delete": {
105405        "consumes": [
105406          "*/*"
105407        ],
105408        "description": "delete a VolumeAttachment",
105409        "operationId": "deleteStorageV1VolumeAttachment",
105410        "parameters": [
105411          {
105412            "in": "body",
105413            "name": "body",
105414            "schema": {
105415              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
105416            }
105417          },
105418          {
105419            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105420            "in": "query",
105421            "name": "dryRun",
105422            "type": "string",
105423            "uniqueItems": true
105424          },
105425          {
105426            "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.",
105427            "in": "query",
105428            "name": "gracePeriodSeconds",
105429            "type": "integer",
105430            "uniqueItems": true
105431          },
105432          {
105433            "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.",
105434            "in": "query",
105435            "name": "orphanDependents",
105436            "type": "boolean",
105437            "uniqueItems": true
105438          },
105439          {
105440            "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.",
105441            "in": "query",
105442            "name": "propagationPolicy",
105443            "type": "string",
105444            "uniqueItems": true
105445          }
105446        ],
105447        "produces": [
105448          "application/json",
105449          "application/yaml",
105450          "application/vnd.kubernetes.protobuf"
105451        ],
105452        "responses": {
105453          "200": {
105454            "description": "OK",
105455            "schema": {
105456              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
105457            }
105458          },
105459          "202": {
105460            "description": "Accepted",
105461            "schema": {
105462              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
105463            }
105464          },
105465          "401": {
105466            "description": "Unauthorized"
105467          }
105468        },
105469        "schemes": [
105470          "https"
105471        ],
105472        "tags": [
105473          "storage_v1"
105474        ],
105475        "x-kubernetes-action": "delete",
105476        "x-kubernetes-group-version-kind": {
105477          "group": "storage.k8s.io",
105478          "kind": "VolumeAttachment",
105479          "version": "v1"
105480        }
105481      },
105482      "get": {
105483        "consumes": [
105484          "*/*"
105485        ],
105486        "description": "read the specified VolumeAttachment",
105487        "operationId": "readStorageV1VolumeAttachment",
105488        "parameters": [
105489          {
105490            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
105491            "in": "query",
105492            "name": "exact",
105493            "type": "boolean",
105494            "uniqueItems": true
105495          },
105496          {
105497            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
105498            "in": "query",
105499            "name": "export",
105500            "type": "boolean",
105501            "uniqueItems": true
105502          }
105503        ],
105504        "produces": [
105505          "application/json",
105506          "application/yaml",
105507          "application/vnd.kubernetes.protobuf"
105508        ],
105509        "responses": {
105510          "200": {
105511            "description": "OK",
105512            "schema": {
105513              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105514            }
105515          },
105516          "401": {
105517            "description": "Unauthorized"
105518          }
105519        },
105520        "schemes": [
105521          "https"
105522        ],
105523        "tags": [
105524          "storage_v1"
105525        ],
105526        "x-kubernetes-action": "get",
105527        "x-kubernetes-group-version-kind": {
105528          "group": "storage.k8s.io",
105529          "kind": "VolumeAttachment",
105530          "version": "v1"
105531        }
105532      },
105533      "parameters": [
105534        {
105535          "description": "name of the VolumeAttachment",
105536          "in": "path",
105537          "name": "name",
105538          "required": true,
105539          "type": "string",
105540          "uniqueItems": true
105541        },
105542        {
105543          "description": "If 'true', then the output is pretty printed.",
105544          "in": "query",
105545          "name": "pretty",
105546          "type": "string",
105547          "uniqueItems": true
105548        }
105549      ],
105550      "patch": {
105551        "consumes": [
105552          "application/json-patch+json",
105553          "application/merge-patch+json",
105554          "application/strategic-merge-patch+json"
105555        ],
105556        "description": "partially update the specified VolumeAttachment",
105557        "operationId": "patchStorageV1VolumeAttachment",
105558        "parameters": [
105559          {
105560            "in": "body",
105561            "name": "body",
105562            "required": true,
105563            "schema": {
105564              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
105565            }
105566          },
105567          {
105568            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105569            "in": "query",
105570            "name": "dryRun",
105571            "type": "string",
105572            "uniqueItems": true
105573          },
105574          {
105575            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
105576            "in": "query",
105577            "name": "fieldManager",
105578            "type": "string",
105579            "uniqueItems": true
105580          },
105581          {
105582            "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.",
105583            "in": "query",
105584            "name": "force",
105585            "type": "boolean",
105586            "uniqueItems": true
105587          }
105588        ],
105589        "produces": [
105590          "application/json",
105591          "application/yaml",
105592          "application/vnd.kubernetes.protobuf"
105593        ],
105594        "responses": {
105595          "200": {
105596            "description": "OK",
105597            "schema": {
105598              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105599            }
105600          },
105601          "401": {
105602            "description": "Unauthorized"
105603          }
105604        },
105605        "schemes": [
105606          "https"
105607        ],
105608        "tags": [
105609          "storage_v1"
105610        ],
105611        "x-kubernetes-action": "patch",
105612        "x-kubernetes-group-version-kind": {
105613          "group": "storage.k8s.io",
105614          "kind": "VolumeAttachment",
105615          "version": "v1"
105616        }
105617      },
105618      "put": {
105619        "consumes": [
105620          "*/*"
105621        ],
105622        "description": "replace the specified VolumeAttachment",
105623        "operationId": "replaceStorageV1VolumeAttachment",
105624        "parameters": [
105625          {
105626            "in": "body",
105627            "name": "body",
105628            "required": true,
105629            "schema": {
105630              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105631            }
105632          },
105633          {
105634            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105635            "in": "query",
105636            "name": "dryRun",
105637            "type": "string",
105638            "uniqueItems": true
105639          },
105640          {
105641            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
105642            "in": "query",
105643            "name": "fieldManager",
105644            "type": "string",
105645            "uniqueItems": true
105646          }
105647        ],
105648        "produces": [
105649          "application/json",
105650          "application/yaml",
105651          "application/vnd.kubernetes.protobuf"
105652        ],
105653        "responses": {
105654          "200": {
105655            "description": "OK",
105656            "schema": {
105657              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105658            }
105659          },
105660          "201": {
105661            "description": "Created",
105662            "schema": {
105663              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105664            }
105665          },
105666          "401": {
105667            "description": "Unauthorized"
105668          }
105669        },
105670        "schemes": [
105671          "https"
105672        ],
105673        "tags": [
105674          "storage_v1"
105675        ],
105676        "x-kubernetes-action": "put",
105677        "x-kubernetes-group-version-kind": {
105678          "group": "storage.k8s.io",
105679          "kind": "VolumeAttachment",
105680          "version": "v1"
105681        }
105682      }
105683    },
105684    "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": {
105685      "get": {
105686        "consumes": [
105687          "*/*"
105688        ],
105689        "description": "read status of the specified VolumeAttachment",
105690        "operationId": "readStorageV1VolumeAttachmentStatus",
105691        "produces": [
105692          "application/json",
105693          "application/yaml",
105694          "application/vnd.kubernetes.protobuf"
105695        ],
105696        "responses": {
105697          "200": {
105698            "description": "OK",
105699            "schema": {
105700              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105701            }
105702          },
105703          "401": {
105704            "description": "Unauthorized"
105705          }
105706        },
105707        "schemes": [
105708          "https"
105709        ],
105710        "tags": [
105711          "storage_v1"
105712        ],
105713        "x-kubernetes-action": "get",
105714        "x-kubernetes-group-version-kind": {
105715          "group": "storage.k8s.io",
105716          "kind": "VolumeAttachment",
105717          "version": "v1"
105718        }
105719      },
105720      "parameters": [
105721        {
105722          "description": "name of the VolumeAttachment",
105723          "in": "path",
105724          "name": "name",
105725          "required": true,
105726          "type": "string",
105727          "uniqueItems": true
105728        },
105729        {
105730          "description": "If 'true', then the output is pretty printed.",
105731          "in": "query",
105732          "name": "pretty",
105733          "type": "string",
105734          "uniqueItems": true
105735        }
105736      ],
105737      "patch": {
105738        "consumes": [
105739          "application/json-patch+json",
105740          "application/merge-patch+json",
105741          "application/strategic-merge-patch+json"
105742        ],
105743        "description": "partially update status of the specified VolumeAttachment",
105744        "operationId": "patchStorageV1VolumeAttachmentStatus",
105745        "parameters": [
105746          {
105747            "in": "body",
105748            "name": "body",
105749            "required": true,
105750            "schema": {
105751              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
105752            }
105753          },
105754          {
105755            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105756            "in": "query",
105757            "name": "dryRun",
105758            "type": "string",
105759            "uniqueItems": true
105760          },
105761          {
105762            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
105763            "in": "query",
105764            "name": "fieldManager",
105765            "type": "string",
105766            "uniqueItems": true
105767          },
105768          {
105769            "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.",
105770            "in": "query",
105771            "name": "force",
105772            "type": "boolean",
105773            "uniqueItems": true
105774          }
105775        ],
105776        "produces": [
105777          "application/json",
105778          "application/yaml",
105779          "application/vnd.kubernetes.protobuf"
105780        ],
105781        "responses": {
105782          "200": {
105783            "description": "OK",
105784            "schema": {
105785              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105786            }
105787          },
105788          "401": {
105789            "description": "Unauthorized"
105790          }
105791        },
105792        "schemes": [
105793          "https"
105794        ],
105795        "tags": [
105796          "storage_v1"
105797        ],
105798        "x-kubernetes-action": "patch",
105799        "x-kubernetes-group-version-kind": {
105800          "group": "storage.k8s.io",
105801          "kind": "VolumeAttachment",
105802          "version": "v1"
105803        }
105804      },
105805      "put": {
105806        "consumes": [
105807          "*/*"
105808        ],
105809        "description": "replace status of the specified VolumeAttachment",
105810        "operationId": "replaceStorageV1VolumeAttachmentStatus",
105811        "parameters": [
105812          {
105813            "in": "body",
105814            "name": "body",
105815            "required": true,
105816            "schema": {
105817              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105818            }
105819          },
105820          {
105821            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
105822            "in": "query",
105823            "name": "dryRun",
105824            "type": "string",
105825            "uniqueItems": true
105826          },
105827          {
105828            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
105829            "in": "query",
105830            "name": "fieldManager",
105831            "type": "string",
105832            "uniqueItems": true
105833          }
105834        ],
105835        "produces": [
105836          "application/json",
105837          "application/yaml",
105838          "application/vnd.kubernetes.protobuf"
105839        ],
105840        "responses": {
105841          "200": {
105842            "description": "OK",
105843            "schema": {
105844              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105845            }
105846          },
105847          "201": {
105848            "description": "Created",
105849            "schema": {
105850              "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment"
105851            }
105852          },
105853          "401": {
105854            "description": "Unauthorized"
105855          }
105856        },
105857        "schemes": [
105858          "https"
105859        ],
105860        "tags": [
105861          "storage_v1"
105862        ],
105863        "x-kubernetes-action": "put",
105864        "x-kubernetes-group-version-kind": {
105865          "group": "storage.k8s.io",
105866          "kind": "VolumeAttachment",
105867          "version": "v1"
105868        }
105869      }
105870    },
105871    "/apis/storage.k8s.io/v1/watch/storageclasses": {
105872      "get": {
105873        "consumes": [
105874          "*/*"
105875        ],
105876        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
105877        "operationId": "watchStorageV1StorageClassList",
105878        "produces": [
105879          "application/json",
105880          "application/yaml",
105881          "application/vnd.kubernetes.protobuf",
105882          "application/json;stream=watch",
105883          "application/vnd.kubernetes.protobuf;stream=watch"
105884        ],
105885        "responses": {
105886          "200": {
105887            "description": "OK",
105888            "schema": {
105889              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105890            }
105891          },
105892          "401": {
105893            "description": "Unauthorized"
105894          }
105895        },
105896        "schemes": [
105897          "https"
105898        ],
105899        "tags": [
105900          "storage_v1"
105901        ],
105902        "x-kubernetes-action": "watchlist",
105903        "x-kubernetes-group-version-kind": {
105904          "group": "storage.k8s.io",
105905          "kind": "StorageClass",
105906          "version": "v1"
105907        }
105908      },
105909      "parameters": [
105910        {
105911          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
105912          "in": "query",
105913          "name": "allowWatchBookmarks",
105914          "type": "boolean",
105915          "uniqueItems": true
105916        },
105917        {
105918          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
105919          "in": "query",
105920          "name": "continue",
105921          "type": "string",
105922          "uniqueItems": true
105923        },
105924        {
105925          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
105926          "in": "query",
105927          "name": "fieldSelector",
105928          "type": "string",
105929          "uniqueItems": true
105930        },
105931        {
105932          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
105933          "in": "query",
105934          "name": "labelSelector",
105935          "type": "string",
105936          "uniqueItems": true
105937        },
105938        {
105939          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
105940          "in": "query",
105941          "name": "limit",
105942          "type": "integer",
105943          "uniqueItems": true
105944        },
105945        {
105946          "description": "If 'true', then the output is pretty printed.",
105947          "in": "query",
105948          "name": "pretty",
105949          "type": "string",
105950          "uniqueItems": true
105951        },
105952        {
105953          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
105954          "in": "query",
105955          "name": "resourceVersion",
105956          "type": "string",
105957          "uniqueItems": true
105958        },
105959        {
105960          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
105961          "in": "query",
105962          "name": "timeoutSeconds",
105963          "type": "integer",
105964          "uniqueItems": true
105965        },
105966        {
105967          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
105968          "in": "query",
105969          "name": "watch",
105970          "type": "boolean",
105971          "uniqueItems": true
105972        }
105973      ]
105974    },
105975    "/apis/storage.k8s.io/v1/watch/storageclasses/{name}": {
105976      "get": {
105977        "consumes": [
105978          "*/*"
105979        ],
105980        "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.",
105981        "operationId": "watchStorageV1StorageClass",
105982        "produces": [
105983          "application/json",
105984          "application/yaml",
105985          "application/vnd.kubernetes.protobuf",
105986          "application/json;stream=watch",
105987          "application/vnd.kubernetes.protobuf;stream=watch"
105988        ],
105989        "responses": {
105990          "200": {
105991            "description": "OK",
105992            "schema": {
105993              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
105994            }
105995          },
105996          "401": {
105997            "description": "Unauthorized"
105998          }
105999        },
106000        "schemes": [
106001          "https"
106002        ],
106003        "tags": [
106004          "storage_v1"
106005        ],
106006        "x-kubernetes-action": "watch",
106007        "x-kubernetes-group-version-kind": {
106008          "group": "storage.k8s.io",
106009          "kind": "StorageClass",
106010          "version": "v1"
106011        }
106012      },
106013      "parameters": [
106014        {
106015          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
106016          "in": "query",
106017          "name": "allowWatchBookmarks",
106018          "type": "boolean",
106019          "uniqueItems": true
106020        },
106021        {
106022          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106023          "in": "query",
106024          "name": "continue",
106025          "type": "string",
106026          "uniqueItems": true
106027        },
106028        {
106029          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106030          "in": "query",
106031          "name": "fieldSelector",
106032          "type": "string",
106033          "uniqueItems": true
106034        },
106035        {
106036          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106037          "in": "query",
106038          "name": "labelSelector",
106039          "type": "string",
106040          "uniqueItems": true
106041        },
106042        {
106043          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106044          "in": "query",
106045          "name": "limit",
106046          "type": "integer",
106047          "uniqueItems": true
106048        },
106049        {
106050          "description": "name of the StorageClass",
106051          "in": "path",
106052          "name": "name",
106053          "required": true,
106054          "type": "string",
106055          "uniqueItems": true
106056        },
106057        {
106058          "description": "If 'true', then the output is pretty printed.",
106059          "in": "query",
106060          "name": "pretty",
106061          "type": "string",
106062          "uniqueItems": true
106063        },
106064        {
106065          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
106066          "in": "query",
106067          "name": "resourceVersion",
106068          "type": "string",
106069          "uniqueItems": true
106070        },
106071        {
106072          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106073          "in": "query",
106074          "name": "timeoutSeconds",
106075          "type": "integer",
106076          "uniqueItems": true
106077        },
106078        {
106079          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106080          "in": "query",
106081          "name": "watch",
106082          "type": "boolean",
106083          "uniqueItems": true
106084        }
106085      ]
106086    },
106087    "/apis/storage.k8s.io/v1/watch/volumeattachments": {
106088      "get": {
106089        "consumes": [
106090          "*/*"
106091        ],
106092        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
106093        "operationId": "watchStorageV1VolumeAttachmentList",
106094        "produces": [
106095          "application/json",
106096          "application/yaml",
106097          "application/vnd.kubernetes.protobuf",
106098          "application/json;stream=watch",
106099          "application/vnd.kubernetes.protobuf;stream=watch"
106100        ],
106101        "responses": {
106102          "200": {
106103            "description": "OK",
106104            "schema": {
106105              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
106106            }
106107          },
106108          "401": {
106109            "description": "Unauthorized"
106110          }
106111        },
106112        "schemes": [
106113          "https"
106114        ],
106115        "tags": [
106116          "storage_v1"
106117        ],
106118        "x-kubernetes-action": "watchlist",
106119        "x-kubernetes-group-version-kind": {
106120          "group": "storage.k8s.io",
106121          "kind": "VolumeAttachment",
106122          "version": "v1"
106123        }
106124      },
106125      "parameters": [
106126        {
106127          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
106128          "in": "query",
106129          "name": "allowWatchBookmarks",
106130          "type": "boolean",
106131          "uniqueItems": true
106132        },
106133        {
106134          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106135          "in": "query",
106136          "name": "continue",
106137          "type": "string",
106138          "uniqueItems": true
106139        },
106140        {
106141          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106142          "in": "query",
106143          "name": "fieldSelector",
106144          "type": "string",
106145          "uniqueItems": true
106146        },
106147        {
106148          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106149          "in": "query",
106150          "name": "labelSelector",
106151          "type": "string",
106152          "uniqueItems": true
106153        },
106154        {
106155          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106156          "in": "query",
106157          "name": "limit",
106158          "type": "integer",
106159          "uniqueItems": true
106160        },
106161        {
106162          "description": "If 'true', then the output is pretty printed.",
106163          "in": "query",
106164          "name": "pretty",
106165          "type": "string",
106166          "uniqueItems": true
106167        },
106168        {
106169          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
106170          "in": "query",
106171          "name": "resourceVersion",
106172          "type": "string",
106173          "uniqueItems": true
106174        },
106175        {
106176          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106177          "in": "query",
106178          "name": "timeoutSeconds",
106179          "type": "integer",
106180          "uniqueItems": true
106181        },
106182        {
106183          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106184          "in": "query",
106185          "name": "watch",
106186          "type": "boolean",
106187          "uniqueItems": true
106188        }
106189      ]
106190    },
106191    "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": {
106192      "get": {
106193        "consumes": [
106194          "*/*"
106195        ],
106196        "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.",
106197        "operationId": "watchStorageV1VolumeAttachment",
106198        "produces": [
106199          "application/json",
106200          "application/yaml",
106201          "application/vnd.kubernetes.protobuf",
106202          "application/json;stream=watch",
106203          "application/vnd.kubernetes.protobuf;stream=watch"
106204        ],
106205        "responses": {
106206          "200": {
106207            "description": "OK",
106208            "schema": {
106209              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
106210            }
106211          },
106212          "401": {
106213            "description": "Unauthorized"
106214          }
106215        },
106216        "schemes": [
106217          "https"
106218        ],
106219        "tags": [
106220          "storage_v1"
106221        ],
106222        "x-kubernetes-action": "watch",
106223        "x-kubernetes-group-version-kind": {
106224          "group": "storage.k8s.io",
106225          "kind": "VolumeAttachment",
106226          "version": "v1"
106227        }
106228      },
106229      "parameters": [
106230        {
106231          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
106232          "in": "query",
106233          "name": "allowWatchBookmarks",
106234          "type": "boolean",
106235          "uniqueItems": true
106236        },
106237        {
106238          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106239          "in": "query",
106240          "name": "continue",
106241          "type": "string",
106242          "uniqueItems": true
106243        },
106244        {
106245          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106246          "in": "query",
106247          "name": "fieldSelector",
106248          "type": "string",
106249          "uniqueItems": true
106250        },
106251        {
106252          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106253          "in": "query",
106254          "name": "labelSelector",
106255          "type": "string",
106256          "uniqueItems": true
106257        },
106258        {
106259          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106260          "in": "query",
106261          "name": "limit",
106262          "type": "integer",
106263          "uniqueItems": true
106264        },
106265        {
106266          "description": "name of the VolumeAttachment",
106267          "in": "path",
106268          "name": "name",
106269          "required": true,
106270          "type": "string",
106271          "uniqueItems": true
106272        },
106273        {
106274          "description": "If 'true', then the output is pretty printed.",
106275          "in": "query",
106276          "name": "pretty",
106277          "type": "string",
106278          "uniqueItems": true
106279        },
106280        {
106281          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
106282          "in": "query",
106283          "name": "resourceVersion",
106284          "type": "string",
106285          "uniqueItems": true
106286        },
106287        {
106288          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106289          "in": "query",
106290          "name": "timeoutSeconds",
106291          "type": "integer",
106292          "uniqueItems": true
106293        },
106294        {
106295          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106296          "in": "query",
106297          "name": "watch",
106298          "type": "boolean",
106299          "uniqueItems": true
106300        }
106301      ]
106302    },
106303    "/apis/storage.k8s.io/v1alpha1/": {
106304      "get": {
106305        "consumes": [
106306          "application/json",
106307          "application/yaml",
106308          "application/vnd.kubernetes.protobuf"
106309        ],
106310        "description": "get available resources",
106311        "operationId": "getStorageV1alpha1APIResources",
106312        "produces": [
106313          "application/json",
106314          "application/yaml",
106315          "application/vnd.kubernetes.protobuf"
106316        ],
106317        "responses": {
106318          "200": {
106319            "description": "OK",
106320            "schema": {
106321              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
106322            }
106323          },
106324          "401": {
106325            "description": "Unauthorized"
106326          }
106327        },
106328        "schemes": [
106329          "https"
106330        ],
106331        "tags": [
106332          "storage_v1alpha1"
106333        ]
106334      }
106335    },
106336    "/apis/storage.k8s.io/v1alpha1/volumeattachments": {
106337      "delete": {
106338        "consumes": [
106339          "*/*"
106340        ],
106341        "description": "delete collection of VolumeAttachment",
106342        "operationId": "deleteStorageV1alpha1CollectionVolumeAttachment",
106343        "parameters": [
106344          {
106345            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
106346            "in": "query",
106347            "name": "allowWatchBookmarks",
106348            "type": "boolean",
106349            "uniqueItems": true
106350          },
106351          {
106352            "in": "body",
106353            "name": "body",
106354            "schema": {
106355              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106356            }
106357          },
106358          {
106359            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106360            "in": "query",
106361            "name": "continue",
106362            "type": "string",
106363            "uniqueItems": true
106364          },
106365          {
106366            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106367            "in": "query",
106368            "name": "dryRun",
106369            "type": "string",
106370            "uniqueItems": true
106371          },
106372          {
106373            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106374            "in": "query",
106375            "name": "fieldSelector",
106376            "type": "string",
106377            "uniqueItems": true
106378          },
106379          {
106380            "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.",
106381            "in": "query",
106382            "name": "gracePeriodSeconds",
106383            "type": "integer",
106384            "uniqueItems": true
106385          },
106386          {
106387            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106388            "in": "query",
106389            "name": "labelSelector",
106390            "type": "string",
106391            "uniqueItems": true
106392          },
106393          {
106394            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106395            "in": "query",
106396            "name": "limit",
106397            "type": "integer",
106398            "uniqueItems": true
106399          },
106400          {
106401            "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.",
106402            "in": "query",
106403            "name": "orphanDependents",
106404            "type": "boolean",
106405            "uniqueItems": true
106406          },
106407          {
106408            "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.",
106409            "in": "query",
106410            "name": "propagationPolicy",
106411            "type": "string",
106412            "uniqueItems": true
106413          },
106414          {
106415            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
106416            "in": "query",
106417            "name": "resourceVersion",
106418            "type": "string",
106419            "uniqueItems": true
106420          },
106421          {
106422            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106423            "in": "query",
106424            "name": "timeoutSeconds",
106425            "type": "integer",
106426            "uniqueItems": true
106427          },
106428          {
106429            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106430            "in": "query",
106431            "name": "watch",
106432            "type": "boolean",
106433            "uniqueItems": true
106434          }
106435        ],
106436        "produces": [
106437          "application/json",
106438          "application/yaml",
106439          "application/vnd.kubernetes.protobuf"
106440        ],
106441        "responses": {
106442          "200": {
106443            "description": "OK",
106444            "schema": {
106445              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
106446            }
106447          },
106448          "401": {
106449            "description": "Unauthorized"
106450          }
106451        },
106452        "schemes": [
106453          "https"
106454        ],
106455        "tags": [
106456          "storage_v1alpha1"
106457        ],
106458        "x-kubernetes-action": "deletecollection",
106459        "x-kubernetes-group-version-kind": {
106460          "group": "storage.k8s.io",
106461          "kind": "VolumeAttachment",
106462          "version": "v1alpha1"
106463        }
106464      },
106465      "get": {
106466        "consumes": [
106467          "*/*"
106468        ],
106469        "description": "list or watch objects of kind VolumeAttachment",
106470        "operationId": "listStorageV1alpha1VolumeAttachment",
106471        "parameters": [
106472          {
106473            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
106474            "in": "query",
106475            "name": "allowWatchBookmarks",
106476            "type": "boolean",
106477            "uniqueItems": true
106478          },
106479          {
106480            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106481            "in": "query",
106482            "name": "continue",
106483            "type": "string",
106484            "uniqueItems": true
106485          },
106486          {
106487            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106488            "in": "query",
106489            "name": "fieldSelector",
106490            "type": "string",
106491            "uniqueItems": true
106492          },
106493          {
106494            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106495            "in": "query",
106496            "name": "labelSelector",
106497            "type": "string",
106498            "uniqueItems": true
106499          },
106500          {
106501            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106502            "in": "query",
106503            "name": "limit",
106504            "type": "integer",
106505            "uniqueItems": true
106506          },
106507          {
106508            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
106509            "in": "query",
106510            "name": "resourceVersion",
106511            "type": "string",
106512            "uniqueItems": true
106513          },
106514          {
106515            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
106516            "in": "query",
106517            "name": "timeoutSeconds",
106518            "type": "integer",
106519            "uniqueItems": true
106520          },
106521          {
106522            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
106523            "in": "query",
106524            "name": "watch",
106525            "type": "boolean",
106526            "uniqueItems": true
106527          }
106528        ],
106529        "produces": [
106530          "application/json",
106531          "application/yaml",
106532          "application/vnd.kubernetes.protobuf",
106533          "application/json;stream=watch",
106534          "application/vnd.kubernetes.protobuf;stream=watch"
106535        ],
106536        "responses": {
106537          "200": {
106538            "description": "OK",
106539            "schema": {
106540              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachmentList"
106541            }
106542          },
106543          "401": {
106544            "description": "Unauthorized"
106545          }
106546        },
106547        "schemes": [
106548          "https"
106549        ],
106550        "tags": [
106551          "storage_v1alpha1"
106552        ],
106553        "x-kubernetes-action": "list",
106554        "x-kubernetes-group-version-kind": {
106555          "group": "storage.k8s.io",
106556          "kind": "VolumeAttachment",
106557          "version": "v1alpha1"
106558        }
106559      },
106560      "parameters": [
106561        {
106562          "description": "If 'true', then the output is pretty printed.",
106563          "in": "query",
106564          "name": "pretty",
106565          "type": "string",
106566          "uniqueItems": true
106567        }
106568      ],
106569      "post": {
106570        "consumes": [
106571          "*/*"
106572        ],
106573        "description": "create a VolumeAttachment",
106574        "operationId": "createStorageV1alpha1VolumeAttachment",
106575        "parameters": [
106576          {
106577            "in": "body",
106578            "name": "body",
106579            "required": true,
106580            "schema": {
106581              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106582            }
106583          },
106584          {
106585            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106586            "in": "query",
106587            "name": "dryRun",
106588            "type": "string",
106589            "uniqueItems": true
106590          },
106591          {
106592            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106593            "in": "query",
106594            "name": "fieldManager",
106595            "type": "string",
106596            "uniqueItems": true
106597          }
106598        ],
106599        "produces": [
106600          "application/json",
106601          "application/yaml",
106602          "application/vnd.kubernetes.protobuf"
106603        ],
106604        "responses": {
106605          "200": {
106606            "description": "OK",
106607            "schema": {
106608              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106609            }
106610          },
106611          "201": {
106612            "description": "Created",
106613            "schema": {
106614              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106615            }
106616          },
106617          "202": {
106618            "description": "Accepted",
106619            "schema": {
106620              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106621            }
106622          },
106623          "401": {
106624            "description": "Unauthorized"
106625          }
106626        },
106627        "schemes": [
106628          "https"
106629        ],
106630        "tags": [
106631          "storage_v1alpha1"
106632        ],
106633        "x-kubernetes-action": "post",
106634        "x-kubernetes-group-version-kind": {
106635          "group": "storage.k8s.io",
106636          "kind": "VolumeAttachment",
106637          "version": "v1alpha1"
106638        }
106639      }
106640    },
106641    "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}": {
106642      "delete": {
106643        "consumes": [
106644          "*/*"
106645        ],
106646        "description": "delete a VolumeAttachment",
106647        "operationId": "deleteStorageV1alpha1VolumeAttachment",
106648        "parameters": [
106649          {
106650            "in": "body",
106651            "name": "body",
106652            "schema": {
106653              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
106654            }
106655          },
106656          {
106657            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106658            "in": "query",
106659            "name": "dryRun",
106660            "type": "string",
106661            "uniqueItems": true
106662          },
106663          {
106664            "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.",
106665            "in": "query",
106666            "name": "gracePeriodSeconds",
106667            "type": "integer",
106668            "uniqueItems": true
106669          },
106670          {
106671            "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.",
106672            "in": "query",
106673            "name": "orphanDependents",
106674            "type": "boolean",
106675            "uniqueItems": true
106676          },
106677          {
106678            "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.",
106679            "in": "query",
106680            "name": "propagationPolicy",
106681            "type": "string",
106682            "uniqueItems": true
106683          }
106684        ],
106685        "produces": [
106686          "application/json",
106687          "application/yaml",
106688          "application/vnd.kubernetes.protobuf"
106689        ],
106690        "responses": {
106691          "200": {
106692            "description": "OK",
106693            "schema": {
106694              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
106695            }
106696          },
106697          "202": {
106698            "description": "Accepted",
106699            "schema": {
106700              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
106701            }
106702          },
106703          "401": {
106704            "description": "Unauthorized"
106705          }
106706        },
106707        "schemes": [
106708          "https"
106709        ],
106710        "tags": [
106711          "storage_v1alpha1"
106712        ],
106713        "x-kubernetes-action": "delete",
106714        "x-kubernetes-group-version-kind": {
106715          "group": "storage.k8s.io",
106716          "kind": "VolumeAttachment",
106717          "version": "v1alpha1"
106718        }
106719      },
106720      "get": {
106721        "consumes": [
106722          "*/*"
106723        ],
106724        "description": "read the specified VolumeAttachment",
106725        "operationId": "readStorageV1alpha1VolumeAttachment",
106726        "parameters": [
106727          {
106728            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
106729            "in": "query",
106730            "name": "exact",
106731            "type": "boolean",
106732            "uniqueItems": true
106733          },
106734          {
106735            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
106736            "in": "query",
106737            "name": "export",
106738            "type": "boolean",
106739            "uniqueItems": true
106740          }
106741        ],
106742        "produces": [
106743          "application/json",
106744          "application/yaml",
106745          "application/vnd.kubernetes.protobuf"
106746        ],
106747        "responses": {
106748          "200": {
106749            "description": "OK",
106750            "schema": {
106751              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106752            }
106753          },
106754          "401": {
106755            "description": "Unauthorized"
106756          }
106757        },
106758        "schemes": [
106759          "https"
106760        ],
106761        "tags": [
106762          "storage_v1alpha1"
106763        ],
106764        "x-kubernetes-action": "get",
106765        "x-kubernetes-group-version-kind": {
106766          "group": "storage.k8s.io",
106767          "kind": "VolumeAttachment",
106768          "version": "v1alpha1"
106769        }
106770      },
106771      "parameters": [
106772        {
106773          "description": "name of the VolumeAttachment",
106774          "in": "path",
106775          "name": "name",
106776          "required": true,
106777          "type": "string",
106778          "uniqueItems": true
106779        },
106780        {
106781          "description": "If 'true', then the output is pretty printed.",
106782          "in": "query",
106783          "name": "pretty",
106784          "type": "string",
106785          "uniqueItems": true
106786        }
106787      ],
106788      "patch": {
106789        "consumes": [
106790          "application/json-patch+json",
106791          "application/merge-patch+json",
106792          "application/strategic-merge-patch+json"
106793        ],
106794        "description": "partially update the specified VolumeAttachment",
106795        "operationId": "patchStorageV1alpha1VolumeAttachment",
106796        "parameters": [
106797          {
106798            "in": "body",
106799            "name": "body",
106800            "required": true,
106801            "schema": {
106802              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
106803            }
106804          },
106805          {
106806            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106807            "in": "query",
106808            "name": "dryRun",
106809            "type": "string",
106810            "uniqueItems": true
106811          },
106812          {
106813            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
106814            "in": "query",
106815            "name": "fieldManager",
106816            "type": "string",
106817            "uniqueItems": true
106818          },
106819          {
106820            "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.",
106821            "in": "query",
106822            "name": "force",
106823            "type": "boolean",
106824            "uniqueItems": true
106825          }
106826        ],
106827        "produces": [
106828          "application/json",
106829          "application/yaml",
106830          "application/vnd.kubernetes.protobuf"
106831        ],
106832        "responses": {
106833          "200": {
106834            "description": "OK",
106835            "schema": {
106836              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106837            }
106838          },
106839          "401": {
106840            "description": "Unauthorized"
106841          }
106842        },
106843        "schemes": [
106844          "https"
106845        ],
106846        "tags": [
106847          "storage_v1alpha1"
106848        ],
106849        "x-kubernetes-action": "patch",
106850        "x-kubernetes-group-version-kind": {
106851          "group": "storage.k8s.io",
106852          "kind": "VolumeAttachment",
106853          "version": "v1alpha1"
106854        }
106855      },
106856      "put": {
106857        "consumes": [
106858          "*/*"
106859        ],
106860        "description": "replace the specified VolumeAttachment",
106861        "operationId": "replaceStorageV1alpha1VolumeAttachment",
106862        "parameters": [
106863          {
106864            "in": "body",
106865            "name": "body",
106866            "required": true,
106867            "schema": {
106868              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106869            }
106870          },
106871          {
106872            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
106873            "in": "query",
106874            "name": "dryRun",
106875            "type": "string",
106876            "uniqueItems": true
106877          },
106878          {
106879            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
106880            "in": "query",
106881            "name": "fieldManager",
106882            "type": "string",
106883            "uniqueItems": true
106884          }
106885        ],
106886        "produces": [
106887          "application/json",
106888          "application/yaml",
106889          "application/vnd.kubernetes.protobuf"
106890        ],
106891        "responses": {
106892          "200": {
106893            "description": "OK",
106894            "schema": {
106895              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106896            }
106897          },
106898          "201": {
106899            "description": "Created",
106900            "schema": {
106901              "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment"
106902            }
106903          },
106904          "401": {
106905            "description": "Unauthorized"
106906          }
106907        },
106908        "schemes": [
106909          "https"
106910        ],
106911        "tags": [
106912          "storage_v1alpha1"
106913        ],
106914        "x-kubernetes-action": "put",
106915        "x-kubernetes-group-version-kind": {
106916          "group": "storage.k8s.io",
106917          "kind": "VolumeAttachment",
106918          "version": "v1alpha1"
106919        }
106920      }
106921    },
106922    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments": {
106923      "get": {
106924        "consumes": [
106925          "*/*"
106926        ],
106927        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
106928        "operationId": "watchStorageV1alpha1VolumeAttachmentList",
106929        "produces": [
106930          "application/json",
106931          "application/yaml",
106932          "application/vnd.kubernetes.protobuf",
106933          "application/json;stream=watch",
106934          "application/vnd.kubernetes.protobuf;stream=watch"
106935        ],
106936        "responses": {
106937          "200": {
106938            "description": "OK",
106939            "schema": {
106940              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
106941            }
106942          },
106943          "401": {
106944            "description": "Unauthorized"
106945          }
106946        },
106947        "schemes": [
106948          "https"
106949        ],
106950        "tags": [
106951          "storage_v1alpha1"
106952        ],
106953        "x-kubernetes-action": "watchlist",
106954        "x-kubernetes-group-version-kind": {
106955          "group": "storage.k8s.io",
106956          "kind": "VolumeAttachment",
106957          "version": "v1alpha1"
106958        }
106959      },
106960      "parameters": [
106961        {
106962          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
106963          "in": "query",
106964          "name": "allowWatchBookmarks",
106965          "type": "boolean",
106966          "uniqueItems": true
106967        },
106968        {
106969          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
106970          "in": "query",
106971          "name": "continue",
106972          "type": "string",
106973          "uniqueItems": true
106974        },
106975        {
106976          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
106977          "in": "query",
106978          "name": "fieldSelector",
106979          "type": "string",
106980          "uniqueItems": true
106981        },
106982        {
106983          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
106984          "in": "query",
106985          "name": "labelSelector",
106986          "type": "string",
106987          "uniqueItems": true
106988        },
106989        {
106990          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
106991          "in": "query",
106992          "name": "limit",
106993          "type": "integer",
106994          "uniqueItems": true
106995        },
106996        {
106997          "description": "If 'true', then the output is pretty printed.",
106998          "in": "query",
106999          "name": "pretty",
107000          "type": "string",
107001          "uniqueItems": true
107002        },
107003        {
107004          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
107005          "in": "query",
107006          "name": "resourceVersion",
107007          "type": "string",
107008          "uniqueItems": true
107009        },
107010        {
107011          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107012          "in": "query",
107013          "name": "timeoutSeconds",
107014          "type": "integer",
107015          "uniqueItems": true
107016        },
107017        {
107018          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107019          "in": "query",
107020          "name": "watch",
107021          "type": "boolean",
107022          "uniqueItems": true
107023        }
107024      ]
107025    },
107026    "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{name}": {
107027      "get": {
107028        "consumes": [
107029          "*/*"
107030        ],
107031        "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.",
107032        "operationId": "watchStorageV1alpha1VolumeAttachment",
107033        "produces": [
107034          "application/json",
107035          "application/yaml",
107036          "application/vnd.kubernetes.protobuf",
107037          "application/json;stream=watch",
107038          "application/vnd.kubernetes.protobuf;stream=watch"
107039        ],
107040        "responses": {
107041          "200": {
107042            "description": "OK",
107043            "schema": {
107044              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
107045            }
107046          },
107047          "401": {
107048            "description": "Unauthorized"
107049          }
107050        },
107051        "schemes": [
107052          "https"
107053        ],
107054        "tags": [
107055          "storage_v1alpha1"
107056        ],
107057        "x-kubernetes-action": "watch",
107058        "x-kubernetes-group-version-kind": {
107059          "group": "storage.k8s.io",
107060          "kind": "VolumeAttachment",
107061          "version": "v1alpha1"
107062        }
107063      },
107064      "parameters": [
107065        {
107066          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
107067          "in": "query",
107068          "name": "allowWatchBookmarks",
107069          "type": "boolean",
107070          "uniqueItems": true
107071        },
107072        {
107073          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107074          "in": "query",
107075          "name": "continue",
107076          "type": "string",
107077          "uniqueItems": true
107078        },
107079        {
107080          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107081          "in": "query",
107082          "name": "fieldSelector",
107083          "type": "string",
107084          "uniqueItems": true
107085        },
107086        {
107087          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107088          "in": "query",
107089          "name": "labelSelector",
107090          "type": "string",
107091          "uniqueItems": true
107092        },
107093        {
107094          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107095          "in": "query",
107096          "name": "limit",
107097          "type": "integer",
107098          "uniqueItems": true
107099        },
107100        {
107101          "description": "name of the VolumeAttachment",
107102          "in": "path",
107103          "name": "name",
107104          "required": true,
107105          "type": "string",
107106          "uniqueItems": true
107107        },
107108        {
107109          "description": "If 'true', then the output is pretty printed.",
107110          "in": "query",
107111          "name": "pretty",
107112          "type": "string",
107113          "uniqueItems": true
107114        },
107115        {
107116          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
107117          "in": "query",
107118          "name": "resourceVersion",
107119          "type": "string",
107120          "uniqueItems": true
107121        },
107122        {
107123          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107124          "in": "query",
107125          "name": "timeoutSeconds",
107126          "type": "integer",
107127          "uniqueItems": true
107128        },
107129        {
107130          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107131          "in": "query",
107132          "name": "watch",
107133          "type": "boolean",
107134          "uniqueItems": true
107135        }
107136      ]
107137    },
107138    "/apis/storage.k8s.io/v1beta1/": {
107139      "get": {
107140        "consumes": [
107141          "application/json",
107142          "application/yaml",
107143          "application/vnd.kubernetes.protobuf"
107144        ],
107145        "description": "get available resources",
107146        "operationId": "getStorageV1beta1APIResources",
107147        "produces": [
107148          "application/json",
107149          "application/yaml",
107150          "application/vnd.kubernetes.protobuf"
107151        ],
107152        "responses": {
107153          "200": {
107154            "description": "OK",
107155            "schema": {
107156              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
107157            }
107158          },
107159          "401": {
107160            "description": "Unauthorized"
107161          }
107162        },
107163        "schemes": [
107164          "https"
107165        ],
107166        "tags": [
107167          "storage_v1beta1"
107168        ]
107169      }
107170    },
107171    "/apis/storage.k8s.io/v1beta1/csidrivers": {
107172      "delete": {
107173        "consumes": [
107174          "*/*"
107175        ],
107176        "description": "delete collection of CSIDriver",
107177        "operationId": "deleteStorageV1beta1CollectionCSIDriver",
107178        "parameters": [
107179          {
107180            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
107181            "in": "query",
107182            "name": "allowWatchBookmarks",
107183            "type": "boolean",
107184            "uniqueItems": true
107185          },
107186          {
107187            "in": "body",
107188            "name": "body",
107189            "schema": {
107190              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107191            }
107192          },
107193          {
107194            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107195            "in": "query",
107196            "name": "continue",
107197            "type": "string",
107198            "uniqueItems": true
107199          },
107200          {
107201            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107202            "in": "query",
107203            "name": "dryRun",
107204            "type": "string",
107205            "uniqueItems": true
107206          },
107207          {
107208            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107209            "in": "query",
107210            "name": "fieldSelector",
107211            "type": "string",
107212            "uniqueItems": true
107213          },
107214          {
107215            "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.",
107216            "in": "query",
107217            "name": "gracePeriodSeconds",
107218            "type": "integer",
107219            "uniqueItems": true
107220          },
107221          {
107222            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107223            "in": "query",
107224            "name": "labelSelector",
107225            "type": "string",
107226            "uniqueItems": true
107227          },
107228          {
107229            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107230            "in": "query",
107231            "name": "limit",
107232            "type": "integer",
107233            "uniqueItems": true
107234          },
107235          {
107236            "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.",
107237            "in": "query",
107238            "name": "orphanDependents",
107239            "type": "boolean",
107240            "uniqueItems": true
107241          },
107242          {
107243            "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.",
107244            "in": "query",
107245            "name": "propagationPolicy",
107246            "type": "string",
107247            "uniqueItems": true
107248          },
107249          {
107250            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
107251            "in": "query",
107252            "name": "resourceVersion",
107253            "type": "string",
107254            "uniqueItems": true
107255          },
107256          {
107257            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107258            "in": "query",
107259            "name": "timeoutSeconds",
107260            "type": "integer",
107261            "uniqueItems": true
107262          },
107263          {
107264            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107265            "in": "query",
107266            "name": "watch",
107267            "type": "boolean",
107268            "uniqueItems": true
107269          }
107270        ],
107271        "produces": [
107272          "application/json",
107273          "application/yaml",
107274          "application/vnd.kubernetes.protobuf"
107275        ],
107276        "responses": {
107277          "200": {
107278            "description": "OK",
107279            "schema": {
107280              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107281            }
107282          },
107283          "401": {
107284            "description": "Unauthorized"
107285          }
107286        },
107287        "schemes": [
107288          "https"
107289        ],
107290        "tags": [
107291          "storage_v1beta1"
107292        ],
107293        "x-kubernetes-action": "deletecollection",
107294        "x-kubernetes-group-version-kind": {
107295          "group": "storage.k8s.io",
107296          "kind": "CSIDriver",
107297          "version": "v1beta1"
107298        }
107299      },
107300      "get": {
107301        "consumes": [
107302          "*/*"
107303        ],
107304        "description": "list or watch objects of kind CSIDriver",
107305        "operationId": "listStorageV1beta1CSIDriver",
107306        "parameters": [
107307          {
107308            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
107309            "in": "query",
107310            "name": "allowWatchBookmarks",
107311            "type": "boolean",
107312            "uniqueItems": true
107313          },
107314          {
107315            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107316            "in": "query",
107317            "name": "continue",
107318            "type": "string",
107319            "uniqueItems": true
107320          },
107321          {
107322            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107323            "in": "query",
107324            "name": "fieldSelector",
107325            "type": "string",
107326            "uniqueItems": true
107327          },
107328          {
107329            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107330            "in": "query",
107331            "name": "labelSelector",
107332            "type": "string",
107333            "uniqueItems": true
107334          },
107335          {
107336            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107337            "in": "query",
107338            "name": "limit",
107339            "type": "integer",
107340            "uniqueItems": true
107341          },
107342          {
107343            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
107344            "in": "query",
107345            "name": "resourceVersion",
107346            "type": "string",
107347            "uniqueItems": true
107348          },
107349          {
107350            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107351            "in": "query",
107352            "name": "timeoutSeconds",
107353            "type": "integer",
107354            "uniqueItems": true
107355          },
107356          {
107357            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107358            "in": "query",
107359            "name": "watch",
107360            "type": "boolean",
107361            "uniqueItems": true
107362          }
107363        ],
107364        "produces": [
107365          "application/json",
107366          "application/yaml",
107367          "application/vnd.kubernetes.protobuf",
107368          "application/json;stream=watch",
107369          "application/vnd.kubernetes.protobuf;stream=watch"
107370        ],
107371        "responses": {
107372          "200": {
107373            "description": "OK",
107374            "schema": {
107375              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriverList"
107376            }
107377          },
107378          "401": {
107379            "description": "Unauthorized"
107380          }
107381        },
107382        "schemes": [
107383          "https"
107384        ],
107385        "tags": [
107386          "storage_v1beta1"
107387        ],
107388        "x-kubernetes-action": "list",
107389        "x-kubernetes-group-version-kind": {
107390          "group": "storage.k8s.io",
107391          "kind": "CSIDriver",
107392          "version": "v1beta1"
107393        }
107394      },
107395      "parameters": [
107396        {
107397          "description": "If 'true', then the output is pretty printed.",
107398          "in": "query",
107399          "name": "pretty",
107400          "type": "string",
107401          "uniqueItems": true
107402        }
107403      ],
107404      "post": {
107405        "consumes": [
107406          "*/*"
107407        ],
107408        "description": "create a CSIDriver",
107409        "operationId": "createStorageV1beta1CSIDriver",
107410        "parameters": [
107411          {
107412            "in": "body",
107413            "name": "body",
107414            "required": true,
107415            "schema": {
107416              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107417            }
107418          },
107419          {
107420            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107421            "in": "query",
107422            "name": "dryRun",
107423            "type": "string",
107424            "uniqueItems": true
107425          },
107426          {
107427            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107428            "in": "query",
107429            "name": "fieldManager",
107430            "type": "string",
107431            "uniqueItems": true
107432          }
107433        ],
107434        "produces": [
107435          "application/json",
107436          "application/yaml",
107437          "application/vnd.kubernetes.protobuf"
107438        ],
107439        "responses": {
107440          "200": {
107441            "description": "OK",
107442            "schema": {
107443              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107444            }
107445          },
107446          "201": {
107447            "description": "Created",
107448            "schema": {
107449              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107450            }
107451          },
107452          "202": {
107453            "description": "Accepted",
107454            "schema": {
107455              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107456            }
107457          },
107458          "401": {
107459            "description": "Unauthorized"
107460          }
107461        },
107462        "schemes": [
107463          "https"
107464        ],
107465        "tags": [
107466          "storage_v1beta1"
107467        ],
107468        "x-kubernetes-action": "post",
107469        "x-kubernetes-group-version-kind": {
107470          "group": "storage.k8s.io",
107471          "kind": "CSIDriver",
107472          "version": "v1beta1"
107473        }
107474      }
107475    },
107476    "/apis/storage.k8s.io/v1beta1/csidrivers/{name}": {
107477      "delete": {
107478        "consumes": [
107479          "*/*"
107480        ],
107481        "description": "delete a CSIDriver",
107482        "operationId": "deleteStorageV1beta1CSIDriver",
107483        "parameters": [
107484          {
107485            "in": "body",
107486            "name": "body",
107487            "schema": {
107488              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107489            }
107490          },
107491          {
107492            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107493            "in": "query",
107494            "name": "dryRun",
107495            "type": "string",
107496            "uniqueItems": true
107497          },
107498          {
107499            "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.",
107500            "in": "query",
107501            "name": "gracePeriodSeconds",
107502            "type": "integer",
107503            "uniqueItems": true
107504          },
107505          {
107506            "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.",
107507            "in": "query",
107508            "name": "orphanDependents",
107509            "type": "boolean",
107510            "uniqueItems": true
107511          },
107512          {
107513            "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.",
107514            "in": "query",
107515            "name": "propagationPolicy",
107516            "type": "string",
107517            "uniqueItems": true
107518          }
107519        ],
107520        "produces": [
107521          "application/json",
107522          "application/yaml",
107523          "application/vnd.kubernetes.protobuf"
107524        ],
107525        "responses": {
107526          "200": {
107527            "description": "OK",
107528            "schema": {
107529              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107530            }
107531          },
107532          "202": {
107533            "description": "Accepted",
107534            "schema": {
107535              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107536            }
107537          },
107538          "401": {
107539            "description": "Unauthorized"
107540          }
107541        },
107542        "schemes": [
107543          "https"
107544        ],
107545        "tags": [
107546          "storage_v1beta1"
107547        ],
107548        "x-kubernetes-action": "delete",
107549        "x-kubernetes-group-version-kind": {
107550          "group": "storage.k8s.io",
107551          "kind": "CSIDriver",
107552          "version": "v1beta1"
107553        }
107554      },
107555      "get": {
107556        "consumes": [
107557          "*/*"
107558        ],
107559        "description": "read the specified CSIDriver",
107560        "operationId": "readStorageV1beta1CSIDriver",
107561        "parameters": [
107562          {
107563            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
107564            "in": "query",
107565            "name": "exact",
107566            "type": "boolean",
107567            "uniqueItems": true
107568          },
107569          {
107570            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
107571            "in": "query",
107572            "name": "export",
107573            "type": "boolean",
107574            "uniqueItems": true
107575          }
107576        ],
107577        "produces": [
107578          "application/json",
107579          "application/yaml",
107580          "application/vnd.kubernetes.protobuf"
107581        ],
107582        "responses": {
107583          "200": {
107584            "description": "OK",
107585            "schema": {
107586              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107587            }
107588          },
107589          "401": {
107590            "description": "Unauthorized"
107591          }
107592        },
107593        "schemes": [
107594          "https"
107595        ],
107596        "tags": [
107597          "storage_v1beta1"
107598        ],
107599        "x-kubernetes-action": "get",
107600        "x-kubernetes-group-version-kind": {
107601          "group": "storage.k8s.io",
107602          "kind": "CSIDriver",
107603          "version": "v1beta1"
107604        }
107605      },
107606      "parameters": [
107607        {
107608          "description": "name of the CSIDriver",
107609          "in": "path",
107610          "name": "name",
107611          "required": true,
107612          "type": "string",
107613          "uniqueItems": true
107614        },
107615        {
107616          "description": "If 'true', then the output is pretty printed.",
107617          "in": "query",
107618          "name": "pretty",
107619          "type": "string",
107620          "uniqueItems": true
107621        }
107622      ],
107623      "patch": {
107624        "consumes": [
107625          "application/json-patch+json",
107626          "application/merge-patch+json",
107627          "application/strategic-merge-patch+json"
107628        ],
107629        "description": "partially update the specified CSIDriver",
107630        "operationId": "patchStorageV1beta1CSIDriver",
107631        "parameters": [
107632          {
107633            "in": "body",
107634            "name": "body",
107635            "required": true,
107636            "schema": {
107637              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
107638            }
107639          },
107640          {
107641            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107642            "in": "query",
107643            "name": "dryRun",
107644            "type": "string",
107645            "uniqueItems": true
107646          },
107647          {
107648            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
107649            "in": "query",
107650            "name": "fieldManager",
107651            "type": "string",
107652            "uniqueItems": true
107653          },
107654          {
107655            "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.",
107656            "in": "query",
107657            "name": "force",
107658            "type": "boolean",
107659            "uniqueItems": true
107660          }
107661        ],
107662        "produces": [
107663          "application/json",
107664          "application/yaml",
107665          "application/vnd.kubernetes.protobuf"
107666        ],
107667        "responses": {
107668          "200": {
107669            "description": "OK",
107670            "schema": {
107671              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107672            }
107673          },
107674          "401": {
107675            "description": "Unauthorized"
107676          }
107677        },
107678        "schemes": [
107679          "https"
107680        ],
107681        "tags": [
107682          "storage_v1beta1"
107683        ],
107684        "x-kubernetes-action": "patch",
107685        "x-kubernetes-group-version-kind": {
107686          "group": "storage.k8s.io",
107687          "kind": "CSIDriver",
107688          "version": "v1beta1"
107689        }
107690      },
107691      "put": {
107692        "consumes": [
107693          "*/*"
107694        ],
107695        "description": "replace the specified CSIDriver",
107696        "operationId": "replaceStorageV1beta1CSIDriver",
107697        "parameters": [
107698          {
107699            "in": "body",
107700            "name": "body",
107701            "required": true,
107702            "schema": {
107703              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107704            }
107705          },
107706          {
107707            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107708            "in": "query",
107709            "name": "dryRun",
107710            "type": "string",
107711            "uniqueItems": true
107712          },
107713          {
107714            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
107715            "in": "query",
107716            "name": "fieldManager",
107717            "type": "string",
107718            "uniqueItems": true
107719          }
107720        ],
107721        "produces": [
107722          "application/json",
107723          "application/yaml",
107724          "application/vnd.kubernetes.protobuf"
107725        ],
107726        "responses": {
107727          "200": {
107728            "description": "OK",
107729            "schema": {
107730              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107731            }
107732          },
107733          "201": {
107734            "description": "Created",
107735            "schema": {
107736              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSIDriver"
107737            }
107738          },
107739          "401": {
107740            "description": "Unauthorized"
107741          }
107742        },
107743        "schemes": [
107744          "https"
107745        ],
107746        "tags": [
107747          "storage_v1beta1"
107748        ],
107749        "x-kubernetes-action": "put",
107750        "x-kubernetes-group-version-kind": {
107751          "group": "storage.k8s.io",
107752          "kind": "CSIDriver",
107753          "version": "v1beta1"
107754        }
107755      }
107756    },
107757    "/apis/storage.k8s.io/v1beta1/csinodes": {
107758      "delete": {
107759        "consumes": [
107760          "*/*"
107761        ],
107762        "description": "delete collection of CSINode",
107763        "operationId": "deleteStorageV1beta1CollectionCSINode",
107764        "parameters": [
107765          {
107766            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
107767            "in": "query",
107768            "name": "allowWatchBookmarks",
107769            "type": "boolean",
107770            "uniqueItems": true
107771          },
107772          {
107773            "in": "body",
107774            "name": "body",
107775            "schema": {
107776              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
107777            }
107778          },
107779          {
107780            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107781            "in": "query",
107782            "name": "continue",
107783            "type": "string",
107784            "uniqueItems": true
107785          },
107786          {
107787            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
107788            "in": "query",
107789            "name": "dryRun",
107790            "type": "string",
107791            "uniqueItems": true
107792          },
107793          {
107794            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107795            "in": "query",
107796            "name": "fieldSelector",
107797            "type": "string",
107798            "uniqueItems": true
107799          },
107800          {
107801            "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.",
107802            "in": "query",
107803            "name": "gracePeriodSeconds",
107804            "type": "integer",
107805            "uniqueItems": true
107806          },
107807          {
107808            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107809            "in": "query",
107810            "name": "labelSelector",
107811            "type": "string",
107812            "uniqueItems": true
107813          },
107814          {
107815            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107816            "in": "query",
107817            "name": "limit",
107818            "type": "integer",
107819            "uniqueItems": true
107820          },
107821          {
107822            "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.",
107823            "in": "query",
107824            "name": "orphanDependents",
107825            "type": "boolean",
107826            "uniqueItems": true
107827          },
107828          {
107829            "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.",
107830            "in": "query",
107831            "name": "propagationPolicy",
107832            "type": "string",
107833            "uniqueItems": true
107834          },
107835          {
107836            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
107837            "in": "query",
107838            "name": "resourceVersion",
107839            "type": "string",
107840            "uniqueItems": true
107841          },
107842          {
107843            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107844            "in": "query",
107845            "name": "timeoutSeconds",
107846            "type": "integer",
107847            "uniqueItems": true
107848          },
107849          {
107850            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107851            "in": "query",
107852            "name": "watch",
107853            "type": "boolean",
107854            "uniqueItems": true
107855          }
107856        ],
107857        "produces": [
107858          "application/json",
107859          "application/yaml",
107860          "application/vnd.kubernetes.protobuf"
107861        ],
107862        "responses": {
107863          "200": {
107864            "description": "OK",
107865            "schema": {
107866              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
107867            }
107868          },
107869          "401": {
107870            "description": "Unauthorized"
107871          }
107872        },
107873        "schemes": [
107874          "https"
107875        ],
107876        "tags": [
107877          "storage_v1beta1"
107878        ],
107879        "x-kubernetes-action": "deletecollection",
107880        "x-kubernetes-group-version-kind": {
107881          "group": "storage.k8s.io",
107882          "kind": "CSINode",
107883          "version": "v1beta1"
107884        }
107885      },
107886      "get": {
107887        "consumes": [
107888          "*/*"
107889        ],
107890        "description": "list or watch objects of kind CSINode",
107891        "operationId": "listStorageV1beta1CSINode",
107892        "parameters": [
107893          {
107894            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
107895            "in": "query",
107896            "name": "allowWatchBookmarks",
107897            "type": "boolean",
107898            "uniqueItems": true
107899          },
107900          {
107901            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
107902            "in": "query",
107903            "name": "continue",
107904            "type": "string",
107905            "uniqueItems": true
107906          },
107907          {
107908            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
107909            "in": "query",
107910            "name": "fieldSelector",
107911            "type": "string",
107912            "uniqueItems": true
107913          },
107914          {
107915            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
107916            "in": "query",
107917            "name": "labelSelector",
107918            "type": "string",
107919            "uniqueItems": true
107920          },
107921          {
107922            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
107923            "in": "query",
107924            "name": "limit",
107925            "type": "integer",
107926            "uniqueItems": true
107927          },
107928          {
107929            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
107930            "in": "query",
107931            "name": "resourceVersion",
107932            "type": "string",
107933            "uniqueItems": true
107934          },
107935          {
107936            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
107937            "in": "query",
107938            "name": "timeoutSeconds",
107939            "type": "integer",
107940            "uniqueItems": true
107941          },
107942          {
107943            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
107944            "in": "query",
107945            "name": "watch",
107946            "type": "boolean",
107947            "uniqueItems": true
107948          }
107949        ],
107950        "produces": [
107951          "application/json",
107952          "application/yaml",
107953          "application/vnd.kubernetes.protobuf",
107954          "application/json;stream=watch",
107955          "application/vnd.kubernetes.protobuf;stream=watch"
107956        ],
107957        "responses": {
107958          "200": {
107959            "description": "OK",
107960            "schema": {
107961              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINodeList"
107962            }
107963          },
107964          "401": {
107965            "description": "Unauthorized"
107966          }
107967        },
107968        "schemes": [
107969          "https"
107970        ],
107971        "tags": [
107972          "storage_v1beta1"
107973        ],
107974        "x-kubernetes-action": "list",
107975        "x-kubernetes-group-version-kind": {
107976          "group": "storage.k8s.io",
107977          "kind": "CSINode",
107978          "version": "v1beta1"
107979        }
107980      },
107981      "parameters": [
107982        {
107983          "description": "If 'true', then the output is pretty printed.",
107984          "in": "query",
107985          "name": "pretty",
107986          "type": "string",
107987          "uniqueItems": true
107988        }
107989      ],
107990      "post": {
107991        "consumes": [
107992          "*/*"
107993        ],
107994        "description": "create a CSINode",
107995        "operationId": "createStorageV1beta1CSINode",
107996        "parameters": [
107997          {
107998            "in": "body",
107999            "name": "body",
108000            "required": true,
108001            "schema": {
108002              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108003            }
108004          },
108005          {
108006            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108007            "in": "query",
108008            "name": "dryRun",
108009            "type": "string",
108010            "uniqueItems": true
108011          },
108012          {
108013            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
108014            "in": "query",
108015            "name": "fieldManager",
108016            "type": "string",
108017            "uniqueItems": true
108018          }
108019        ],
108020        "produces": [
108021          "application/json",
108022          "application/yaml",
108023          "application/vnd.kubernetes.protobuf"
108024        ],
108025        "responses": {
108026          "200": {
108027            "description": "OK",
108028            "schema": {
108029              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108030            }
108031          },
108032          "201": {
108033            "description": "Created",
108034            "schema": {
108035              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108036            }
108037          },
108038          "202": {
108039            "description": "Accepted",
108040            "schema": {
108041              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108042            }
108043          },
108044          "401": {
108045            "description": "Unauthorized"
108046          }
108047        },
108048        "schemes": [
108049          "https"
108050        ],
108051        "tags": [
108052          "storage_v1beta1"
108053        ],
108054        "x-kubernetes-action": "post",
108055        "x-kubernetes-group-version-kind": {
108056          "group": "storage.k8s.io",
108057          "kind": "CSINode",
108058          "version": "v1beta1"
108059        }
108060      }
108061    },
108062    "/apis/storage.k8s.io/v1beta1/csinodes/{name}": {
108063      "delete": {
108064        "consumes": [
108065          "*/*"
108066        ],
108067        "description": "delete a CSINode",
108068        "operationId": "deleteStorageV1beta1CSINode",
108069        "parameters": [
108070          {
108071            "in": "body",
108072            "name": "body",
108073            "schema": {
108074              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
108075            }
108076          },
108077          {
108078            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108079            "in": "query",
108080            "name": "dryRun",
108081            "type": "string",
108082            "uniqueItems": true
108083          },
108084          {
108085            "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.",
108086            "in": "query",
108087            "name": "gracePeriodSeconds",
108088            "type": "integer",
108089            "uniqueItems": true
108090          },
108091          {
108092            "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.",
108093            "in": "query",
108094            "name": "orphanDependents",
108095            "type": "boolean",
108096            "uniqueItems": true
108097          },
108098          {
108099            "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.",
108100            "in": "query",
108101            "name": "propagationPolicy",
108102            "type": "string",
108103            "uniqueItems": true
108104          }
108105        ],
108106        "produces": [
108107          "application/json",
108108          "application/yaml",
108109          "application/vnd.kubernetes.protobuf"
108110        ],
108111        "responses": {
108112          "200": {
108113            "description": "OK",
108114            "schema": {
108115              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
108116            }
108117          },
108118          "202": {
108119            "description": "Accepted",
108120            "schema": {
108121              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
108122            }
108123          },
108124          "401": {
108125            "description": "Unauthorized"
108126          }
108127        },
108128        "schemes": [
108129          "https"
108130        ],
108131        "tags": [
108132          "storage_v1beta1"
108133        ],
108134        "x-kubernetes-action": "delete",
108135        "x-kubernetes-group-version-kind": {
108136          "group": "storage.k8s.io",
108137          "kind": "CSINode",
108138          "version": "v1beta1"
108139        }
108140      },
108141      "get": {
108142        "consumes": [
108143          "*/*"
108144        ],
108145        "description": "read the specified CSINode",
108146        "operationId": "readStorageV1beta1CSINode",
108147        "parameters": [
108148          {
108149            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
108150            "in": "query",
108151            "name": "exact",
108152            "type": "boolean",
108153            "uniqueItems": true
108154          },
108155          {
108156            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
108157            "in": "query",
108158            "name": "export",
108159            "type": "boolean",
108160            "uniqueItems": true
108161          }
108162        ],
108163        "produces": [
108164          "application/json",
108165          "application/yaml",
108166          "application/vnd.kubernetes.protobuf"
108167        ],
108168        "responses": {
108169          "200": {
108170            "description": "OK",
108171            "schema": {
108172              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108173            }
108174          },
108175          "401": {
108176            "description": "Unauthorized"
108177          }
108178        },
108179        "schemes": [
108180          "https"
108181        ],
108182        "tags": [
108183          "storage_v1beta1"
108184        ],
108185        "x-kubernetes-action": "get",
108186        "x-kubernetes-group-version-kind": {
108187          "group": "storage.k8s.io",
108188          "kind": "CSINode",
108189          "version": "v1beta1"
108190        }
108191      },
108192      "parameters": [
108193        {
108194          "description": "name of the CSINode",
108195          "in": "path",
108196          "name": "name",
108197          "required": true,
108198          "type": "string",
108199          "uniqueItems": true
108200        },
108201        {
108202          "description": "If 'true', then the output is pretty printed.",
108203          "in": "query",
108204          "name": "pretty",
108205          "type": "string",
108206          "uniqueItems": true
108207        }
108208      ],
108209      "patch": {
108210        "consumes": [
108211          "application/json-patch+json",
108212          "application/merge-patch+json",
108213          "application/strategic-merge-patch+json"
108214        ],
108215        "description": "partially update the specified CSINode",
108216        "operationId": "patchStorageV1beta1CSINode",
108217        "parameters": [
108218          {
108219            "in": "body",
108220            "name": "body",
108221            "required": true,
108222            "schema": {
108223              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
108224            }
108225          },
108226          {
108227            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108228            "in": "query",
108229            "name": "dryRun",
108230            "type": "string",
108231            "uniqueItems": true
108232          },
108233          {
108234            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
108235            "in": "query",
108236            "name": "fieldManager",
108237            "type": "string",
108238            "uniqueItems": true
108239          },
108240          {
108241            "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.",
108242            "in": "query",
108243            "name": "force",
108244            "type": "boolean",
108245            "uniqueItems": true
108246          }
108247        ],
108248        "produces": [
108249          "application/json",
108250          "application/yaml",
108251          "application/vnd.kubernetes.protobuf"
108252        ],
108253        "responses": {
108254          "200": {
108255            "description": "OK",
108256            "schema": {
108257              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108258            }
108259          },
108260          "401": {
108261            "description": "Unauthorized"
108262          }
108263        },
108264        "schemes": [
108265          "https"
108266        ],
108267        "tags": [
108268          "storage_v1beta1"
108269        ],
108270        "x-kubernetes-action": "patch",
108271        "x-kubernetes-group-version-kind": {
108272          "group": "storage.k8s.io",
108273          "kind": "CSINode",
108274          "version": "v1beta1"
108275        }
108276      },
108277      "put": {
108278        "consumes": [
108279          "*/*"
108280        ],
108281        "description": "replace the specified CSINode",
108282        "operationId": "replaceStorageV1beta1CSINode",
108283        "parameters": [
108284          {
108285            "in": "body",
108286            "name": "body",
108287            "required": true,
108288            "schema": {
108289              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108290            }
108291          },
108292          {
108293            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108294            "in": "query",
108295            "name": "dryRun",
108296            "type": "string",
108297            "uniqueItems": true
108298          },
108299          {
108300            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
108301            "in": "query",
108302            "name": "fieldManager",
108303            "type": "string",
108304            "uniqueItems": true
108305          }
108306        ],
108307        "produces": [
108308          "application/json",
108309          "application/yaml",
108310          "application/vnd.kubernetes.protobuf"
108311        ],
108312        "responses": {
108313          "200": {
108314            "description": "OK",
108315            "schema": {
108316              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108317            }
108318          },
108319          "201": {
108320            "description": "Created",
108321            "schema": {
108322              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.CSINode"
108323            }
108324          },
108325          "401": {
108326            "description": "Unauthorized"
108327          }
108328        },
108329        "schemes": [
108330          "https"
108331        ],
108332        "tags": [
108333          "storage_v1beta1"
108334        ],
108335        "x-kubernetes-action": "put",
108336        "x-kubernetes-group-version-kind": {
108337          "group": "storage.k8s.io",
108338          "kind": "CSINode",
108339          "version": "v1beta1"
108340        }
108341      }
108342    },
108343    "/apis/storage.k8s.io/v1beta1/storageclasses": {
108344      "delete": {
108345        "consumes": [
108346          "*/*"
108347        ],
108348        "description": "delete collection of StorageClass",
108349        "operationId": "deleteStorageV1beta1CollectionStorageClass",
108350        "parameters": [
108351          {
108352            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
108353            "in": "query",
108354            "name": "allowWatchBookmarks",
108355            "type": "boolean",
108356            "uniqueItems": true
108357          },
108358          {
108359            "in": "body",
108360            "name": "body",
108361            "schema": {
108362              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
108363            }
108364          },
108365          {
108366            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108367            "in": "query",
108368            "name": "continue",
108369            "type": "string",
108370            "uniqueItems": true
108371          },
108372          {
108373            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108374            "in": "query",
108375            "name": "dryRun",
108376            "type": "string",
108377            "uniqueItems": true
108378          },
108379          {
108380            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108381            "in": "query",
108382            "name": "fieldSelector",
108383            "type": "string",
108384            "uniqueItems": true
108385          },
108386          {
108387            "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.",
108388            "in": "query",
108389            "name": "gracePeriodSeconds",
108390            "type": "integer",
108391            "uniqueItems": true
108392          },
108393          {
108394            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108395            "in": "query",
108396            "name": "labelSelector",
108397            "type": "string",
108398            "uniqueItems": true
108399          },
108400          {
108401            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108402            "in": "query",
108403            "name": "limit",
108404            "type": "integer",
108405            "uniqueItems": true
108406          },
108407          {
108408            "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.",
108409            "in": "query",
108410            "name": "orphanDependents",
108411            "type": "boolean",
108412            "uniqueItems": true
108413          },
108414          {
108415            "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.",
108416            "in": "query",
108417            "name": "propagationPolicy",
108418            "type": "string",
108419            "uniqueItems": true
108420          },
108421          {
108422            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
108423            "in": "query",
108424            "name": "resourceVersion",
108425            "type": "string",
108426            "uniqueItems": true
108427          },
108428          {
108429            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108430            "in": "query",
108431            "name": "timeoutSeconds",
108432            "type": "integer",
108433            "uniqueItems": true
108434          },
108435          {
108436            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108437            "in": "query",
108438            "name": "watch",
108439            "type": "boolean",
108440            "uniqueItems": true
108441          }
108442        ],
108443        "produces": [
108444          "application/json",
108445          "application/yaml",
108446          "application/vnd.kubernetes.protobuf"
108447        ],
108448        "responses": {
108449          "200": {
108450            "description": "OK",
108451            "schema": {
108452              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
108453            }
108454          },
108455          "401": {
108456            "description": "Unauthorized"
108457          }
108458        },
108459        "schemes": [
108460          "https"
108461        ],
108462        "tags": [
108463          "storage_v1beta1"
108464        ],
108465        "x-kubernetes-action": "deletecollection",
108466        "x-kubernetes-group-version-kind": {
108467          "group": "storage.k8s.io",
108468          "kind": "StorageClass",
108469          "version": "v1beta1"
108470        }
108471      },
108472      "get": {
108473        "consumes": [
108474          "*/*"
108475        ],
108476        "description": "list or watch objects of kind StorageClass",
108477        "operationId": "listStorageV1beta1StorageClass",
108478        "parameters": [
108479          {
108480            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
108481            "in": "query",
108482            "name": "allowWatchBookmarks",
108483            "type": "boolean",
108484            "uniqueItems": true
108485          },
108486          {
108487            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108488            "in": "query",
108489            "name": "continue",
108490            "type": "string",
108491            "uniqueItems": true
108492          },
108493          {
108494            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108495            "in": "query",
108496            "name": "fieldSelector",
108497            "type": "string",
108498            "uniqueItems": true
108499          },
108500          {
108501            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108502            "in": "query",
108503            "name": "labelSelector",
108504            "type": "string",
108505            "uniqueItems": true
108506          },
108507          {
108508            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108509            "in": "query",
108510            "name": "limit",
108511            "type": "integer",
108512            "uniqueItems": true
108513          },
108514          {
108515            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
108516            "in": "query",
108517            "name": "resourceVersion",
108518            "type": "string",
108519            "uniqueItems": true
108520          },
108521          {
108522            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
108523            "in": "query",
108524            "name": "timeoutSeconds",
108525            "type": "integer",
108526            "uniqueItems": true
108527          },
108528          {
108529            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
108530            "in": "query",
108531            "name": "watch",
108532            "type": "boolean",
108533            "uniqueItems": true
108534          }
108535        ],
108536        "produces": [
108537          "application/json",
108538          "application/yaml",
108539          "application/vnd.kubernetes.protobuf",
108540          "application/json;stream=watch",
108541          "application/vnd.kubernetes.protobuf;stream=watch"
108542        ],
108543        "responses": {
108544          "200": {
108545            "description": "OK",
108546            "schema": {
108547              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClassList"
108548            }
108549          },
108550          "401": {
108551            "description": "Unauthorized"
108552          }
108553        },
108554        "schemes": [
108555          "https"
108556        ],
108557        "tags": [
108558          "storage_v1beta1"
108559        ],
108560        "x-kubernetes-action": "list",
108561        "x-kubernetes-group-version-kind": {
108562          "group": "storage.k8s.io",
108563          "kind": "StorageClass",
108564          "version": "v1beta1"
108565        }
108566      },
108567      "parameters": [
108568        {
108569          "description": "If 'true', then the output is pretty printed.",
108570          "in": "query",
108571          "name": "pretty",
108572          "type": "string",
108573          "uniqueItems": true
108574        }
108575      ],
108576      "post": {
108577        "consumes": [
108578          "*/*"
108579        ],
108580        "description": "create a StorageClass",
108581        "operationId": "createStorageV1beta1StorageClass",
108582        "parameters": [
108583          {
108584            "in": "body",
108585            "name": "body",
108586            "required": true,
108587            "schema": {
108588              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108589            }
108590          },
108591          {
108592            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108593            "in": "query",
108594            "name": "dryRun",
108595            "type": "string",
108596            "uniqueItems": true
108597          },
108598          {
108599            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
108600            "in": "query",
108601            "name": "fieldManager",
108602            "type": "string",
108603            "uniqueItems": true
108604          }
108605        ],
108606        "produces": [
108607          "application/json",
108608          "application/yaml",
108609          "application/vnd.kubernetes.protobuf"
108610        ],
108611        "responses": {
108612          "200": {
108613            "description": "OK",
108614            "schema": {
108615              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108616            }
108617          },
108618          "201": {
108619            "description": "Created",
108620            "schema": {
108621              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108622            }
108623          },
108624          "202": {
108625            "description": "Accepted",
108626            "schema": {
108627              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108628            }
108629          },
108630          "401": {
108631            "description": "Unauthorized"
108632          }
108633        },
108634        "schemes": [
108635          "https"
108636        ],
108637        "tags": [
108638          "storage_v1beta1"
108639        ],
108640        "x-kubernetes-action": "post",
108641        "x-kubernetes-group-version-kind": {
108642          "group": "storage.k8s.io",
108643          "kind": "StorageClass",
108644          "version": "v1beta1"
108645        }
108646      }
108647    },
108648    "/apis/storage.k8s.io/v1beta1/storageclasses/{name}": {
108649      "delete": {
108650        "consumes": [
108651          "*/*"
108652        ],
108653        "description": "delete a StorageClass",
108654        "operationId": "deleteStorageV1beta1StorageClass",
108655        "parameters": [
108656          {
108657            "in": "body",
108658            "name": "body",
108659            "schema": {
108660              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
108661            }
108662          },
108663          {
108664            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108665            "in": "query",
108666            "name": "dryRun",
108667            "type": "string",
108668            "uniqueItems": true
108669          },
108670          {
108671            "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.",
108672            "in": "query",
108673            "name": "gracePeriodSeconds",
108674            "type": "integer",
108675            "uniqueItems": true
108676          },
108677          {
108678            "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.",
108679            "in": "query",
108680            "name": "orphanDependents",
108681            "type": "boolean",
108682            "uniqueItems": true
108683          },
108684          {
108685            "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.",
108686            "in": "query",
108687            "name": "propagationPolicy",
108688            "type": "string",
108689            "uniqueItems": true
108690          }
108691        ],
108692        "produces": [
108693          "application/json",
108694          "application/yaml",
108695          "application/vnd.kubernetes.protobuf"
108696        ],
108697        "responses": {
108698          "200": {
108699            "description": "OK",
108700            "schema": {
108701              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
108702            }
108703          },
108704          "202": {
108705            "description": "Accepted",
108706            "schema": {
108707              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
108708            }
108709          },
108710          "401": {
108711            "description": "Unauthorized"
108712          }
108713        },
108714        "schemes": [
108715          "https"
108716        ],
108717        "tags": [
108718          "storage_v1beta1"
108719        ],
108720        "x-kubernetes-action": "delete",
108721        "x-kubernetes-group-version-kind": {
108722          "group": "storage.k8s.io",
108723          "kind": "StorageClass",
108724          "version": "v1beta1"
108725        }
108726      },
108727      "get": {
108728        "consumes": [
108729          "*/*"
108730        ],
108731        "description": "read the specified StorageClass",
108732        "operationId": "readStorageV1beta1StorageClass",
108733        "parameters": [
108734          {
108735            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
108736            "in": "query",
108737            "name": "exact",
108738            "type": "boolean",
108739            "uniqueItems": true
108740          },
108741          {
108742            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
108743            "in": "query",
108744            "name": "export",
108745            "type": "boolean",
108746            "uniqueItems": true
108747          }
108748        ],
108749        "produces": [
108750          "application/json",
108751          "application/yaml",
108752          "application/vnd.kubernetes.protobuf"
108753        ],
108754        "responses": {
108755          "200": {
108756            "description": "OK",
108757            "schema": {
108758              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108759            }
108760          },
108761          "401": {
108762            "description": "Unauthorized"
108763          }
108764        },
108765        "schemes": [
108766          "https"
108767        ],
108768        "tags": [
108769          "storage_v1beta1"
108770        ],
108771        "x-kubernetes-action": "get",
108772        "x-kubernetes-group-version-kind": {
108773          "group": "storage.k8s.io",
108774          "kind": "StorageClass",
108775          "version": "v1beta1"
108776        }
108777      },
108778      "parameters": [
108779        {
108780          "description": "name of the StorageClass",
108781          "in": "path",
108782          "name": "name",
108783          "required": true,
108784          "type": "string",
108785          "uniqueItems": true
108786        },
108787        {
108788          "description": "If 'true', then the output is pretty printed.",
108789          "in": "query",
108790          "name": "pretty",
108791          "type": "string",
108792          "uniqueItems": true
108793        }
108794      ],
108795      "patch": {
108796        "consumes": [
108797          "application/json-patch+json",
108798          "application/merge-patch+json",
108799          "application/strategic-merge-patch+json"
108800        ],
108801        "description": "partially update the specified StorageClass",
108802        "operationId": "patchStorageV1beta1StorageClass",
108803        "parameters": [
108804          {
108805            "in": "body",
108806            "name": "body",
108807            "required": true,
108808            "schema": {
108809              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
108810            }
108811          },
108812          {
108813            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108814            "in": "query",
108815            "name": "dryRun",
108816            "type": "string",
108817            "uniqueItems": true
108818          },
108819          {
108820            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
108821            "in": "query",
108822            "name": "fieldManager",
108823            "type": "string",
108824            "uniqueItems": true
108825          },
108826          {
108827            "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.",
108828            "in": "query",
108829            "name": "force",
108830            "type": "boolean",
108831            "uniqueItems": true
108832          }
108833        ],
108834        "produces": [
108835          "application/json",
108836          "application/yaml",
108837          "application/vnd.kubernetes.protobuf"
108838        ],
108839        "responses": {
108840          "200": {
108841            "description": "OK",
108842            "schema": {
108843              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108844            }
108845          },
108846          "401": {
108847            "description": "Unauthorized"
108848          }
108849        },
108850        "schemes": [
108851          "https"
108852        ],
108853        "tags": [
108854          "storage_v1beta1"
108855        ],
108856        "x-kubernetes-action": "patch",
108857        "x-kubernetes-group-version-kind": {
108858          "group": "storage.k8s.io",
108859          "kind": "StorageClass",
108860          "version": "v1beta1"
108861        }
108862      },
108863      "put": {
108864        "consumes": [
108865          "*/*"
108866        ],
108867        "description": "replace the specified StorageClass",
108868        "operationId": "replaceStorageV1beta1StorageClass",
108869        "parameters": [
108870          {
108871            "in": "body",
108872            "name": "body",
108873            "required": true,
108874            "schema": {
108875              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108876            }
108877          },
108878          {
108879            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108880            "in": "query",
108881            "name": "dryRun",
108882            "type": "string",
108883            "uniqueItems": true
108884          },
108885          {
108886            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
108887            "in": "query",
108888            "name": "fieldManager",
108889            "type": "string",
108890            "uniqueItems": true
108891          }
108892        ],
108893        "produces": [
108894          "application/json",
108895          "application/yaml",
108896          "application/vnd.kubernetes.protobuf"
108897        ],
108898        "responses": {
108899          "200": {
108900            "description": "OK",
108901            "schema": {
108902              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108903            }
108904          },
108905          "201": {
108906            "description": "Created",
108907            "schema": {
108908              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass"
108909            }
108910          },
108911          "401": {
108912            "description": "Unauthorized"
108913          }
108914        },
108915        "schemes": [
108916          "https"
108917        ],
108918        "tags": [
108919          "storage_v1beta1"
108920        ],
108921        "x-kubernetes-action": "put",
108922        "x-kubernetes-group-version-kind": {
108923          "group": "storage.k8s.io",
108924          "kind": "StorageClass",
108925          "version": "v1beta1"
108926        }
108927      }
108928    },
108929    "/apis/storage.k8s.io/v1beta1/volumeattachments": {
108930      "delete": {
108931        "consumes": [
108932          "*/*"
108933        ],
108934        "description": "delete collection of VolumeAttachment",
108935        "operationId": "deleteStorageV1beta1CollectionVolumeAttachment",
108936        "parameters": [
108937          {
108938            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
108939            "in": "query",
108940            "name": "allowWatchBookmarks",
108941            "type": "boolean",
108942            "uniqueItems": true
108943          },
108944          {
108945            "in": "body",
108946            "name": "body",
108947            "schema": {
108948              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
108949            }
108950          },
108951          {
108952            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
108953            "in": "query",
108954            "name": "continue",
108955            "type": "string",
108956            "uniqueItems": true
108957          },
108958          {
108959            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
108960            "in": "query",
108961            "name": "dryRun",
108962            "type": "string",
108963            "uniqueItems": true
108964          },
108965          {
108966            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
108967            "in": "query",
108968            "name": "fieldSelector",
108969            "type": "string",
108970            "uniqueItems": true
108971          },
108972          {
108973            "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.",
108974            "in": "query",
108975            "name": "gracePeriodSeconds",
108976            "type": "integer",
108977            "uniqueItems": true
108978          },
108979          {
108980            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
108981            "in": "query",
108982            "name": "labelSelector",
108983            "type": "string",
108984            "uniqueItems": true
108985          },
108986          {
108987            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
108988            "in": "query",
108989            "name": "limit",
108990            "type": "integer",
108991            "uniqueItems": true
108992          },
108993          {
108994            "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.",
108995            "in": "query",
108996            "name": "orphanDependents",
108997            "type": "boolean",
108998            "uniqueItems": true
108999          },
109000          {
109001            "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.",
109002            "in": "query",
109003            "name": "propagationPolicy",
109004            "type": "string",
109005            "uniqueItems": true
109006          },
109007          {
109008            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
109009            "in": "query",
109010            "name": "resourceVersion",
109011            "type": "string",
109012            "uniqueItems": true
109013          },
109014          {
109015            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109016            "in": "query",
109017            "name": "timeoutSeconds",
109018            "type": "integer",
109019            "uniqueItems": true
109020          },
109021          {
109022            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109023            "in": "query",
109024            "name": "watch",
109025            "type": "boolean",
109026            "uniqueItems": true
109027          }
109028        ],
109029        "produces": [
109030          "application/json",
109031          "application/yaml",
109032          "application/vnd.kubernetes.protobuf"
109033        ],
109034        "responses": {
109035          "200": {
109036            "description": "OK",
109037            "schema": {
109038              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
109039            }
109040          },
109041          "401": {
109042            "description": "Unauthorized"
109043          }
109044        },
109045        "schemes": [
109046          "https"
109047        ],
109048        "tags": [
109049          "storage_v1beta1"
109050        ],
109051        "x-kubernetes-action": "deletecollection",
109052        "x-kubernetes-group-version-kind": {
109053          "group": "storage.k8s.io",
109054          "kind": "VolumeAttachment",
109055          "version": "v1beta1"
109056        }
109057      },
109058      "get": {
109059        "consumes": [
109060          "*/*"
109061        ],
109062        "description": "list or watch objects of kind VolumeAttachment",
109063        "operationId": "listStorageV1beta1VolumeAttachment",
109064        "parameters": [
109065          {
109066            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
109067            "in": "query",
109068            "name": "allowWatchBookmarks",
109069            "type": "boolean",
109070            "uniqueItems": true
109071          },
109072          {
109073            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109074            "in": "query",
109075            "name": "continue",
109076            "type": "string",
109077            "uniqueItems": true
109078          },
109079          {
109080            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
109081            "in": "query",
109082            "name": "fieldSelector",
109083            "type": "string",
109084            "uniqueItems": true
109085          },
109086          {
109087            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
109088            "in": "query",
109089            "name": "labelSelector",
109090            "type": "string",
109091            "uniqueItems": true
109092          },
109093          {
109094            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109095            "in": "query",
109096            "name": "limit",
109097            "type": "integer",
109098            "uniqueItems": true
109099          },
109100          {
109101            "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
109102            "in": "query",
109103            "name": "resourceVersion",
109104            "type": "string",
109105            "uniqueItems": true
109106          },
109107          {
109108            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109109            "in": "query",
109110            "name": "timeoutSeconds",
109111            "type": "integer",
109112            "uniqueItems": true
109113          },
109114          {
109115            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109116            "in": "query",
109117            "name": "watch",
109118            "type": "boolean",
109119            "uniqueItems": true
109120          }
109121        ],
109122        "produces": [
109123          "application/json",
109124          "application/yaml",
109125          "application/vnd.kubernetes.protobuf",
109126          "application/json;stream=watch",
109127          "application/vnd.kubernetes.protobuf;stream=watch"
109128        ],
109129        "responses": {
109130          "200": {
109131            "description": "OK",
109132            "schema": {
109133              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachmentList"
109134            }
109135          },
109136          "401": {
109137            "description": "Unauthorized"
109138          }
109139        },
109140        "schemes": [
109141          "https"
109142        ],
109143        "tags": [
109144          "storage_v1beta1"
109145        ],
109146        "x-kubernetes-action": "list",
109147        "x-kubernetes-group-version-kind": {
109148          "group": "storage.k8s.io",
109149          "kind": "VolumeAttachment",
109150          "version": "v1beta1"
109151        }
109152      },
109153      "parameters": [
109154        {
109155          "description": "If 'true', then the output is pretty printed.",
109156          "in": "query",
109157          "name": "pretty",
109158          "type": "string",
109159          "uniqueItems": true
109160        }
109161      ],
109162      "post": {
109163        "consumes": [
109164          "*/*"
109165        ],
109166        "description": "create a VolumeAttachment",
109167        "operationId": "createStorageV1beta1VolumeAttachment",
109168        "parameters": [
109169          {
109170            "in": "body",
109171            "name": "body",
109172            "required": true,
109173            "schema": {
109174              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109175            }
109176          },
109177          {
109178            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
109179            "in": "query",
109180            "name": "dryRun",
109181            "type": "string",
109182            "uniqueItems": true
109183          },
109184          {
109185            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
109186            "in": "query",
109187            "name": "fieldManager",
109188            "type": "string",
109189            "uniqueItems": true
109190          }
109191        ],
109192        "produces": [
109193          "application/json",
109194          "application/yaml",
109195          "application/vnd.kubernetes.protobuf"
109196        ],
109197        "responses": {
109198          "200": {
109199            "description": "OK",
109200            "schema": {
109201              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109202            }
109203          },
109204          "201": {
109205            "description": "Created",
109206            "schema": {
109207              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109208            }
109209          },
109210          "202": {
109211            "description": "Accepted",
109212            "schema": {
109213              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109214            }
109215          },
109216          "401": {
109217            "description": "Unauthorized"
109218          }
109219        },
109220        "schemes": [
109221          "https"
109222        ],
109223        "tags": [
109224          "storage_v1beta1"
109225        ],
109226        "x-kubernetes-action": "post",
109227        "x-kubernetes-group-version-kind": {
109228          "group": "storage.k8s.io",
109229          "kind": "VolumeAttachment",
109230          "version": "v1beta1"
109231        }
109232      }
109233    },
109234    "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}": {
109235      "delete": {
109236        "consumes": [
109237          "*/*"
109238        ],
109239        "description": "delete a VolumeAttachment",
109240        "operationId": "deleteStorageV1beta1VolumeAttachment",
109241        "parameters": [
109242          {
109243            "in": "body",
109244            "name": "body",
109245            "schema": {
109246              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
109247            }
109248          },
109249          {
109250            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
109251            "in": "query",
109252            "name": "dryRun",
109253            "type": "string",
109254            "uniqueItems": true
109255          },
109256          {
109257            "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.",
109258            "in": "query",
109259            "name": "gracePeriodSeconds",
109260            "type": "integer",
109261            "uniqueItems": true
109262          },
109263          {
109264            "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.",
109265            "in": "query",
109266            "name": "orphanDependents",
109267            "type": "boolean",
109268            "uniqueItems": true
109269          },
109270          {
109271            "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.",
109272            "in": "query",
109273            "name": "propagationPolicy",
109274            "type": "string",
109275            "uniqueItems": true
109276          }
109277        ],
109278        "produces": [
109279          "application/json",
109280          "application/yaml",
109281          "application/vnd.kubernetes.protobuf"
109282        ],
109283        "responses": {
109284          "200": {
109285            "description": "OK",
109286            "schema": {
109287              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
109288            }
109289          },
109290          "202": {
109291            "description": "Accepted",
109292            "schema": {
109293              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
109294            }
109295          },
109296          "401": {
109297            "description": "Unauthorized"
109298          }
109299        },
109300        "schemes": [
109301          "https"
109302        ],
109303        "tags": [
109304          "storage_v1beta1"
109305        ],
109306        "x-kubernetes-action": "delete",
109307        "x-kubernetes-group-version-kind": {
109308          "group": "storage.k8s.io",
109309          "kind": "VolumeAttachment",
109310          "version": "v1beta1"
109311        }
109312      },
109313      "get": {
109314        "consumes": [
109315          "*/*"
109316        ],
109317        "description": "read the specified VolumeAttachment",
109318        "operationId": "readStorageV1beta1VolumeAttachment",
109319        "parameters": [
109320          {
109321            "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.",
109322            "in": "query",
109323            "name": "exact",
109324            "type": "boolean",
109325            "uniqueItems": true
109326          },
109327          {
109328            "description": "Should this value be exported.  Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.",
109329            "in": "query",
109330            "name": "export",
109331            "type": "boolean",
109332            "uniqueItems": true
109333          }
109334        ],
109335        "produces": [
109336          "application/json",
109337          "application/yaml",
109338          "application/vnd.kubernetes.protobuf"
109339        ],
109340        "responses": {
109341          "200": {
109342            "description": "OK",
109343            "schema": {
109344              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109345            }
109346          },
109347          "401": {
109348            "description": "Unauthorized"
109349          }
109350        },
109351        "schemes": [
109352          "https"
109353        ],
109354        "tags": [
109355          "storage_v1beta1"
109356        ],
109357        "x-kubernetes-action": "get",
109358        "x-kubernetes-group-version-kind": {
109359          "group": "storage.k8s.io",
109360          "kind": "VolumeAttachment",
109361          "version": "v1beta1"
109362        }
109363      },
109364      "parameters": [
109365        {
109366          "description": "name of the VolumeAttachment",
109367          "in": "path",
109368          "name": "name",
109369          "required": true,
109370          "type": "string",
109371          "uniqueItems": true
109372        },
109373        {
109374          "description": "If 'true', then the output is pretty printed.",
109375          "in": "query",
109376          "name": "pretty",
109377          "type": "string",
109378          "uniqueItems": true
109379        }
109380      ],
109381      "patch": {
109382        "consumes": [
109383          "application/json-patch+json",
109384          "application/merge-patch+json",
109385          "application/strategic-merge-patch+json"
109386        ],
109387        "description": "partially update the specified VolumeAttachment",
109388        "operationId": "patchStorageV1beta1VolumeAttachment",
109389        "parameters": [
109390          {
109391            "in": "body",
109392            "name": "body",
109393            "required": true,
109394            "schema": {
109395              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
109396            }
109397          },
109398          {
109399            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
109400            "in": "query",
109401            "name": "dryRun",
109402            "type": "string",
109403            "uniqueItems": true
109404          },
109405          {
109406            "description": "fieldManager is a name associated with the actor or entity that is making these changes. 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).",
109407            "in": "query",
109408            "name": "fieldManager",
109409            "type": "string",
109410            "uniqueItems": true
109411          },
109412          {
109413            "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.",
109414            "in": "query",
109415            "name": "force",
109416            "type": "boolean",
109417            "uniqueItems": true
109418          }
109419        ],
109420        "produces": [
109421          "application/json",
109422          "application/yaml",
109423          "application/vnd.kubernetes.protobuf"
109424        ],
109425        "responses": {
109426          "200": {
109427            "description": "OK",
109428            "schema": {
109429              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109430            }
109431          },
109432          "401": {
109433            "description": "Unauthorized"
109434          }
109435        },
109436        "schemes": [
109437          "https"
109438        ],
109439        "tags": [
109440          "storage_v1beta1"
109441        ],
109442        "x-kubernetes-action": "patch",
109443        "x-kubernetes-group-version-kind": {
109444          "group": "storage.k8s.io",
109445          "kind": "VolumeAttachment",
109446          "version": "v1beta1"
109447        }
109448      },
109449      "put": {
109450        "consumes": [
109451          "*/*"
109452        ],
109453        "description": "replace the specified VolumeAttachment",
109454        "operationId": "replaceStorageV1beta1VolumeAttachment",
109455        "parameters": [
109456          {
109457            "in": "body",
109458            "name": "body",
109459            "required": true,
109460            "schema": {
109461              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109462            }
109463          },
109464          {
109465            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
109466            "in": "query",
109467            "name": "dryRun",
109468            "type": "string",
109469            "uniqueItems": true
109470          },
109471          {
109472            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
109473            "in": "query",
109474            "name": "fieldManager",
109475            "type": "string",
109476            "uniqueItems": true
109477          }
109478        ],
109479        "produces": [
109480          "application/json",
109481          "application/yaml",
109482          "application/vnd.kubernetes.protobuf"
109483        ],
109484        "responses": {
109485          "200": {
109486            "description": "OK",
109487            "schema": {
109488              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109489            }
109490          },
109491          "201": {
109492            "description": "Created",
109493            "schema": {
109494              "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment"
109495            }
109496          },
109497          "401": {
109498            "description": "Unauthorized"
109499          }
109500        },
109501        "schemes": [
109502          "https"
109503        ],
109504        "tags": [
109505          "storage_v1beta1"
109506        ],
109507        "x-kubernetes-action": "put",
109508        "x-kubernetes-group-version-kind": {
109509          "group": "storage.k8s.io",
109510          "kind": "VolumeAttachment",
109511          "version": "v1beta1"
109512        }
109513      }
109514    },
109515    "/apis/storage.k8s.io/v1beta1/watch/csidrivers": {
109516      "get": {
109517        "consumes": [
109518          "*/*"
109519        ],
109520        "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.",
109521        "operationId": "watchStorageV1beta1CSIDriverList",
109522        "produces": [
109523          "application/json",
109524          "application/yaml",
109525          "application/vnd.kubernetes.protobuf",
109526          "application/json;stream=watch",
109527          "application/vnd.kubernetes.protobuf;stream=watch"
109528        ],
109529        "responses": {
109530          "200": {
109531            "description": "OK",
109532            "schema": {
109533              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
109534            }
109535          },
109536          "401": {
109537            "description": "Unauthorized"
109538          }
109539        },
109540        "schemes": [
109541          "https"
109542        ],
109543        "tags": [
109544          "storage_v1beta1"
109545        ],
109546        "x-kubernetes-action": "watchlist",
109547        "x-kubernetes-group-version-kind": {
109548          "group": "storage.k8s.io",
109549          "kind": "CSIDriver",
109550          "version": "v1beta1"
109551        }
109552      },
109553      "parameters": [
109554        {
109555          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
109556          "in": "query",
109557          "name": "allowWatchBookmarks",
109558          "type": "boolean",
109559          "uniqueItems": true
109560        },
109561        {
109562          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109563          "in": "query",
109564          "name": "continue",
109565          "type": "string",
109566          "uniqueItems": true
109567        },
109568        {
109569          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
109570          "in": "query",
109571          "name": "fieldSelector",
109572          "type": "string",
109573          "uniqueItems": true
109574        },
109575        {
109576          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
109577          "in": "query",
109578          "name": "labelSelector",
109579          "type": "string",
109580          "uniqueItems": true
109581        },
109582        {
109583          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109584          "in": "query",
109585          "name": "limit",
109586          "type": "integer",
109587          "uniqueItems": true
109588        },
109589        {
109590          "description": "If 'true', then the output is pretty printed.",
109591          "in": "query",
109592          "name": "pretty",
109593          "type": "string",
109594          "uniqueItems": true
109595        },
109596        {
109597          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
109598          "in": "query",
109599          "name": "resourceVersion",
109600          "type": "string",
109601          "uniqueItems": true
109602        },
109603        {
109604          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109605          "in": "query",
109606          "name": "timeoutSeconds",
109607          "type": "integer",
109608          "uniqueItems": true
109609        },
109610        {
109611          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109612          "in": "query",
109613          "name": "watch",
109614          "type": "boolean",
109615          "uniqueItems": true
109616        }
109617      ]
109618    },
109619    "/apis/storage.k8s.io/v1beta1/watch/csidrivers/{name}": {
109620      "get": {
109621        "consumes": [
109622          "*/*"
109623        ],
109624        "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.",
109625        "operationId": "watchStorageV1beta1CSIDriver",
109626        "produces": [
109627          "application/json",
109628          "application/yaml",
109629          "application/vnd.kubernetes.protobuf",
109630          "application/json;stream=watch",
109631          "application/vnd.kubernetes.protobuf;stream=watch"
109632        ],
109633        "responses": {
109634          "200": {
109635            "description": "OK",
109636            "schema": {
109637              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
109638            }
109639          },
109640          "401": {
109641            "description": "Unauthorized"
109642          }
109643        },
109644        "schemes": [
109645          "https"
109646        ],
109647        "tags": [
109648          "storage_v1beta1"
109649        ],
109650        "x-kubernetes-action": "watch",
109651        "x-kubernetes-group-version-kind": {
109652          "group": "storage.k8s.io",
109653          "kind": "CSIDriver",
109654          "version": "v1beta1"
109655        }
109656      },
109657      "parameters": [
109658        {
109659          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
109660          "in": "query",
109661          "name": "allowWatchBookmarks",
109662          "type": "boolean",
109663          "uniqueItems": true
109664        },
109665        {
109666          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109667          "in": "query",
109668          "name": "continue",
109669          "type": "string",
109670          "uniqueItems": true
109671        },
109672        {
109673          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
109674          "in": "query",
109675          "name": "fieldSelector",
109676          "type": "string",
109677          "uniqueItems": true
109678        },
109679        {
109680          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
109681          "in": "query",
109682          "name": "labelSelector",
109683          "type": "string",
109684          "uniqueItems": true
109685        },
109686        {
109687          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109688          "in": "query",
109689          "name": "limit",
109690          "type": "integer",
109691          "uniqueItems": true
109692        },
109693        {
109694          "description": "name of the CSIDriver",
109695          "in": "path",
109696          "name": "name",
109697          "required": true,
109698          "type": "string",
109699          "uniqueItems": true
109700        },
109701        {
109702          "description": "If 'true', then the output is pretty printed.",
109703          "in": "query",
109704          "name": "pretty",
109705          "type": "string",
109706          "uniqueItems": true
109707        },
109708        {
109709          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
109710          "in": "query",
109711          "name": "resourceVersion",
109712          "type": "string",
109713          "uniqueItems": true
109714        },
109715        {
109716          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109717          "in": "query",
109718          "name": "timeoutSeconds",
109719          "type": "integer",
109720          "uniqueItems": true
109721        },
109722        {
109723          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109724          "in": "query",
109725          "name": "watch",
109726          "type": "boolean",
109727          "uniqueItems": true
109728        }
109729      ]
109730    },
109731    "/apis/storage.k8s.io/v1beta1/watch/csinodes": {
109732      "get": {
109733        "consumes": [
109734          "*/*"
109735        ],
109736        "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.",
109737        "operationId": "watchStorageV1beta1CSINodeList",
109738        "produces": [
109739          "application/json",
109740          "application/yaml",
109741          "application/vnd.kubernetes.protobuf",
109742          "application/json;stream=watch",
109743          "application/vnd.kubernetes.protobuf;stream=watch"
109744        ],
109745        "responses": {
109746          "200": {
109747            "description": "OK",
109748            "schema": {
109749              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
109750            }
109751          },
109752          "401": {
109753            "description": "Unauthorized"
109754          }
109755        },
109756        "schemes": [
109757          "https"
109758        ],
109759        "tags": [
109760          "storage_v1beta1"
109761        ],
109762        "x-kubernetes-action": "watchlist",
109763        "x-kubernetes-group-version-kind": {
109764          "group": "storage.k8s.io",
109765          "kind": "CSINode",
109766          "version": "v1beta1"
109767        }
109768      },
109769      "parameters": [
109770        {
109771          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
109772          "in": "query",
109773          "name": "allowWatchBookmarks",
109774          "type": "boolean",
109775          "uniqueItems": true
109776        },
109777        {
109778          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109779          "in": "query",
109780          "name": "continue",
109781          "type": "string",
109782          "uniqueItems": true
109783        },
109784        {
109785          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
109786          "in": "query",
109787          "name": "fieldSelector",
109788          "type": "string",
109789          "uniqueItems": true
109790        },
109791        {
109792          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
109793          "in": "query",
109794          "name": "labelSelector",
109795          "type": "string",
109796          "uniqueItems": true
109797        },
109798        {
109799          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109800          "in": "query",
109801          "name": "limit",
109802          "type": "integer",
109803          "uniqueItems": true
109804        },
109805        {
109806          "description": "If 'true', then the output is pretty printed.",
109807          "in": "query",
109808          "name": "pretty",
109809          "type": "string",
109810          "uniqueItems": true
109811        },
109812        {
109813          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
109814          "in": "query",
109815          "name": "resourceVersion",
109816          "type": "string",
109817          "uniqueItems": true
109818        },
109819        {
109820          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109821          "in": "query",
109822          "name": "timeoutSeconds",
109823          "type": "integer",
109824          "uniqueItems": true
109825        },
109826        {
109827          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109828          "in": "query",
109829          "name": "watch",
109830          "type": "boolean",
109831          "uniqueItems": true
109832        }
109833      ]
109834    },
109835    "/apis/storage.k8s.io/v1beta1/watch/csinodes/{name}": {
109836      "get": {
109837        "consumes": [
109838          "*/*"
109839        ],
109840        "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.",
109841        "operationId": "watchStorageV1beta1CSINode",
109842        "produces": [
109843          "application/json",
109844          "application/yaml",
109845          "application/vnd.kubernetes.protobuf",
109846          "application/json;stream=watch",
109847          "application/vnd.kubernetes.protobuf;stream=watch"
109848        ],
109849        "responses": {
109850          "200": {
109851            "description": "OK",
109852            "schema": {
109853              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
109854            }
109855          },
109856          "401": {
109857            "description": "Unauthorized"
109858          }
109859        },
109860        "schemes": [
109861          "https"
109862        ],
109863        "tags": [
109864          "storage_v1beta1"
109865        ],
109866        "x-kubernetes-action": "watch",
109867        "x-kubernetes-group-version-kind": {
109868          "group": "storage.k8s.io",
109869          "kind": "CSINode",
109870          "version": "v1beta1"
109871        }
109872      },
109873      "parameters": [
109874        {
109875          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
109876          "in": "query",
109877          "name": "allowWatchBookmarks",
109878          "type": "boolean",
109879          "uniqueItems": true
109880        },
109881        {
109882          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109883          "in": "query",
109884          "name": "continue",
109885          "type": "string",
109886          "uniqueItems": true
109887        },
109888        {
109889          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
109890          "in": "query",
109891          "name": "fieldSelector",
109892          "type": "string",
109893          "uniqueItems": true
109894        },
109895        {
109896          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
109897          "in": "query",
109898          "name": "labelSelector",
109899          "type": "string",
109900          "uniqueItems": true
109901        },
109902        {
109903          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
109904          "in": "query",
109905          "name": "limit",
109906          "type": "integer",
109907          "uniqueItems": true
109908        },
109909        {
109910          "description": "name of the CSINode",
109911          "in": "path",
109912          "name": "name",
109913          "required": true,
109914          "type": "string",
109915          "uniqueItems": true
109916        },
109917        {
109918          "description": "If 'true', then the output is pretty printed.",
109919          "in": "query",
109920          "name": "pretty",
109921          "type": "string",
109922          "uniqueItems": true
109923        },
109924        {
109925          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
109926          "in": "query",
109927          "name": "resourceVersion",
109928          "type": "string",
109929          "uniqueItems": true
109930        },
109931        {
109932          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
109933          "in": "query",
109934          "name": "timeoutSeconds",
109935          "type": "integer",
109936          "uniqueItems": true
109937        },
109938        {
109939          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
109940          "in": "query",
109941          "name": "watch",
109942          "type": "boolean",
109943          "uniqueItems": true
109944        }
109945      ]
109946    },
109947    "/apis/storage.k8s.io/v1beta1/watch/storageclasses": {
109948      "get": {
109949        "consumes": [
109950          "*/*"
109951        ],
109952        "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.",
109953        "operationId": "watchStorageV1beta1StorageClassList",
109954        "produces": [
109955          "application/json",
109956          "application/yaml",
109957          "application/vnd.kubernetes.protobuf",
109958          "application/json;stream=watch",
109959          "application/vnd.kubernetes.protobuf;stream=watch"
109960        ],
109961        "responses": {
109962          "200": {
109963            "description": "OK",
109964            "schema": {
109965              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
109966            }
109967          },
109968          "401": {
109969            "description": "Unauthorized"
109970          }
109971        },
109972        "schemes": [
109973          "https"
109974        ],
109975        "tags": [
109976          "storage_v1beta1"
109977        ],
109978        "x-kubernetes-action": "watchlist",
109979        "x-kubernetes-group-version-kind": {
109980          "group": "storage.k8s.io",
109981          "kind": "StorageClass",
109982          "version": "v1beta1"
109983        }
109984      },
109985      "parameters": [
109986        {
109987          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
109988          "in": "query",
109989          "name": "allowWatchBookmarks",
109990          "type": "boolean",
109991          "uniqueItems": true
109992        },
109993        {
109994          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
109995          "in": "query",
109996          "name": "continue",
109997          "type": "string",
109998          "uniqueItems": true
109999        },
110000        {
110001          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
110002          "in": "query",
110003          "name": "fieldSelector",
110004          "type": "string",
110005          "uniqueItems": true
110006        },
110007        {
110008          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
110009          "in": "query",
110010          "name": "labelSelector",
110011          "type": "string",
110012          "uniqueItems": true
110013        },
110014        {
110015          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
110016          "in": "query",
110017          "name": "limit",
110018          "type": "integer",
110019          "uniqueItems": true
110020        },
110021        {
110022          "description": "If 'true', then the output is pretty printed.",
110023          "in": "query",
110024          "name": "pretty",
110025          "type": "string",
110026          "uniqueItems": true
110027        },
110028        {
110029          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
110030          "in": "query",
110031          "name": "resourceVersion",
110032          "type": "string",
110033          "uniqueItems": true
110034        },
110035        {
110036          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
110037          "in": "query",
110038          "name": "timeoutSeconds",
110039          "type": "integer",
110040          "uniqueItems": true
110041        },
110042        {
110043          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
110044          "in": "query",
110045          "name": "watch",
110046          "type": "boolean",
110047          "uniqueItems": true
110048        }
110049      ]
110050    },
110051    "/apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}": {
110052      "get": {
110053        "consumes": [
110054          "*/*"
110055        ],
110056        "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.",
110057        "operationId": "watchStorageV1beta1StorageClass",
110058        "produces": [
110059          "application/json",
110060          "application/yaml",
110061          "application/vnd.kubernetes.protobuf",
110062          "application/json;stream=watch",
110063          "application/vnd.kubernetes.protobuf;stream=watch"
110064        ],
110065        "responses": {
110066          "200": {
110067            "description": "OK",
110068            "schema": {
110069              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
110070            }
110071          },
110072          "401": {
110073            "description": "Unauthorized"
110074          }
110075        },
110076        "schemes": [
110077          "https"
110078        ],
110079        "tags": [
110080          "storage_v1beta1"
110081        ],
110082        "x-kubernetes-action": "watch",
110083        "x-kubernetes-group-version-kind": {
110084          "group": "storage.k8s.io",
110085          "kind": "StorageClass",
110086          "version": "v1beta1"
110087        }
110088      },
110089      "parameters": [
110090        {
110091          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
110092          "in": "query",
110093          "name": "allowWatchBookmarks",
110094          "type": "boolean",
110095          "uniqueItems": true
110096        },
110097        {
110098          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
110099          "in": "query",
110100          "name": "continue",
110101          "type": "string",
110102          "uniqueItems": true
110103        },
110104        {
110105          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
110106          "in": "query",
110107          "name": "fieldSelector",
110108          "type": "string",
110109          "uniqueItems": true
110110        },
110111        {
110112          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
110113          "in": "query",
110114          "name": "labelSelector",
110115          "type": "string",
110116          "uniqueItems": true
110117        },
110118        {
110119          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
110120          "in": "query",
110121          "name": "limit",
110122          "type": "integer",
110123          "uniqueItems": true
110124        },
110125        {
110126          "description": "name of the StorageClass",
110127          "in": "path",
110128          "name": "name",
110129          "required": true,
110130          "type": "string",
110131          "uniqueItems": true
110132        },
110133        {
110134          "description": "If 'true', then the output is pretty printed.",
110135          "in": "query",
110136          "name": "pretty",
110137          "type": "string",
110138          "uniqueItems": true
110139        },
110140        {
110141          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
110142          "in": "query",
110143          "name": "resourceVersion",
110144          "type": "string",
110145          "uniqueItems": true
110146        },
110147        {
110148          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
110149          "in": "query",
110150          "name": "timeoutSeconds",
110151          "type": "integer",
110152          "uniqueItems": true
110153        },
110154        {
110155          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
110156          "in": "query",
110157          "name": "watch",
110158          "type": "boolean",
110159          "uniqueItems": true
110160        }
110161      ]
110162    },
110163    "/apis/storage.k8s.io/v1beta1/watch/volumeattachments": {
110164      "get": {
110165        "consumes": [
110166          "*/*"
110167        ],
110168        "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.",
110169        "operationId": "watchStorageV1beta1VolumeAttachmentList",
110170        "produces": [
110171          "application/json",
110172          "application/yaml",
110173          "application/vnd.kubernetes.protobuf",
110174          "application/json;stream=watch",
110175          "application/vnd.kubernetes.protobuf;stream=watch"
110176        ],
110177        "responses": {
110178          "200": {
110179            "description": "OK",
110180            "schema": {
110181              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
110182            }
110183          },
110184          "401": {
110185            "description": "Unauthorized"
110186          }
110187        },
110188        "schemes": [
110189          "https"
110190        ],
110191        "tags": [
110192          "storage_v1beta1"
110193        ],
110194        "x-kubernetes-action": "watchlist",
110195        "x-kubernetes-group-version-kind": {
110196          "group": "storage.k8s.io",
110197          "kind": "VolumeAttachment",
110198          "version": "v1beta1"
110199        }
110200      },
110201      "parameters": [
110202        {
110203          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
110204          "in": "query",
110205          "name": "allowWatchBookmarks",
110206          "type": "boolean",
110207          "uniqueItems": true
110208        },
110209        {
110210          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
110211          "in": "query",
110212          "name": "continue",
110213          "type": "string",
110214          "uniqueItems": true
110215        },
110216        {
110217          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
110218          "in": "query",
110219          "name": "fieldSelector",
110220          "type": "string",
110221          "uniqueItems": true
110222        },
110223        {
110224          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
110225          "in": "query",
110226          "name": "labelSelector",
110227          "type": "string",
110228          "uniqueItems": true
110229        },
110230        {
110231          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
110232          "in": "query",
110233          "name": "limit",
110234          "type": "integer",
110235          "uniqueItems": true
110236        },
110237        {
110238          "description": "If 'true', then the output is pretty printed.",
110239          "in": "query",
110240          "name": "pretty",
110241          "type": "string",
110242          "uniqueItems": true
110243        },
110244        {
110245          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
110246          "in": "query",
110247          "name": "resourceVersion",
110248          "type": "string",
110249          "uniqueItems": true
110250        },
110251        {
110252          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
110253          "in": "query",
110254          "name": "timeoutSeconds",
110255          "type": "integer",
110256          "uniqueItems": true
110257        },
110258        {
110259          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
110260          "in": "query",
110261          "name": "watch",
110262          "type": "boolean",
110263          "uniqueItems": true
110264        }
110265      ]
110266    },
110267    "/apis/storage.k8s.io/v1beta1/watch/volumeattachments/{name}": {
110268      "get": {
110269        "consumes": [
110270          "*/*"
110271        ],
110272        "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.",
110273        "operationId": "watchStorageV1beta1VolumeAttachment",
110274        "produces": [
110275          "application/json",
110276          "application/yaml",
110277          "application/vnd.kubernetes.protobuf",
110278          "application/json;stream=watch",
110279          "application/vnd.kubernetes.protobuf;stream=watch"
110280        ],
110281        "responses": {
110282          "200": {
110283            "description": "OK",
110284            "schema": {
110285              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
110286            }
110287          },
110288          "401": {
110289            "description": "Unauthorized"
110290          }
110291        },
110292        "schemes": [
110293          "https"
110294        ],
110295        "tags": [
110296          "storage_v1beta1"
110297        ],
110298        "x-kubernetes-action": "watch",
110299        "x-kubernetes-group-version-kind": {
110300          "group": "storage.k8s.io",
110301          "kind": "VolumeAttachment",
110302          "version": "v1beta1"
110303        }
110304      },
110305      "parameters": [
110306        {
110307          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.\n\nThis field is beta.",
110308          "in": "query",
110309          "name": "allowWatchBookmarks",
110310          "type": "boolean",
110311          "uniqueItems": true
110312        },
110313        {
110314          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
110315          "in": "query",
110316          "name": "continue",
110317          "type": "string",
110318          "uniqueItems": true
110319        },
110320        {
110321          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
110322          "in": "query",
110323          "name": "fieldSelector",
110324          "type": "string",
110325          "uniqueItems": true
110326        },
110327        {
110328          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
110329          "in": "query",
110330          "name": "labelSelector",
110331          "type": "string",
110332          "uniqueItems": true
110333        },
110334        {
110335          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
110336          "in": "query",
110337          "name": "limit",
110338          "type": "integer",
110339          "uniqueItems": true
110340        },
110341        {
110342          "description": "name of the VolumeAttachment",
110343          "in": "path",
110344          "name": "name",
110345          "required": true,
110346          "type": "string",
110347          "uniqueItems": true
110348        },
110349        {
110350          "description": "If 'true', then the output is pretty printed.",
110351          "in": "query",
110352          "name": "pretty",
110353          "type": "string",
110354          "uniqueItems": true
110355        },
110356        {
110357          "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.",
110358          "in": "query",
110359          "name": "resourceVersion",
110360          "type": "string",
110361          "uniqueItems": true
110362        },
110363        {
110364          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
110365          "in": "query",
110366          "name": "timeoutSeconds",
110367          "type": "integer",
110368          "uniqueItems": true
110369        },
110370        {
110371          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
110372          "in": "query",
110373          "name": "watch",
110374          "type": "boolean",
110375          "uniqueItems": true
110376        }
110377      ]
110378    },
110379    "/logs/": {
110380      "get": {
110381        "operationId": "logFileListHandler",
110382        "responses": {
110383          "401": {
110384            "description": "Unauthorized"
110385          }
110386        },
110387        "schemes": [
110388          "https"
110389        ],
110390        "tags": [
110391          "logs"
110392        ]
110393      }
110394    },
110395    "/logs/{logpath}": {
110396      "get": {
110397        "operationId": "logFileHandler",
110398        "responses": {
110399          "401": {
110400            "description": "Unauthorized"
110401          }
110402        },
110403        "schemes": [
110404          "https"
110405        ],
110406        "tags": [
110407          "logs"
110408        ]
110409      },
110410      "parameters": [
110411        {
110412          "description": "path to the log",
110413          "in": "path",
110414          "name": "logpath",
110415          "required": true,
110416          "type": "string",
110417          "uniqueItems": true
110418        }
110419      ]
110420    },
110421    "/version/": {
110422      "get": {
110423        "consumes": [
110424          "application/json"
110425        ],
110426        "description": "get the code version",
110427        "operationId": "getCodeVersion",
110428        "produces": [
110429          "application/json"
110430        ],
110431        "responses": {
110432          "200": {
110433            "description": "OK",
110434            "schema": {
110435              "$ref": "#/definitions/io.k8s.apimachinery.pkg.version.Info"
110436            }
110437          },
110438          "401": {
110439            "description": "Unauthorized"
110440          }
110441        },
110442        "schemes": [
110443          "https"
110444        ],
110445        "tags": [
110446          "version"
110447        ]
110448      }
110449    }
110450  },
110451  "security": [
110452    {
110453      "BearerToken": []
110454    }
110455  ],
110456  "securityDefinitions": {
110457    "BearerToken": {
110458      "description": "Bearer Token authentication",
110459      "in": "header",
110460      "name": "authorization",
110461      "type": "apiKey"
110462    }
110463  },
110464  "swagger": "2.0"
110465}
110466